start
This commit is contained in:
@@ -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():
|
||||
@@ -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():
|
||||
Reference in New Issue
Block a user