From aebd090b79f943fab9d8d35cd018ad850ffe91df Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 13 Sep 2023 14:10:13 +0200 Subject: [PATCH] cleanup --- .config/update_theme.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.config/update_theme.sh b/.config/update_theme.sh index 9747b3a..70381d1 100755 --- a/.config/update_theme.sh +++ b/.config/update_theme.sh @@ -22,15 +22,13 @@ main() { # Set the Dracula theme set org.gnome.desktop.wm.preferences theme Dracula # Set the Terminal profile - profile="${profiles[0]}" - gsettings set org.gnome.Terminal.ProfilesList default "${profile}" + gsettings set org.gnome.Terminal.ProfilesList default "${profiles[0]}" # Set the fish theme fish -c "fish_config theme choose 'Base16 Eighties' && yes | fish_config theme save" ;; "sunrise" ) # Go to light mode # Set the Terminal profile - profile="${profiles[1]}" - gsettings set org.gnome.Terminal.ProfilesList default "${profile}" + gsettings set org.gnome.Terminal.ProfilesList default "${profiles[1]}" # Set the fish theme fish -c "fish_config theme choose 'Solarized Light' && yes | fish_config theme save" ;;