From 19a402be4dfb8a61c5c42a8166ecf51f26f349f2 Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Mon, 23 Feb 2026 12:20:37 +0100 Subject: [PATCH] Improve quick start PATH hint and clarify install tracks --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 39190a2..cb3a70b 100755 --- a/README.md +++ b/README.md @@ -41,6 +41,9 @@ curl -L -o ~/.local/bin/deskify \ https://github.com/spalencsar/deskify/releases/latest/download/deskify-linux-x86_64 chmod +x ~/.local/bin/deskify +# If `deskify` is not found, ensure ~/.local/bin is in PATH (common on Ubuntu/Debian): +command -v deskify >/dev/null || { echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc; } + deskify build --url "https://chat.com" --name "Chat" --backend chromium ``` @@ -189,6 +192,8 @@ Notes: - The `tauri` backend still requires Tauri/WebKitGTK system dependencies to build wrappers locally. - The `chromium` backend does not require Tauri prerequisites (but it requires an installed Chromium-based browser). +### Option B: Build from source (Tauri mode) + ### 1. System Dependencies Because `deskify` compiles Tauri applications natively on your machine, you need the standard Tauri prerequisites installed before using it.