Clarify fullscreen vs no-decorations README examples

This commit is contained in:
Sebastian Palencsar
2026-02-23 09:12:45 +01:00
parent a7f0795818
commit e3d377462d

View File

@@ -215,13 +215,23 @@ deskify build \
--url "https://netflix.com" \ --url "https://netflix.com" \
--name "Netflix" \ --name "Netflix" \
--fullscreen \ --fullscreen \
--no-decorations \
--user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0.0.0 Safari/537.36" \ --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0.0.0 Safari/537.36" \
--dark-mode \ --dark-mode \
--width 1280 \ --width 1280 \
--height 720 --height 720
``` ```
Frameless example (without fullscreen):
```bash
deskify build \
--url "https://chat.com" \
--name "Chat" \
--no-decorations \
--width 1200 \
--height 800
```
* `--icon <PATH>`: Provide a custom PNG icon instead of auto-downloading one. * `--icon <PATH>`: Provide a custom PNG icon instead of auto-downloading one.
* `--fullscreen`: Starts the app in Kiosk mode. * `--fullscreen`: Starts the app in Kiosk mode.
* `--no-decorations`: Disables native window decorations (frameless window; useful for dashboards/kiosk setups). * `--no-decorations`: Disables native window decorations (frameless window; useful for dashboards/kiosk setups).