From 06cd3b54f715e6a47bf44e0db7571094b8899c3a Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Thu, 8 Aug 2024 10:42:28 +0200 Subject: [PATCH] Update Zen Browser desktop file with new launch script and icon paths --- io.github.zen_browser.zen.desktop | 6 +++--- io.github.zen_browser.zen.metainfo.xml | 3 +++ launch-script.sh | 4 ++++ 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 launch-script.sh 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