diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:40:50 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:40:50 -0500 |
| commit | 8d8afba79a58f917906c2457708950d050fa30e7 (patch) | |
| tree | 54561a7b5aaef95b13865ce4b0040ff720db67be | |
| parent | tray: consolidating ethernet into network (diff) | |
| download | caelestia-shell-8d8afba79a58f917906c2457708950d050fa30e7.tar.gz caelestia-shell-8d8afba79a58f917906c2457708950d050fa30e7.tar.bz2 caelestia-shell-8d8afba79a58f917906c2457708950d050fa30e7.zip | |
tray: removed ethernet config options (network covers it)
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | config/BarConfig.qml | 1 | ||||
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 2 |
3 files changed, 1 insertions, 3 deletions
@@ -372,7 +372,6 @@ default, you must create it manually. "showAudio": false, "showBattery": true, "showBluetooth": true, - "showEthernet": true, "showKbLayout": false, "showMicrophone": false, "showNetwork": true, diff --git a/config/BarConfig.qml b/config/BarConfig.qml index b81d7e9..34819b1 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -90,7 +90,6 @@ JsonObject { property bool showMicrophone: false property bool showKbLayout: false property bool showNetwork: true - property bool showEthernet: true property bool showBluetooth: true property bool showBattery: true property bool showLockStatus: true diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index 1afa616..80e8fe0 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -155,7 +155,7 @@ StyledRect { // Ethernet icon WrappedLoader { name: "network" - active: Config.bar.status.showEthernet && Nmcli.activeEthernet + active: Config.bar.status.showNetwork && Nmcli.activeEthernet sourceComponent: MaterialIcon { animate: true |