-
-
Notifications
You must be signed in to change notification settings - Fork 6
Features Bluetooth
coe0718 edited this page May 23, 2026
·
3 revisions
Discover and control Bluetooth devices.
deskbrid bluetooth listResponse:
{
"type": "response",
"status": "ok",
"data": [
{
"name": "My Headphones",
"mac": "00:11:22:33:44:55",
"connected": true,
"paired": true
}
]
}Protocol:
{"action": "bluetooth.list"}deskbrid bluetooth connect 00:11:22:33:44:55
deskbrid bluetooth disconnect 00:11:22:33:44:55Protocol:
{"action": "bluetooth.connect", "mac": "00:11:22:33:44:55"}deskbrid bluetooth pair 00:11:22:33:44:55Protocol:
{"action": "bluetooth.pair", "mac": "00:11:22:33:44:55"}from deskbrid import Deskbrid
client = Deskbrid()
devices = client.bluetooth_list()
for device in devices:
print(f"{device['name']}: {'connected' if device['connected'] else 'disconnected'}")- Accessibility
- Apps
- Audio
- Backlight (LED driver)
- Bluetooth
- Clipboard
- Color Picker
- Desktop Portal
- Desktop Settings
- Files
- Hotkeys
- Input
- Keyboard Layouts
- Media (MPRIS)
- Monitors
- Network
- Notifications
- Print (CUPS)
- Screenshots
- Screen Recording
- Screencast
- Self-Update
- System
- System Tray
- Systemd Units & Timers
- Terminals (PTY)
- Windows & Workspaces