diff options
Diffstat (limited to 'wallust')
| -rw-r--r-- | wallust/templates/niri | 2 | ||||
| -rw-r--r-- | wallust/templates/waybar | 90 | ||||
| -rw-r--r-- | wallust/wallust.toml | 3 |
3 files changed, 95 insertions, 0 deletions
diff --git a/wallust/templates/niri b/wallust/templates/niri index 93310e7..bc540d8 100644 --- a/wallust/templates/niri +++ b/wallust/templates/niri @@ -89,6 +89,8 @@ layout { tab-indicator { place-within-column gaps-between-tabs 5 + active-color "{{color1}}" + inactive-color "{{color0}}" } } diff --git a/wallust/templates/waybar b/wallust/templates/waybar new file mode 100644 index 0000000..9061ce5 --- /dev/null +++ b/wallust/templates/waybar @@ -0,0 +1,90 @@ +* { + font-family: Hack Nerd Font; +} + +window#waybar { + background: {{background}}; + color: {{foreground}}; +} + +.modules-left, .modules-center, .modules-right { + padding: 1px; +} + +#clock,#network,#bluetooth,#backlight,#pulseaudio, +#battery,#disk,#temperature,#memory,#cpu, +#tray { + padding-left: 3px; + padding-right: 3px; + border-color: {{color8}}; + border-style: solid; + border-width: 1px; +} +#network,#bluetooth,#backlight,#pulseaudio { + border-left-width: 0px; +} +#disk,#temperature,#memory,#cpu { + border-right-width: 0px; +} + +#clock { + background: {{color6}}; +} +#network { + background: {{color5}}; +} +#bluetooth { + background: {{color3}}; +} +#backlight { + background: {{color4}}; +} +#pulseaudio { + background: {{color2}}; +} +#battery { + background: {{color6}}; +} +#disk { + background: {{color5}}; +} +#temperature { + background: {{color3}}; +} +#memory { + background: {{color4}}; +} +#cpu { + background: {{color2}}; +} +#tray { + background: {{color0}}; +} + +tooltip { + background: {{color0}}; +} +tooltip label { + color: {{foreground}}; +} + +#tray menu { + background: {{color0}}; + color: {{foreground}}; +} + +#bluetooth.off, #pulseaudio.muted, #network.disconnected, #battery.warning { + background: {{color0}}; +} +#bluetooth.off { + color: {{color3}}; +} +#pulseaudio.muted { + color: {{color2}}; +} +#network.disconnected { + color: {{color5}}; +} +#battery.warning { + color: {{color6}}; +} diff --git a/wallust/wallust.toml b/wallust/wallust.toml index b535a6a..310e479 100644 --- a/wallust/wallust.toml +++ b/wallust/wallust.toml @@ -22,3 +22,6 @@ hyprlock.target = "~/.config/hypr/hyprlock.conf" mako.template = "mako" mako.target = "~/.config/mako/config" + +waybar.template = "waybar" +waybar.target = "~/.config/waybar/style.css" |
