Files
hyfetch/debian/hyfetch.wrapper
oxmc7769 d7758cd4aa
Some checks failed
Shellcheck / check (push) Has been cancelled
Add VesperOS debian packaging files
2026-04-03 15:59:58 -07:00

12 lines
229 B
Python

#!/usr/bin/python3
import sys
import os
# Allow forcing Python fallback with env var
if os.environ.get('HYFETCH_PY'):
from hyfetch.py import run_py
run_py()
else:
from hyfetch.__main__ import run_rust
run_rust()