This commit is contained in:
fwastring 2025-10-17 14:22:14 +02:00
parent 51de7ef3a2
commit 0c9d0a1ce2
5 changed files with 67 additions and 6 deletions

View file

@ -94,11 +94,11 @@ in
splash = false;
splash_offset = 2.0;
preload = [ "/home/fw/nix/wallpapers/nix-wallpaper-nineish-catppuccin-mocha.png" "/home/fw/nix/wallpapers/blue.png" ];
preload = [ "/home/fw/nix/wallpapers/nix-wallpaper-nineish-catppuccin-mocha.png" "/home/fw/nix/wallpapers/nix-wallpaper-nineish-catppuccin-latte.png" ];
wallpaper = [
"DP-1,/home/fw/nix/wallpapers/blue.png"
"eDP-1,/home/fw/nix/wallpapers/blue.png"
"DP-1,/home/fw/nix/wallpapers/nix-wallpaper-nineish-catppuccin-latte.png"
"eDP-1,/home/fw/nix/wallpapers/nix-wallpaper-nineish-catppuccin-latte.png"
];
};
};
@ -117,7 +117,7 @@ in
monitor = [
"desc: ASUSTek COMPUTER INC ASUS PA279CV S4LMTF159462 (DP-1), 3840x2160@60, 0x0, 1.5, transform, 1"
"desc: ASUSTek COMPUTER INC VG279 JBLMQS021792 (DP-1), 1920x1080@144, 0x0, 1"
"eDP-1, 1920x1080@60, 0x0, 1, transform, 2"
"eDP-1, 1920x1080@60, 0x0, 1, transform, 0"
",prefered,auto,1"
];

View file

@ -13,6 +13,7 @@
"bluetooth",
"pulseaudio",
"upower",
"network",
"clock"
],
"mpris": {
@ -42,6 +43,18 @@
"tooltip-format-enumerate-connected-battery": "{device_alias}\t{device_address}\t{device_battery_percentage}%",
"on-click": "pgrep .blueman-manage && pkill .blueman-manage || blueman-manager &"
},
"network": {
"interface": "wlp1s0",
"format": "{ifname}",
"format-wifi": " {essid} ({signalStrength}%)",
"format-ethernet": "{ifname} ",
"format-disconnected": "no signal", //An empty format will hide the module.
"tooltip-format": "{ifname}",
"tooltip-format-wifi": "{essid} ({signalStrength}%) ",
"tooltip-format-ethernet": "{ifname} ",
"tooltip-format-disconnected": "Disconnected",
"max-length": 50
},
"upower": {
"icon-size": 20,
"hide-if-empty": true,

View file

@ -33,7 +33,7 @@ window#waybar.termite { background: @base; }
window#waybar.chromium { background: @base; border: none; }
/* -------- Module “pill” look -------- */
#workspaces, #clock, #mpris, #pulseaudio, #bluetooth, #upower {
#workspaces, #clock, #mpris, #pulseaudio, #bluetooth, #upower, #network {
background: @base;
border: none;
border-radius: 5px;
@ -133,7 +133,15 @@ button:active {
}
/* -------- Upower -------- */
#bluetooth {
#upower {
background: @green;
color: @base;
font-weight: 600;
letter-spacing: 0.2px;
}
/* -------- Network -------- */
#network {
background: @green;
color: @base;
font-weight: 600;

View file

@ -139,6 +139,14 @@ button:active {
letter-spacing: 0.2px;
}
/* -------- Network -------- */
#network {
background: @green;
color: @base;
font-weight: 600;
letter-spacing: 0.2px;
}
/* -------- Helpers -------- */
@keyframes blink {
to { background-color: @peach; color: @base; }