1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-09 14:02:10 -04:00

feat(SystemUpdate): Implement system update IPC commands

This commit is contained in:
purian23
2026-05-08 21:00:23 -04:00
parent d8835f2bc6
commit 6167f22837
6 changed files with 104 additions and 32 deletions

View File

@@ -409,16 +409,28 @@ dms ipc call bar status
## Target: `systemupdater`
System updater external check request.
System updater widget control and background update checks.
### Functions
**`toggle`**
- Toggle the system updater popout open/closed
**`open`**
- Open the system updater popout
**`close`**
- Close the system updater popout
**`updatestatus`**
- Trigger a system update check
- Trigger a background update check
- Returns: Success confirmation
### Examples
```bash
dms ipc call systemupdater toggle
dms ipc call systemupdater open
dms ipc call systemupdater close
dms ipc call systemupdater updatestatus
```