From 4bbcbc6c4fa9bc8227efde6e8e6d7a19df63ea02 Mon Sep 17 00:00:00 2001 From: Oliver Davies <oliver@oliverdavies.uk> Date: Fri, 15 Dec 2023 11:13:27 +0000 Subject: [PATCH] Configure i3status --- CHANGELOG.md | 4 ++++ system/nixos/home-manager/modules/i3.nix | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f39cf78c..2973d853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ Instead of grouping changes by tag, they are grouped by the date they are releas * Add `:dotfiles` to espanso that links to my dotfiles repository on GitHub. +### Changed + +* Configure colours in `i3status` and remove some modules. + ## 14th December 2023 ### Added diff --git a/system/nixos/home-manager/modules/i3.nix b/system/nixos/home-manager/modules/i3.nix index 67bcd162..2e452472 100644 --- a/system/nixos/home-manager/modules/i3.nix +++ b/system/nixos/home-manager/modules/i3.nix @@ -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; + }; + }; }