Files
z-bar-qt/cli/src/zshell/subcommands/screenshot.py
T
Zacharias-Brohn 457007f74d binary + installer
2026-02-18 18:53:11 +01:00

19 lines
358 B
Python

import subprocess
import typer
args = ["qs", "-c", "zshell"]
app = typer.Typer()
@app.command()
def start():
subprocess.run(args + ["ipc"] + ["call"] +
["picker"] + ["open"], check=True)
@app.command()
def start_freeze():
subprocess.run(args + ["ipc"] + ["call"] +
["picker"] + ["openFreeze"], check=True)