From 3a45de7f2d12a5317f07305a3cc854cc256edd7d Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 28 May 2026 12:12:43 -0400 Subject: make shell status icons conditional --- home/apps/caelestia/settings.nix | 8 ++++---- 1 file 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; }; -- cgit v1.3.1-freya