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,
#battery,
#battery.bat2,
#battery.bat3,
#cpu,
#memory,
#temperature,

View file

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

View file

@ -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" "battery#bat3" "clock"];
modules-center = ["hyprland/workspaces" "tray" "network" "battery" "battery#bat2" "clock"];
"tray" = {"icon-size" = 21;};
"network" = {
"format-wifi" = "NET: {essid} ({signalStrength}%) ";
@ -54,17 +54,6 @@
#"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;