Files
z-bar-qt/cli/src/zshell/subcommands/record.py
T
2026-04-26 22:32:57 +02:00

15 lines
227 B
Python

import typer
import subprocess
from typing import Optional
app = typer.Typer()
RECORDER = "gpu-screen-recorder"
HOME = str(os.getenv("HOME"))
CONFIG = Path(HOME + "/.config/zshell/config.json")
@app.command()
def start():