mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 09:30:32 +01:00
enable waybar for alastor
This commit is contained in:
parent
37edc43c9a
commit
da112e3f79
|
@ -79,6 +79,7 @@ window#waybar {
|
|||
#clock,
|
||||
#battery,
|
||||
#battery.bat2,
|
||||
#battery.bat3,
|
||||
#cpu,
|
||||
#memory,
|
||||
#temperature,
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
extraConfig = builtins.readFile ../config-files/hyprland.conf;
|
||||
};
|
||||
|
||||
programs.waybar = lib.mkIf (pkgs.system == "x86_64-linux") {
|
||||
programs.waybar = /* lib.mkIf (pkgs.system == "x86_64-linux") */ {
|
||||
enable = true;
|
||||
settings = {
|
||||
mainBar = {
|
||||
|
@ -24,7 +24,7 @@
|
|||
height = 30;
|
||||
# modules-left = ["wlr/workspaces"];
|
||||
#modules-center = [ "hyprland/window" ];
|
||||
modules-center = ["hyprland/workspaces" "tray" "network" "battery" "battery#bat2" "clock"];
|
||||
modules-center = ["hyprland/workspaces" "tray" "network" "battery" "battery#bat2" "battery#bat3" "clock"];
|
||||
"tray" = {"icon-size" = 21;};
|
||||
"network" = {
|
||||
"format-wifi" = "NET: {essid} ({signalStrength}%) ";
|
||||
|
@ -54,6 +54,17 @@
|
|||
#"format-icons" = ''["", "", "", "", ""]'';
|
||||
"max-length" = 25;
|
||||
};
|
||||
"battery#bat3" = {
|
||||
"bat" = "macsmc-battery";
|
||||
"interval" = 10;
|
||||
"states" = {
|
||||
"warning" = 30;
|
||||
"critical" = 15;
|
||||
};
|
||||
"format" = " BAT: {capacity}%";
|
||||
#"format-icons" = ''["", "", "", "", ""]'';
|
||||
"max-length" = 25;
|
||||
};
|
||||
};
|
||||
};
|
||||
style = builtins.readFile ../config-files/waybar-mocha.css;
|
||||
|
|
Loading…
Reference in a new issue