diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-10 10:00:04 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-10 10:00:04 -0500 |
| commit | 1debf488ee1ed24763a01c2e1bf5c3f4119de18f (patch) | |
| tree | 3eed720e275da1acef4af648640fb52c6c7d6f32 /modules/controlcenter/Session.qml | |
| parent | launcher: python execution like calculator functionality (diff) | |
| download | caelestia-shell-1debf488ee1ed24763a01c2e1bf5c3f4119de18f.tar.gz caelestia-shell-1debf488ee1ed24763a01c2e1bf5c3f4119de18f.tar.bz2 caelestia-shell-1debf488ee1ed24763a01c2e1bf5c3f4119de18f.zip | |
controlcenter: ethernet panel (debug)
Diffstat (limited to 'modules/controlcenter/Session.qml')
| -rw-r--r-- | modules/controlcenter/Session.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/controlcenter/Session.qml b/modules/controlcenter/Session.qml index 4ac09a4..f7c07e4 100644 --- a/modules/controlcenter/Session.qml +++ b/modules/controlcenter/Session.qml @@ -2,7 +2,7 @@ import Quickshell.Bluetooth import QtQuick QtObject { - readonly property list<string> panes: ["network", "bluetooth", "audio", "appearance"] + readonly property list<string> panes: ["ethernet", "wireless", "bluetooth", "audio", "appearance"] required property var root property bool floating: false @@ -12,6 +12,7 @@ QtObject { readonly property Bt bt: Bt {} readonly property Network network: Network {} + readonly property Ethernet ethernet: Ethernet {} onActiveChanged: activeIndex = panes.indexOf(active) onActiveIndexChanged: active = panes[activeIndex] @@ -29,4 +30,8 @@ QtObject { property bool showPasswordDialog: false property var pendingNetwork } + + component Ethernet: QtObject { + property var active + } } |