diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:38:46 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:38:46 -0500 |
| commit | 6eebd15c1eef2fa9dafccdd4036ad23800e1154c (patch) | |
| tree | 2efd9998d0bad7797cd2b43bfa65948f76b8aef6 /modules/bar/components/StatusIcons.qml | |
| parent | controlcenter: removed dev panels (diff) | |
| download | caelestia-shell-6eebd15c1eef2fa9dafccdd4036ad23800e1154c.tar.gz caelestia-shell-6eebd15c1eef2fa9dafccdd4036ad23800e1154c.tar.bz2 caelestia-shell-6eebd15c1eef2fa9dafccdd4036ad23800e1154c.zip | |
tray: consolidating ethernet into network
Diffstat (limited to 'modules/bar/components/StatusIcons.qml')
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index 6113539..1afa616 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -147,15 +147,15 @@ StyledRect { sourceComponent: MaterialIcon { animate: true - text: Network.active ? Icons.getNetworkIcon(Network.active.strength ?? 0) : "wifi_off" + text: Nmcli.active ? Icons.getNetworkIcon(Nmcli.active.strength ?? 0) : "wifi_off" color: root.colour } } // Ethernet icon WrappedLoader { - name: "ethernet" - active: Config.bar.status.showEthernet && Network.activeEthernet + name: "network" + active: Config.bar.status.showEthernet && Nmcli.activeEthernet sourceComponent: MaterialIcon { animate: true |