diff --git a/io.github.zen_browser.zen.desktop b/io.github.zen_browser.zen.desktop index 6c7d268..863023c 100644 --- a/io.github.zen_browser.zen.desktop +++ b/io.github.zen_browser.zen.desktop @@ -14,12 +14,12 @@ Actions=new-window;new-private-window;profilemanager; [Desktop Action new-window] Name=Open a New Window -Exec=/app/zen/zen %u +Exec=launch-script.sh %u [Desktop Action 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] Name=Open the Profile Manager -Exec=/app/zen/zen --ProfileManager %u +Exec=launch-script.sh --ProfileManager %u diff --git a/io.github.zen_browser.zen.metainfo.xml b/io.github.zen_browser.zen.metainfo.xml index 96a65a1..b68dc6b 100644 --- a/io.github.zen_browser.zen.metainfo.xml +++ b/io.github.zen_browser.zen.metainfo.xml @@ -27,6 +27,9 @@ + + https://get-zen.vercel.app/release-notes/1.0.0-a.15 + https://get-zen.vercel.app/release-notes/1.0.0-a.11 diff --git a/launch-script.sh b/launch-script.sh new file mode 100644 index 0000000..c50deec --- /dev/null +++ b/launch-script.sh @@ -0,0 +1,4 @@ +#!/bin/bash +export TMPDIR=$XDG_CACHE_HOME/tmp + +exec /app/zen/zen "$@" \ No newline at end of file