diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-09 14:42:52 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-09 14:42:52 +0100 |
commit | 5996461915478909d514ad021b026ec0925298e5 (patch) | |
tree | 1ec81d1d01a438a78ced3e88857b50a22f02763c /.local/share/mode | |
parent | 0c193374f261b3238948b52083b18d1b6d69ce5e (diff) |
update dunst + zathura themes
Diffstat (limited to '.local/share/mode')
-rwxr-xr-x | .local/share/mode/switch.d/dunst | 2 | ||||
-rwxr-xr-x | .local/share/mode/switch.d/zathura | 41 |
2 files changed, 20 insertions, 23 deletions
diff --git a/.local/share/mode/switch.d/dunst b/.local/share/mode/switch.d/dunst index 2a5a60e..d4fd8dc 100755 --- a/.local/share/mode/switch.d/dunst +++ b/.local/share/mode/switch.d/dunst @@ -1,6 +1,6 @@ #!/bin/sh cat "$XDG_CONFIG_HOME/dunst/base" - << EOF > "$XDG_CONFIG_HOME/dunst/dunstrc" -frame_color = "$color0" +frame_color = "$accent" [urgency_low] background = "$bg" diff --git a/.local/share/mode/switch.d/zathura b/.local/share/mode/switch.d/zathura index 0fde1d1..c0687df 100755 --- a/.local/share/mode/switch.d/zathura +++ b/.local/share/mode/switch.d/zathura @@ -1,27 +1,24 @@ #!/bin/sh cat << EOF > "$XDG_CONFIG_HOME/zathura/colors" -set default-bg "$bg" -set statusbar-bg "$bg" -set inputbar-bg "$bg" -set completion-highlight-fg "$bg" -set completion-bg "$bg" -set notification-error-fg "$bg" -set notification-warning-fg "$bg" -set notification-fg "$bg" -set recolor-lightcolor "$bg" - -set default-fg "$fg" -set inputbar-fg "$fg" -set completion-fg "$fg" -set statusbar-fg "$fg" -set recolor-darkcolor "$fg" - -set notification-error-bg "$color9" +set completion-bg "$bg" +set completion-fg "$fg" +set completion-highlight-bg "$accent" +set completion-highlight-fg "$accent_text" +set default-bg "$bg" +set default-fg "$fg" +set highlight-active-color "$accent" +set highlight-color "$accent_text" +set inputbar-bg "$bg" +set inputbar-fg "$fg" +set notification-bg "$bg" +set notification-error-bg "$color9" +set notification-error-fg "$bg" +set notification-fg "$fg" set notification-warning-bg "$color9" -set completion-highlight-bg "$color9" -set highlight-color "$color9" - -set highlight-active-color "$color13" -set notification-bg "$color13" +set notification-warning-fg "$bg" +set recolor-darkcolor "$fg" +set recolor-lightcolor "$bg" +set statusbar-bg "$bg" +set statusbar-fg "$fg" EOF |