deskify-cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,19 +84,14 @@ npm install -g .
|
|
|
84
84
|
|
|
85
85
|
## How It Works
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
G --> H[Run Sudo chmod/chown on chrome-sandbox]
|
|
96
|
-
H --> I[Generate ~/.local/share/applications/App.desktop]
|
|
97
|
-
I --> J[Run update-desktop-database]
|
|
98
|
-
J --> K[App appears in System Search & Dock with proper icon!]
|
|
99
|
-
```
|
|
87
|
+
Deskify automates the following sequence:
|
|
88
|
+
1. **Pre-flight Checks**: Verifies Node.js, NPM, and system dependencies are available.
|
|
89
|
+
2. **Icon Extraction**: Automatically crawls or queries high-resolution favicons for your application.
|
|
90
|
+
3. **Compilation**: Packages the web app into an Electron wrapper via Nativefier.
|
|
91
|
+
4. **App Organization**: Places the package folders inside a clean `~/Apps` installation directory.
|
|
92
|
+
5. **StartupWMClass Mapping**: Parses the package details to map window instances correctly to the taskbar icon.
|
|
93
|
+
6. **Sandbox Configuration**: Sets the appropriate root permissions on the Chrome sandbox binary.
|
|
94
|
+
7. **Shortcut Registration**: Creates the launcher database entry (`.desktop`) and updates GNOME shortcuts.
|
|
100
95
|
|
|
101
96
|
---
|
|
102
97
|
|