aboutsummaryrefslogtreecommitdiff
path: root/bin/.local
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-08-15 12:59:00 -0400
committerBardofSprites <[email protected]>2025-08-15 12:59:26 -0400
commit354f5a666b75cb4eced8f8ba7a4d44ca34b26c93 (patch)
tree78bfcabced3711ae097618b679ed07be48461db7 /bin/.local
parentde4e5c38c3df90144a2d6a3741621f892985a177 (diff)
correct/add themes
Diffstat (limited to 'bin/.local')
-rwxr-xr-xbin/.local/bin/scripts/xmonad-themechange41
1 files changed, 39 insertions, 2 deletions
diff --git a/bin/.local/bin/scripts/xmonad-themechange b/bin/.local/bin/scripts/xmonad-themechange
index ccd28b0..aed2d8d 100755
--- a/bin/.local/bin/scripts/xmonad-themechange
+++ b/bin/.local/bin/scripts/xmonad-themechange
@@ -1,8 +1,16 @@
#!/usr/bin/bash
-themes=("Gruber Darker" "Modus Vivendi" "Ef Arbutus" "Ef Elea Dark" "Ef Autumn")
+themes=("Gruber Darker"
+ "Modus Vivendi"
+ "Modus Operandi"
+ "Modus Operandi Tinted"
+ "Ef Arbutus"
+ "Ef Eagle"
+ "Ef Elea Dark"
+ "Ef Autumn"
+ "Ef Melissa Dark")
-selected_theme=$(printf "%s\n" "${themes[@]}" | dmenu -p "Select a theme:")
+selected_theme=$(printf "%s\n" "${themes[@]}" | dmenu -i -p "Select a theme:")
# Exit if no theme is selected
if [ -z "$selected_theme" ]; then
@@ -29,6 +37,20 @@ apply_generic_theme() {
apply_emacs_theme "modus-vivendi"
xrdb -merge ~/.Xresources.d/Xresources.vivendi
;;
+ "Modus Operandi")
+ BG_COLOR="#fbf7f0"
+ FG_COLOR="#000000"
+ XMONAD_MODULE="Modus.Operandi"
+ apply_emacs_theme "modus-operandi"
+ xrdb -merge ~/.Xresources.d/Xresources.operandi
+ ;;
+ "Modus Operandi Tinted")
+ BG_COLOR="#fbf7f0"
+ FG_COLOR="#000000"
+ XMONAD_MODULE="Modus.OperandiTinted"
+ apply_emacs_theme "modus-operandi-tinted"
+ xrdb -merge ~/.Xresources.d/Xresources.operandi-tinted
+ ;;
"Ef Arbutus")
BG_COLOR="#ffead8"
FG_COLOR="#393330"
@@ -36,6 +58,13 @@ apply_generic_theme() {
apply_emacs_theme "ef-arbutus"
xrdb -merge ~/.Xresources.d/Xresources.arbutus
;;
+ "Ef Eagle")
+ BG_COLOR="#f1ecd0"
+ FG_COLOR="#231a1f"
+ XMONAD_MODULE="Ef.Eagle"
+ apply_emacs_theme "ef-eagle"
+ xrdb -merge ~/.Xresources.d/Xresources.eagle
+ ;;
"Ef Elea Dark")
BG_COLOR="#222524"
FG_COLOR="#eaf2ef"
@@ -48,6 +77,14 @@ apply_generic_theme() {
FG_COLOR="#cfbcba"
XMONAD_MODULE="Ef.Autumn"
apply_emacs_theme "ef-autumn"
+ xrdb -merge ~/.Xresources.d/Xresources.autumn
+ ;;
+ "Ef Melissa Dark")
+ BG_COLOR="#352718"
+ FG_COLOR="#e8e4b1"
+ XMONAD_MODULE="Ef.MelissaDark"
+ apply_emacs_theme "ef-melissa-dark"
+ xrdb -merge ~/.Xresources.d/Xresources.melissa-dark
;;
*)
BG_COLOR="#181818"