diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/wayland/modules/sway/i3status.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/home/wayland/modules/sway/i3status.nix b/home/wayland/modules/sway/i3status.nix index 909faf0..ef17c84 100644 --- a/home/wayland/modules/sway/i3status.nix +++ b/home/wayland/modules/sway/i3status.nix @@ -33,13 +33,23 @@ }; "volume master" = { - position = 30; + position = 50; settings = { format = " %volume"; format_muted = " %volume"; }; }; + "cpu_temperature 0" = { + position = 40; + settings.format = "%degrees°C"; + }; + + "cpu_usage" = { + position = 30; + settings.format = " %usage"; + }; + "memory" = { position = 20; settings.format = " %available"; |