diff options
| -rwxr-xr-x | bin/.local/bin/scripts/xmonad-themechange | 18 | ||||
| -rw-r--r-- | xorg/.Xresources | 2 | ||||
| -rw-r--r-- | xorg/.Xresources.d/Xresources.gruvbox | 20 |
3 files changed, 25 insertions, 15 deletions
diff --git a/bin/.local/bin/scripts/xmonad-themechange b/bin/.local/bin/scripts/xmonad-themechange index c515578..ee48b25 100755 --- a/bin/.local/bin/scripts/xmonad-themechange +++ b/bin/.local/bin/scripts/xmonad-themechange @@ -1,6 +1,6 @@ #!/usr/bin/bash -themes=("Gruber Darker" "Modus Vivendi") +themes=("Gruber Darker" "Modus Vivendi" "Ef Arbutus" "Ef Autumn") selected_theme=$(printf "%s\n" "${themes[@]}" | dmenu -p "Select a theme:") @@ -18,7 +18,6 @@ apply_generic_theme() { "Gruber Darker") BG_COLOR="#181818" FG_COLOR="#e4e4e4" - BORDER_COLOR="#cc8c3c" XMONAD_MODULE="GruberDarker" apply_emacs_theme "gruber-darker" xrdb -merge ~/.Xresources.d/Xresources.gruber @@ -26,15 +25,26 @@ apply_generic_theme() { "Modus Vivendi") BG_COLOR="#000000" FG_COLOR="#ffffff" - BORDER_COLOR="#989898" XMONAD_MODULE="Modus.Vivendi" apply_emacs_theme "modus-vivendi" xrdb -merge ~/.Xresources.d/Xresources.vivendi ;; + "Ef Arbutus") + BG_COLOR="#ffead8" + FG_COLOR="#393330" + XMONAD_MODULE="Ef.Arbutus" + apply_emacs_theme "ef-arbutus" + xrdb -merge ~/.Xresources.d/Xresources.arbutus + ;; + "Ef Autumn") + BG_COLOR="#0f0e06" + FG_COLOR="#cfbcba" + XMONAD_MODULE="Ef.Autumn" + apply_emacs_theme "ef-autumn" + ;; *) BG_COLOR="#181818" FG_COLOR="#e4e4e4" - BORDER_COLOR="#95a99f" ;; esac diff --git a/xorg/.Xresources b/xorg/.Xresources index 9efd1ac..12cd13b 100644 --- a/xorg/.Xresources +++ b/xorg/.Xresources @@ -22,6 +22,8 @@ URxvt.boldItalicFont: xft:Iosevka Comfy:style=Bold Italic:size=14 st.font: Iosevka Comfy-14 Nsxiv.bar.font: Iosevka Comfy-14 dmenu.font: Iosevka Comfy-14 +st.alpha: 0.95 +Nsxiv.window.alpha: 0.95 !! Copy Paste URxvt.perl-lib: /home/bard/.urxvt/ diff --git a/xorg/.Xresources.d/Xresources.gruvbox b/xorg/.Xresources.d/Xresources.gruvbox index f2aa1cd..46860b5 100644 --- a/xorg/.Xresources.d/Xresources.gruvbox +++ b/xorg/.Xresources.d/Xresources.gruvbox @@ -14,19 +14,17 @@ *.color13: #d3869b *.color14: #8ec07c *.color15: #ebdbb2 -*.background: #282828 +*.background: #1d2021 *.foreground: white *.cursorColor: white -dmenu.background: #282828 -dmenu.foreground: #ebdbb2 -dmenu.selbackground: #665c54 -dmenu.selforeground: #ebdbb2 - -Nsxiv.window.background: #282828 -Nsxiv.window.foreground: #ebdbb2 -Nsxiv.mark.foreground: #665c54 -Nsxiv.bar.background: #665c54 -Nsxiv.bar.foreground: #ebdbb2 +Nsxiv.window.background: #222222 +Nsxiv.window.foreground: #bbbbbb +Nsxiv.mark.foreground: #bbbbbb +Nsxiv.bar.background: #005577 +Nsxiv.bar.foreground: #eeeeee +Nsxiv.font: monospace-13 st.alpha: 0.95 +st.font: monospace-13 +dmenu.font: monospace-12 |
