-
-
Notifications
You must be signed in to change notification settings - Fork 6
Features Network
coe0718 edited this page May 23, 2026
·
4 revisions
Query network status and WiFi information.
deskbrid network statusResponse:
{
"type": "response",
"status": "ok",
"data": {
"connected": true,
"interface": "wlan0",
"type": "wifi",
"ssid": "MyNetwork",
"signal": 85
}
}Protocol:
{"type": "network.status"}deskbrid network wifiResponse:
{
"type": "response",
"status": "ok",
"data": [
{"ssid": "MyNetwork", "signal": 85, "secured": true},
{"ssid": "GuestNetwork", "signal": 42, "secured": false}
]
}Protocol:
{"type": "network.wifi"}from deskbrid import Deskbrid
client = Deskbrid()
status = client.network_status()
if status["connected"]:
print(f"Connected to {status['ssid']}")
else:
print("No network connection")- 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