Add VesperOS debian packaging files
Shellcheck / check (push) Has been cancelled

This commit is contained in:
2026-04-03 15:59:58 -07:00
parent 05f62e5d93
commit d7758cd4aa
5 changed files with 118 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/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()