blob: 80f80b92783ac7c1341f50b9b3492ac7215437ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
import Quickshell
import Quickshell.Bluetooth
import Quickshell.Io
import QtQuick
import "../.."
// Always active: the BlueZ backend pushes and there is no poll to gate.
// Referencing Bluetooth here instantiates it at shell start.
Module {
id: mod
name: "bluetooth"
label: "Bluetooth"
alwaysActive: true
readonly property var adapter: Bluetooth.defaultAdapter
readonly property Pairing pairing: Pairing {}
readonly property var devices: Bluetooth.devices ? Bluetooth.devices.values : []
readonly property var connectedDevices: devices.filter(d => d.connected)
readonly property var pairedDevices: devices.filter(d => d.paired && !d.connected)
readonly property var availableDevices: devices.filter(d => !d.paired)
readonly property bool anyConnected: connectedDevices.length > 0
// Null for the first ~2s, then filled. Safe navigation everywhere.
icon: mod.adapter && mod.adapter.enabled ? "\uf293" : "\uf05e"
function notify(title, body) {
notifyProc.command = ["notify-send", "--app-name=bluetooth",
"--urgency=critical", "--icon=error", title, body];
notifyProc.running = false;
notifyProc.running = true;
}
property Process notifyProc: Process {}
// Pairing runs through bluetoothctl; on success connect natively, on
// failure notify, since the drawer may have closed by then.
property Connections pairingConn: Connections {
target: mod.pairing
function onFinished(address, ok) {
if (!ok) {
mod.notify("Bluetooth", "Pairing failed: " + mod.pairing.error);
return;
}
const d = mod.devices.find(x => x.address === address);
if (d) d.connect();
}
}
tileContent: Component { BluetoothTile { bt: mod } }
page: Component {
Page {
title: "Bluetooth"
BluetoothPage { width: parent.width; bt: mod }
}
}
}
|