summaryrefslogtreecommitdiff
path: root/modules/controlcenter/state/BluetoothState.qml
blob: db8c7e1243f1902d060e94aaf8751be5cb1248d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Quickshell.Bluetooth
import QtQuick

QtObject {
    id: root

    // Active selected device
    property BluetoothDevice active: null

    // Current adapter being used
    property BluetoothAdapter currentAdapter: Bluetooth.defaultAdapter

    // UI state flags
    property bool editingAdapterName: false
    property bool fabMenuOpen: false
    property bool editingDeviceName: false
}