diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-06-15 22:45:36 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-06-15 22:45:36 +0530 |
commit | fc3100a5889dcc51af3deeec0e6fa091f150de2f (patch) | |
tree | 0edfdbe5a7a23a1a1d26963b32db308b19252bcd | |
parent | d258d56ceec7a54ecec7736c0bc0244f1555f77f (diff) |
home/wayland/sway/i3status: init cpu module
-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"; |