Update Zen Browser desktop file with new launch script and icon paths

This commit is contained in:
Mauro Balades 2024-08-08 10:42:28 +02:00
parent c252696a36
commit 06cd3b54f7
3 changed files with 10 additions and 3 deletions

View file

@ -14,12 +14,12 @@ Actions=new-window;new-private-window;profilemanager;
[Desktop Action new-window] [Desktop Action new-window]
Name=Open a New Window Name=Open a New Window
Exec=/app/zen/zen %u Exec=launch-script.sh %u
[Desktop Action new-private-window] [Desktop Action new-private-window]
Name=Open a New Private Window Name=Open a New Private Window
Exec=/app/zen/zen --private-window %u Exec=launch-script.sh --private-window %u
[Desktop Action profilemanager] [Desktop Action profilemanager]
Name=Open the Profile Manager Name=Open the Profile Manager
Exec=/app/zen/zen --ProfileManager %u Exec=launch-script.sh --ProfileManager %u

View file

@ -27,6 +27,9 @@
</description> </description>
<releases> <releases>
<release version="1.0.0-a.15" date="2024-08-07">
<url type="details">https://get-zen.vercel.app/release-notes/1.0.0-a.15</url>
</release>
<release version="1.0.0-a.11" date="2024-08-03"> <release version="1.0.0-a.11" date="2024-08-03">
<url type="details">https://get-zen.vercel.app/release-notes/1.0.0-a.11</url> <url type="details">https://get-zen.vercel.app/release-notes/1.0.0-a.11</url>
</release> </release>

4
launch-script.sh Normal file
View file

@ -0,0 +1,4 @@
#!/bin/bash
export TMPDIR=$XDG_CACHE_HOME/tmp
exec /app/zen/zen "$@"