Files
z-bar-qt/cli/src/zshell/subcommands/screenshot.py
T
AramJonghu ca3a288eab
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 12s
Lint & Format (Python) / lint-format (pull_request) Successful in 21s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m34s
minor changes to workflows to prevent preemptive exits/failures
2026-05-20 00:02:14 +02:00

17 lines
320 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)