From 65944c6ff50b673ad11c6ac31106fa31e9545620 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Tue, 25 Apr 2023 19:41:27 +1000 Subject: [PATCH] Change kitty theme --- dot_config/xonsh/rc.d/env.xsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/xonsh/rc.d/env.xsh b/dot_config/xonsh/rc.d/env.xsh index 55f400a..295021e 100644 --- a/dot_config/xonsh/rc.d/env.xsh +++ b/dot_config/xonsh/rc.d/env.xsh @@ -41,9 +41,9 @@ def _theme(args): """This command takes a """ DARK_XONSH_STYLE = "stata-dark" - DARK_KITTY_STYLE = "Rosé Pine Moon" + DARK_KITTY_STYLE = "Catppuccin-Macchiato" LIGHT_XONSH_STYLE = "stata-light" - LIGHT_KITTY_STYLE = "Rosé Pine Dawn" + LIGHT_KITTY_STYLE = "Catppuccin-Latte" if len(args) == 0 or args[0] == "info": print("dark" if $XONSH_COLOR_STYLE == DARK_XONSH_STYLE else "light") elif args[0] == "set":