This commit is contained in:
Mylloon 2023-09-13 14:10:13 +02:00
parent 9744541d51
commit aebd090b79
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -22,15 +22,13 @@ main() {
# Set the Dracula theme # Set the Dracula theme
set org.gnome.desktop.wm.preferences theme Dracula set org.gnome.desktop.wm.preferences theme Dracula
# Set the Terminal profile # Set the Terminal profile
profile="${profiles[0]}" gsettings set org.gnome.Terminal.ProfilesList default "${profiles[0]}"
gsettings set org.gnome.Terminal.ProfilesList default "${profile}"
# Set the fish theme # Set the fish theme
fish -c "fish_config theme choose 'Base16 Eighties' && yes | fish_config theme save" fish -c "fish_config theme choose 'Base16 Eighties' && yes | fish_config theme save"
;; ;;
"sunrise" ) # Go to light mode "sunrise" ) # Go to light mode
# Set the Terminal profile # Set the Terminal profile
profile="${profiles[1]}" gsettings set org.gnome.Terminal.ProfilesList default "${profiles[1]}"
gsettings set org.gnome.Terminal.ProfilesList default "${profile}"
# Set the fish theme # Set the fish theme
fish -c "fish_config theme choose 'Solarized Light' && yes | fish_config theme save" fish -c "fish_config theme choose 'Solarized Light' && yes | fish_config theme save"
;; ;;