diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-14 14:04:44 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-14 14:04:44 +0200 |
| commit | 4eaf3bdce7b4e7663c6ba5c206d68eacbd24949e (patch) | |
| tree | 1183bab6d548425910d5dfc71c948fb64939ec8f /desktop/modules/bluetooth/BluetoothModule.qml | |
| parent | 5fb6c9636051423254c3f36f0ff19857898c93ad (diff) | |
| download | quickshell-4eaf3bdce7b4e7663c6ba5c206d68eacbd24949e.tar.gz quickshell-4eaf3bdce7b4e7663c6ba5c206d68eacbd24949e.zip | |
fix(desktop): wire tile active state and clear connect errors
Diffstat (limited to 'desktop/modules/bluetooth/BluetoothModule.qml')
| -rw-r--r-- | desktop/modules/bluetooth/BluetoothModule.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/modules/bluetooth/BluetoothModule.qml b/desktop/modules/bluetooth/BluetoothModule.qml index 80f80b9..4fd600f 100644 --- a/desktop/modules/bluetooth/BluetoothModule.qml +++ b/desktop/modules/bluetooth/BluetoothModule.qml @@ -36,6 +36,9 @@ Module { // Null for the first ~2s, then filled. Safe navigation everywhere. icon: mod.adapter && mod.adapter.enabled ? "\uf293" : "\uf05e" + // Active while anything is connected. + active: mod.anyConnected + function notify(title, body) { notifyProc.command = ["notify-send", "--app-name=bluetooth", "--urgency=critical", "--icon=error", title, body]; |
