-
-
Notifications
You must be signed in to change notification settings - Fork 6
Features Clients
Tuck edited this page Jun 28, 2026
·
1 revision
List connected agent clients. Each active connection to the daemon is tracked with metadata including the client type, protocol version, and connection age.
List all currently connected clients.
deskbrid clients.list{"type": "clients.list"}Response:
{
"type": "response",
"status": "ok",
"data": [
{
"client_id": "sock_abc123",
"agent_name": "agent-1",
"protocol": "json",
"connected_since": 1705312800,
"address": "/run/user/1000/deskbrid.sock"
}
]
}from deskbrid import Deskbrid
client = Deskbrid()
clients = client.clients_list()
for c in clients:
print(f"{c['agent_name']} connected since {c['connected_since']}")Stable — listing connected clients.
- 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