12 lines
169 B
Python
12 lines
169 B
Python
import json
|
|
import typer
|
|
from zshell.assets.schemes.catppuccin import catppuccin
|
|
|
|
app = typer.Typer()
|
|
|
|
SCHEMES = catppuccin.variants.flavors
|
|
|
|
|
|
@app.command()
|
|
def set():
|