Start switching to everforest

Amolith created

Change summary

dot_config/doom/config.el.tmpl                  | 8 ++++----
dot_local/share/dark-mode.d/executable_swap.sh  | 5 +++--
dot_local/share/light-mode.d/executable_swap.sh | 5 +++--
3 files changed, 10 insertions(+), 8 deletions(-)

Detailed changes

dot_config/doom/config.el.tmpl 🔗

@@ -6,14 +6,14 @@
 (setq doom-font (font-spec :family "{{ .font }}" :size 16)
       doom-variable-pitch-font (font-spec :family "{{ .font }}" :size 16))
 
-(setq doom-unicode-font (font-spec :family "Triplicate A Code"))
+(setq doom-unicode-font (font-spec :family "{{ .font }}"))
 
-(setq doom-theme 'catppuccin)
+(add-to-list 'custom-theme-load-path (expand-file-name "~/.config/doom/themes/everforest"))
 {{- if eq .theme_variant "dark"}}
-(setq catppuccin-flavor 'macchiato)
+(load-theme 'everforest-hard-dark t)
 {{- end }}
 {{- if eq .theme_variant "light"}}
-(setq catppuccin-flavor 'latte)
+(load-theme 'everforest-soft-light t)
 {{- end }}
 
 (setq display-line-numbers-type t)

dot_local/share/dark-mode.d/executable_swap.sh 🔗

@@ -2,7 +2,8 @@
 
 sed -i 's/light/dark/g' ~/.config/chezmoi/chezmoi.toml
 chezmoi apply
-xfconf-query -c xsettings -p /Net/ThemeName -s "Catppuccin-Macchiato-Standard-Rosewater-Dark"
+xfconf-query -c xsettings -p /Net/ThemeName -s "Everforest-Dark"
+gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
 xrdb -load ~/.Xresources
 "$XDG_CONFIG_HOME/emacs/bin/doom" sync
 pkill dunst
@@ -22,6 +23,6 @@ else
 fi
 
 unlink ~/.wallpaper.png
-ln -s ~/Pictures/walls/catppuccin-macchiato.png ~/.wallpaper.png
+ln -s ~/Pictures/walls/everforest-dark.png ~/.wallpaper.png
 feh --bg-scale ~/.wallpaper.png
 notify-send "Theme switch complete"

dot_local/share/light-mode.d/executable_swap.sh 🔗

@@ -2,7 +2,8 @@
 
 sed -i 's/dark/light/g' ~/.config/chezmoi/chezmoi.toml
 chezmoi apply
-xfconf-query -c xsettings -p /Net/ThemeName -s "Catppuccin-Latte-Standard-Rosewater-Light"
+xfconf-query -c xsettings -p /Net/ThemeName -s "Everforest-Light-Soft"
+gsettings set org.gnome.desktop.interface color-scheme 'prefer-light'
 xrdb -load ~/.Xresources
 "$XDG_CONFIG_HOME/emacs/bin/doom" sync
 
@@ -22,6 +23,6 @@ else
 fi
 
 unlink ~/.wallpaper.png
-ln -s ~/Pictures/walls/catppuccin-latte.png ~/.wallpaper.png
+ln -s ~/Pictures/walls/everforest-light.png ~/.wallpaper.png
 feh --bg-scale ~/.wallpaper.png
 notify-send "Theme switch complete"