summaryrefslogtreecommitdiff
path: root/modules/controlcenter/Session.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-10 10:00:04 -0500
committerATMDA <atdma2600@gmail.com>2025-11-10 10:00:04 -0500
commit1debf488ee1ed24763a01c2e1bf5c3f4119de18f (patch)
tree3eed720e275da1acef4af648640fb52c6c7d6f32 /modules/controlcenter/Session.qml
parentlauncher: python execution like calculator functionality (diff)
downloadcaelestia-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.qml7
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
+ }
}