Configure i3status

This commit is contained in:
Oliver Davies 2023-12-15 11:13:27 +00:00
parent 7124abf983
commit 4bbcbc6c4f
2 changed files with 22 additions and 0 deletions
system/nixos/home-manager/modules

View file

@ -65,4 +65,22 @@ in
smart_gaps on
'';
};
programs.i3status = {
enable = true;
general = {
colors = true;
color_bad = "#f7768e";
color_degraded = "#ff9e64";
color_good = "#c0caf5";
};
modules = {
cpu_temperature.enable = false;
ipv6.enable = false;
load.enable = false;
};
};
}