summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorEvertiro <dgriffiths@widgitlabs.com>2026-01-20 06:37:45 -0600
committerGitHub <noreply@github.com>2026-01-20 23:37:45 +1100
commitd50f6080ec55e87ff7bc600ebb66194119a0af7d (patch)
treefeda6e5b2a454422b32aad48997044d3e3681da4 /config
parentbackground: fix desktop clock 12h format (diff)
downloadcaelestia-shell-d50f6080ec55e87ff7bc600ebb66194119a0af7d.tar.gz
caelestia-shell-d50f6080ec55e87ff7bc600ebb66194119a0af7d.tar.bz2
caelestia-shell-d50f6080ec55e87ff7bc600ebb66194119a0af7d.zip
bar/statusicons: allow disabling wifi icon when ethernet is active (#1107)
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
Diffstat (limited to 'config')
-rw-r--r--config/BarConfig.qml1
-rw-r--r--config/Config.qml1
2 files changed, 2 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml
index 8226d9e..cf33fd2 100644
--- a/config/BarConfig.qml
+++ b/config/BarConfig.qml
@@ -96,6 +96,7 @@ JsonObject {
property bool showMicrophone: false
property bool showKbLayout: false
property bool showNetwork: true
+ property bool showWifi: true
property bool showBluetooth: true
property bool showBattery: true
property bool showLockStatus: true
diff --git a/config/Config.qml b/config/Config.qml
index 45717d1..10a2068 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -201,6 +201,7 @@ Singleton {
showMicrophone: bar.status.showMicrophone,
showKbLayout: bar.status.showKbLayout,
showNetwork: bar.status.showNetwork,
+ showWifi: bar.status.showWifi,
showBluetooth: bar.status.showBluetooth,
showBattery: bar.status.showBattery,
showLockStatus: bar.status.showLockStatus