diff options
Diffstat (limited to 'modules/controlcenter/state/BluetoothState.qml')
| -rw-r--r-- | modules/controlcenter/state/BluetoothState.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/controlcenter/state/BluetoothState.qml b/modules/controlcenter/state/BluetoothState.qml new file mode 100644 index 0000000..00497ce --- /dev/null +++ b/modules/controlcenter/state/BluetoothState.qml @@ -0,0 +1,13 @@ +import Quickshell.Bluetooth +import QtQuick + +QtObject { + id: root + + property BluetoothDevice active: null + property BluetoothAdapter currentAdapter: Bluetooth.defaultAdapter + property bool editingAdapterName: false + property bool fabMenuOpen: false + property bool editingDeviceName: false +} + |