From 1110bccddd1ca87723b2ff2270d5f00bdf8cf5cb Mon Sep 17 00:00:00 2001 From: Martin Andersen Date: Fri, 24 May 2024 12:59:18 +0200 Subject: [PATCH] Update install.sh --- install.sh | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 71 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 900cec7..44b5c53 100644 --- a/install.sh +++ b/install.sh @@ -478,6 +478,77 @@ else fi echo -e "${YELLOW} Neovim config END ${NC}" +# ------------------------------------------------------------------------------------------------- +echo -e "${YELLOW} Kitty theme.conf Start ${NC}" + +if [ ! -f $HOME/.config/kitty/theme.conf ]; then +mkdir -p $HOME/.config/kitty/themes +cat << "KITTYTHEMECONF" > $HOME/.config/kitty/theme.conf +foreground #f8f8f2 +background #282a36 +selection_foreground #ffffff +selection_background #44475a + +url_color #8be9fd + +# black +color0 #21222c +color8 #6272a4 + +# red +color1 #ff5555 +color9 #ff6e6e + +# green +color2 #50fa7b +color10 #69ff94 + +# yellow +color3 #f1fa8c +color11 #ffffa5 + +# blue +color4 #bd93f9 +color12 #d6acff + +# magenta +color5 #ff79c6 +color13 #ff92df + +# cyan +color6 #8be9fd +color14 #a4ffff + +# white +color7 #f8f8f2 +color15 #ffffff + +# Cursor colors +cursor #f8f8f2 +cursor_text_color background + +# Tab bar colors +active_tab_foreground #282a36 +active_tab_background #f8f8f2 +inactive_tab_foreground #282a36 +inactive_tab_background #6272a4 + +# Marks +mark1_foreground #282a36 +mark1_background #ff5555 + +# Splits/Windows +active_border_color #f8f8f2 +inactive_border_color #6272a4 + +KITTYTHEMECONF + +else + echo "Kitty theme.conf file already exists." +fi + +echo -e "${YELLOW} Kitty theme.conf END ${NC}" + # ------------------------------------------------------------------------------------------------- echo -e "${YELLOW} Tmux config Start ${NC}" @@ -495,9 +566,6 @@ fi echo -e "${YELLOW} Tmux config END ${NC}" -# ------------------------------------------------------------------------------------------------- - - # -------------------------------------------------------------------------------------------------