aboutsummaryrefslogtreecommitdiff
path: root/wallust
diff options
context:
space:
mode:
authoreric.marin <maarin.eric@gmail.com>2025-03-07 20:59:53 +0100
committereric.marin <maarin.eric@gmail.com>2025-03-07 21:00:09 +0100
commit2fc4260287471e5fb985411ea3f60d6eb0a854dc (patch)
tree13c0113b6eafde7e8f7f9c1d6c41e08812b4150c /wallust
parent6d95f092e30737d49b650891e93de518498523a3 (diff)
downloaddotfiles-2fc4260287471e5fb985411ea3f60d6eb0a854dc.tar.gz
dotfiles-2fc4260287471e5fb985411ea3f60d6eb0a854dc.zip
waybar modification
Diffstat (limited to 'wallust')
-rw-r--r--wallust/templates/niri2
-rw-r--r--wallust/templates/waybar90
-rw-r--r--wallust/wallust.toml3
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"