diff --git a/home/homemodules/waybar/default.nix b/home/homemodules/waybar/default.nix
index e4512438..1e3a33dd 100644
--- a/home/homemodules/waybar/default.nix
+++ b/home/homemodules/waybar/default.nix
@@ -77,11 +77,11 @@ in {
tooltip = true;
tooltip-icon-size = 24;
}
- {
- type = "audio-out";
- tooltip = true;
- tooltip-icon-size = 24;
- }
+ # {
+ # type = "audio-out";
+ # tooltip = true;
+ # tooltip-icon-size = 24;
+ # }
{
type = "audio-in";
tooltip = true;
@@ -105,26 +105,29 @@ in {
};
disk = {
+ interval = 5;
format = " {percentage_used}%";
on-click = "kitty --hold --title=Duf duf --hide-mp '/var/*,/etc/*,/usr/*,/home/christoph/.*' -width 120";
};
cpu = {
- states = {
- "critical" = 85;
- };
+ interval = 1;
+ # states = {
+ # "critical" = 85;
+ # };
format = " {load}%";
- format-critical = " {load}%";
+ # format-critical = " {load}%";
on-click = "kitty --title=Btop btop";
tooltip = false;
};
memory = {
- states = {
- "critical" = 85;
- };
+ interval = 1;
+ # states = {
+ # "critical" = 85;
+ # };
format = " {percentage}%";
- format-critical = " {percentage}%";
+ # format-critical = " {percentage}%";
on-click = "kitty --title=Btop btop";
tooltip = true;
tooltip-format = "RAM: {used}GiB / {total}GiB\nSwap: {swapUsed}GiB / {swapTotal}GiB";