diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-05 16:19:58 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-05 16:19:58 +1000 |
| commit | fb650907a0b18fab4f996c2fdc110d2d091e4060 (patch) | |
| tree | ab2ec5bb7f17fc36ea9ccc12bad451c43a1b7f9c /modules/detachedcontent/Session.qml | |
| parent | internal: position slider handle correctly (diff) | |
| download | caelestia-shell-fb650907a0b18fab4f996c2fdc110d2d091e4060.tar.gz caelestia-shell-fb650907a0b18fab4f996c2fdc110d2d091e4060.tar.bz2 caelestia-shell-fb650907a0b18fab4f996c2fdc110d2d091e4060.zip | |
internal: rename dcontent -> controlcenter
Diffstat (limited to 'modules/detachedcontent/Session.qml')
| -rw-r--r-- | modules/detachedcontent/Session.qml | 22 |
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 - } -} |