From e3d377462d8ba3f87a6575baef9e47f02ece9d4f Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Mon, 23 Feb 2026 09:12:45 +0100 Subject: [PATCH] Clarify fullscreen vs no-decorations README examples --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 01a8af9..cb28e96 100755 --- a/README.md +++ b/README.md @@ -215,13 +215,23 @@ deskify build \ --url "https://netflix.com" \ --name "Netflix" \ --fullscreen \ - --no-decorations \ --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0.0.0 Safari/537.36" \ --dark-mode \ --width 1280 \ --height 720 ``` +Frameless example (without fullscreen): + +```bash +deskify build \ + --url "https://chat.com" \ + --name "Chat" \ + --no-decorations \ + --width 1200 \ + --height 800 +``` + * `--icon `: Provide a custom PNG icon instead of auto-downloading one. * `--fullscreen`: Starts the app in Kiosk mode. * `--no-decorations`: Disables native window decorations (frameless window; useful for dashboards/kiosk setups).