This commit is contained in:
2026-04-26 22:32:57 +02:00
parent 7a2786af66
commit 2eb0529e98
6 changed files with 619 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import json
import typer
from zshell.assets.schemes.catppuccin import catppuccin
app = typer.Typer()
SCHEMES = catppuccin.variants.flavors
@app.command()
def set():
+14
View File
@@ -0,0 +1,14 @@
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():