From c2f263e8d5a19ccbfb0d64657ea669ebe6b196f6 Mon Sep 17 00:00:00 2001 From: ITmail-dk <48917593+ITmail-dk@users.noreply.github.com> Date: Sat, 7 Sep 2024 18:41:46 +0200 Subject: [PATCH] Update install.sh --- install.sh | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index ebce0b1..f491aed 100644 --- a/install.sh +++ b/install.sh @@ -793,12 +793,40 @@ else echo "Kitty config already exists." fi +echo -e "${GREEN} Kitty theme.conf Start ${NC}" -echo -e "${YELLOW} Kitty config file END ${NC}" +if [ ! -f $HOME/.config/kitty/themes/kittytheme.conf ]; then +mkdir -p $HOME/.config/kitty/themes +cat << "KITTYTHEMECONF" > $HOME/.config/kitty/themes/kittytheme.conf +background #1b0200 +foreground #ee712d +color0 #1b0200 +color1 #240002 +color2 #d74d00 +color3 #d74d00 +color4 #9c2101 +color5 #d74d00 +color6 #d74d00 +color7 #d74d00 +color8 #d74d00 +color9 #830508 +color10 #d74d00 +color11 #d74d00 +color12 #9a292f +color13 #e46324 +color14 #ea6f10 +color15 #ee712d + +KITTYTHEMECONF + +else + echo "kittytheme.conf file already exists." +fi + +echo -e "${GREEN} Kitty config file END ${NC}" - -echo -e "${YELLOW} Kitty theme.conf Start ${NC}" +echo -e "${GREEN} Kittytheme.conf Start ${NC}" if [ ! -f $HOME/.config/kitty/themes/kittytheme.conf ]; then mkdir -p $HOME/.config/kitty/themes @@ -829,5 +857,5 @@ else fi -cd ~ # END +cd ~