diff options
| author | eric.marin <maarin.eric@gmail.com> | 2025-03-07 20:59:53 +0100 |
|---|---|---|
| committer | eric.marin <maarin.eric@gmail.com> | 2025-03-07 21:00:09 +0100 |
| commit | 2fc4260287471e5fb985411ea3f60d6eb0a854dc (patch) | |
| tree | 13c0113b6eafde7e8f7f9c1d6c41e08812b4150c /wallust/templates | |
| parent | 6d95f092e30737d49b650891e93de518498523a3 (diff) | |
| download | dotfiles-2fc4260287471e5fb985411ea3f60d6eb0a854dc.tar.gz dotfiles-2fc4260287471e5fb985411ea3f60d6eb0a854dc.zip | |
waybar modification
Diffstat (limited to 'wallust/templates')
| -rw-r--r-- | wallust/templates/niri | 2 | ||||
| -rw-r--r-- | wallust/templates/waybar | 90 |
2 files changed, 92 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}}; +} |
