mirror of
https://github.com/cizordj/i3-themer.git
synced 2024-04-21 12:32:12 +00:00
Upload a new theme
- Add new theme with random generated colors, now it's necessary to find a corresponding and free-to-share wallpaper
This commit is contained in:
+65
@@ -0,0 +1,65 @@
|
||||
#!/bin/bash
|
||||
declare -A xresources
|
||||
declare -A i3wm
|
||||
declare -A polybar
|
||||
declare -A dunstrc
|
||||
|
||||
xresources['color0']='#040305' # Terminal background color
|
||||
xresources['color1']='#151119' # brown
|
||||
xresources['color2']='#29222e' # polybar left color
|
||||
xresources['color3']='#97ad79' # window border color
|
||||
xresources['color4']='#655870' # polybar left color
|
||||
xresources['color5']='#8c7e99' # polybar clock background
|
||||
xresources['color6']='#b5acbe' # mustard color
|
||||
xresources['color7']='#e3e1e7' # light mustard
|
||||
xresources['color8']='#c89a6e' # gray
|
||||
xresources['color9']='#b693d3' # brown
|
||||
xresources['color10']='#b76988' # light brown
|
||||
xresources['color11']='#c0a7d7' # a little lighter brown
|
||||
xresources['color12']='#628f83' # polybar left color
|
||||
xresources['color13']='#97ad79' # polybar center color and dunst primary color
|
||||
xresources['color14']='#86b1a5'
|
||||
xresources['color15']='#7096a9' # terminal font color
|
||||
xresources['background']=${xresources['color0']}
|
||||
xresources['foreground']=${xresources['color7']}
|
||||
xresources['cursorcolor']=${xresources['color7']}
|
||||
xresources['rofi.color-window']="${xresources['color0']}, ${xresources['color2']}, ${xresources['color2']}"
|
||||
xresources['rofi.color-normal']="${xresources['color0']}, ${xresources['color7']}, ${xresources['color0']}, ${xresources['color0']}, ${xresources['color4']}"
|
||||
xresources['rofi.color-active']="${xresources['color0']}, ${xresources['color7']}, ${xresources['color0']}, ${xresources['color0']}, ${xresources['color4']}"
|
||||
xresources['rofi.color-urgent']="${xresources['color0']}, ${xresources['color7']}, ${xresources['color0']}, ${xresources['color0']}, ${xresources['color4']}"
|
||||
|
||||
i3wm['client.background']=${xresources['color0']}
|
||||
i3wm['client.focused']="${xresources['color7']} ${xresources['color0']} ${xresources['color7']} ${xresources['color2']} ${xresources['color2']}"
|
||||
i3wm['client.unfocused']="${xresources['color7']} ${xresources['color0']} ${xresources['color7']} ${xresources['color4']}"
|
||||
i3wm['client.focused_inactive']="${xresources['color7']} ${xresources['color0']} ${xresources['color7']} ${xresources['color4']} ${xresources['color4']}"
|
||||
i3wm['client.urgent']="${xresources['color7']} ${xresources['color0']} ${xresources['color7']} ${xresources['color4']} ${xresources['color4']}"
|
||||
i3wm['client.placeholder']="${xresources['color7']} ${xresources['color0']} ${xresources['color0']} ${xresources['color4']} ${xresources['color4']}"
|
||||
|
||||
polybar['background']=${xresources['color0']}
|
||||
polybar['foreground']=${xresources['color7']}
|
||||
polybar['modules-left']='i3'
|
||||
polybar['modules-center']='date'
|
||||
polybar['modules-right']='wlan eth powermenu'
|
||||
polybar['label-unfocused-background']=${xresources['color4']}
|
||||
polybar['label-unfocused-foreground']=${xresources['color0']}
|
||||
polybar['label-mode-background']=${xresources['color4']}
|
||||
polybar['label-mode-foreground']=${xresources['color0']}
|
||||
polybar['label-focused-foreground']='#6B7443'
|
||||
polybar['label-focused-background']=${xresources['color4']}
|
||||
polybar['label-visible-background']=${xresources['color4']}
|
||||
polybar['label-visible-foreground']=${xresources['color0']}
|
||||
polybar['format-foreground']=${xresources['color0']}
|
||||
polybar['format-background']=${xresources['color5']}
|
||||
polybar['label-open-foreground']=${xresources['color2']}
|
||||
polybar['label-close-foreground']=${xresources['color2']}
|
||||
polybar['label-separator-foreground']=${xresources['color2']}
|
||||
polybar['format-connected-foreground']=${xresources['color0']}
|
||||
polybar['format-connected-background']=${xresources['color2']}
|
||||
polybar['format-connected-prefix-foreground']=${xresources['color0']}
|
||||
polybar['ramp-signal-foreground']=${xresources['color0']}
|
||||
|
||||
dunstrc['background']=${polybar['background']}
|
||||
dunstrc['foreground']=${polybar['foreground']}
|
||||
dunstrc['frame_color']=${polybar['foreground']}
|
||||
|
||||
wallpaper='000.png'
|
||||
Reference in New Issue
Block a user