binary + installer

This commit is contained in:
Zacharias-Brohn
2026-02-18 18:53:11 +01:00
parent 01e94a10ab
commit 457007f74d
21 changed files with 270 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
import subprocess
import typer
from pathlib import Path
args = ["qs", "-c", "zshell"]
app = typer.Typer()
@app.command()
def set(wallpaper: Path):
subprocess.run(args + ["ipc"] + ["call"] +
["wallpaper"] + ["set"] + [wallpaper], check=True)