IDK :) userman or smt.. and inital commit

This commit is contained in:
2026-05-18 00:46:02 +02:00
commit 5a5b1a190b
14 changed files with 336 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import subprocess
import sys
def delegate_to_pacman(pkgname: str):
result = subprocess.run(["sudo", "pacman", "-S", pkgname])
sys.exit(result.returncode)