mirror of
https://github.com/cizordj/i3-themer.git
synced 2024-04-21 12:32:12 +00:00
66 lines
2.4 KiB
Bash
66 lines
2.4 KiB
Bash
#!/bin/bash
|
|
declare -A xresources
|
|
declare -A i3wm
|
|
declare -A polybar
|
|
declare -A dunstrc
|
|
|
|
xresources['background']='#25252c'
|
|
xresources['foreground']='#ffffff'
|
|
xresources['cursorcolor']='#ffffff'
|
|
xresources['color0']='#25252c'
|
|
xresources['color8']='#b3cfd9'
|
|
xresources['color1']='#9abfcd'
|
|
xresources['color9']='#9abfcd'
|
|
xresources['color2']='#679fb4'
|
|
xresources['color10']='#679fb4'
|
|
xresources['color3']='#357f9b'
|
|
xresources['color11']='#357f9b'
|
|
xresources['color4']='#036082'
|
|
xresources['color12']='#036082'
|
|
xresources['color5']='#024c68'
|
|
xresources['color13']='#024c68'
|
|
xresources['color6']='#5e8d87'
|
|
xresources['color14']='#01394e'
|
|
xresources['color7']='#b3cfd9'
|
|
xresources['color15']='#b3cfd9'
|
|
xresources['rofi.color-window']='#25252c, #679fb4, #679fb4'
|
|
xresources['rofi.color-normal']='#25252c, #ffffff, #679fb4, #ffffff, #78824B'
|
|
xresources['rofi.color-active']='#25252c, #ffffff, #679fb4, #ffffff, #78824B'
|
|
xresources['rofi.color-urgent']='#25252c, #ffffff, #679fb4, #ffffff, #78824B'
|
|
|
|
i3wm['client.background']='#25252c'
|
|
i3wm['client.focused']='#ffffff #25252c #ffffff #036082 #036082'
|
|
i3wm['client.unfocused']='#ffffff #25252c #ffffff #036082 #036082'
|
|
i3wm['client.focused_inactive']='#ffffff #25252c #ffffff #036082 #036082'
|
|
i3wm['client.urgent']='#ffffff #25252c #ffffff #036082 #036082'
|
|
i3wm['client.placeholder']='#ffffff #25252c #ffffff #036082 #036082'
|
|
|
|
polybar['background']='#25252c'
|
|
polybar['foreground']='#ffffff'
|
|
polybar['modules-left']='wlan eth'
|
|
polybar['modules-center']='i3'
|
|
polybar['modules-right']='alsa date powermenu'
|
|
polybar['label-unfocused-background']='#036082'
|
|
polybar['label-unfocused-foreground']='#25252c'
|
|
polybar['label-mode-background']='#25252c'
|
|
polybar['label-mode-foreground']='#25252c'
|
|
polybar['label-focused-foreground']='#25252c'
|
|
polybar['label-focused-background']='#036082'
|
|
polybar['label-visible-background']='#036082'
|
|
polybar['label-visible-foreground']='#25252c'
|
|
polybar['format-foreground']='#25252c'
|
|
polybar['format-background']='#036082'
|
|
polybar['label-open-foreground']='#036082'
|
|
polybar['label-close-foreground']='#036082'
|
|
polybar['label-separator-foreground']='#036082'
|
|
polybar['format-connected-foreground']='#25252c'
|
|
polybar['format-connected-background']='#036082'
|
|
polybar['format-connected-prefix-foreground']='#25252c'
|
|
polybar['ramp-signal-foreground']='#25252c'
|
|
|
|
dunstrc['background']=${polybar['background']}
|
|
dunstrc['foreground']=${polybar['format-background']}
|
|
dunstrc['frame_color']=${polybar['format-background']}
|
|
|
|
wallpaper='009.png'
|