chore: added icons to waybar

This commit is contained in:
Patrick Großmann 2023-03-21 21:56:45 +09:00
parent d594ad7bbc
commit 8c817968c1
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F

View file

@ -18,7 +18,32 @@ in {
position = "bottom";
modules-left = ["hyprland/window"];
modules-center = ["workspaces"];
modules-right = ["network" "memory" "backlight" "wireplumber" "battery" "clock" "tray"];
modules-right = ["network" "backlight" "wireplumber" "battery" "clock" "tray"];
battery = {
format = "{icon} {capacity}%";
format-icons = ["" "" "" "" "" "" "" "" ""];
};
backlight = {
device = "intel_backlight";
format = "{icon} {percent}%";
format-icons = ["" ""];
on-scroll-up = "${pkgs.acpilight}/bin/xbacklight +5";
on-scroll-down = "${pkgs.acpilight}/bin/xbacklight -5";
};
clock.format = "{:%Y-%m-%d %H:%M}";
wireplumber = {
format = "{icon} {volume}%";
format-muted = "";
format-icons = ["" "奔" ""];
};
network = {
format = "{ifname} {bandwidthUpBits} {bandwidthDownBits}";
};
};
};
};