diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-28 12:12:43 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-28 12:14:04 -0400 |
| commit | 3a45de7f2d12a5317f07305a3cc854cc256edd7d (patch) | |
| tree | a78d4fa4454c5e89861c583ddf3a26d44cd90d44 | |
| parent | fix hyprland auto start (diff) | |
| download | dotfiles-nix-3a45de7f2d12a5317f07305a3cc854cc256edd7d.tar.gz dotfiles-nix-3a45de7f2d12a5317f07305a3cc854cc256edd7d.tar.bz2 dotfiles-nix-3a45de7f2d12a5317f07305a3cc854cc256edd7d.zip | |
make shell status icons conditional
| -rw-r--r-- | home/apps/caelestia/settings.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/apps/caelestia/settings.nix b/home/apps/caelestia/settings.nix index 9168d86..5c8a418 100644 --- a/home/apps/caelestia/settings.nix +++ b/home/apps/caelestia/settings.nix @@ -127,11 +127,11 @@ in { showOnHover = true; status = { showAudio = false; - showBattery = true; - showBluetooth = true; + showBattery = config.battery.enable; + showBluetooth = config.bluetooth.enable; showKbLayout = false; showMicrophone = false; - showNetwork = true; + showNetwork = config.network.enable; showLockStatus = false; }; tray = { @@ -175,7 +175,7 @@ in { # On screen display osd = { enabled = true; - enableBrightness = true; + enableBrightness = config.battery.enable; enableMicrophone = false; hideDelay = 2000; }; |