summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-05-28 12:12:43 -0400
committerFreya Murphy <freya@freyacat.org>2026-05-28 12:14:04 -0400
commit3a45de7f2d12a5317f07305a3cc854cc256edd7d (patch)
treea78d4fa4454c5e89861c583ddf3a26d44cd90d44
parentfix hyprland auto start (diff)
downloaddotfiles-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.nix8
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;
};