Compare commits

..

No commits in common. "da112e3f79062946d41fd63447523f90e5220c59" and "e15275369f2e8175263a42ea3ef254227057318b" have entirely different histories.

3 changed files with 3 additions and 14 deletions

View file

@ -79,7 +79,6 @@ window#waybar {
#clock, #clock,
#battery, #battery,
#battery.bat2, #battery.bat2,
#battery.bat3,
#cpu, #cpu,
#memory, #memory,
#temperature, #temperature,

View file

@ -74,6 +74,7 @@ in {
pkgs.brightnessctl pkgs.brightnessctl
pkgs.pavucontrol pkgs.pavucontrol
pkgs.bitwarden-cli
pkgs.rbw pkgs.rbw
pkgs.swayfx pkgs.swayfx

View file

@ -15,7 +15,7 @@
extraConfig = builtins.readFile ../config-files/hyprland.conf; 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; enable = true;
settings = { settings = {
mainBar = { mainBar = {
@ -24,7 +24,7 @@
height = 30; height = 30;
# modules-left = ["wlr/workspaces"]; # modules-left = ["wlr/workspaces"];
#modules-center = [ "hyprland/window" ]; #modules-center = [ "hyprland/window" ];
modules-center = ["hyprland/workspaces" "tray" "network" "battery" "battery#bat2" "battery#bat3" "clock"]; modules-center = ["hyprland/workspaces" "tray" "network" "battery" "battery#bat2" "clock"];
"tray" = {"icon-size" = 21;}; "tray" = {"icon-size" = 21;};
"network" = { "network" = {
"format-wifi" = "NET: {essid} ({signalStrength}%) "; "format-wifi" = "NET: {essid} ({signalStrength}%) ";
@ -54,17 +54,6 @@
#"format-icons" = ''["", "", "", "", ""]''; #"format-icons" = ''["", "", "", "", ""]'';
"max-length" = 25; "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; style = builtins.readFile ../config-files/waybar-mocha.css;