summaryrefslogtreecommitdiff
path: root/modules/detachedcontent/Session.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/detachedcontent/Session.qml')
-rw-r--r--modules/detachedcontent/Session.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/detachedcontent/Session.qml b/modules/detachedcontent/Session.qml
deleted file mode 100644
index 0c3f1b4..0000000
--- a/modules/detachedcontent/Session.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import Quickshell.Bluetooth
-import QtQuick
-
-QtObject {
- readonly property list<string> panes: ["network", "bluetooth", "audio"]
-
- property string active
- property int activeIndex
-
- readonly property Bt bt: Bt {}
-
- onActiveChanged: activeIndex = panes.indexOf(active)
- onActiveIndexChanged: active = panes[activeIndex]
-
- component Bt: QtObject {
- property BluetoothDevice active
- property BluetoothAdapter currentAdapter: Bluetooth.defaultAdapter
- property bool editingAdapterName
- property bool fabMenuOpen
- property bool editingDeviceName
- }
-}