From c624a9183965026f594fbcd903cb1e1c503f0aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 25 Nov 2025 11:52:50 +0100 Subject: [PATCH] Fix firefox desktop entry --- applications/firefox.desktop | 5 +++-- bin/firefox-default | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/applications/firefox.desktop b/applications/firefox.desktop index 2e97ba0..463635d 100644 --- a/applications/firefox.desktop +++ b/applications/firefox.desktop @@ -1,3 +1,4 @@ [Desktop Entry] -Exec=/bin/sh -c '/usr/bin/firefox --profile "$HOME/.mozilla/firefox/profile-default" %u' - +Type=Application +Name=Firefox +Exec=firefox-default --new-tab %u diff --git a/bin/firefox-default b/bin/firefox-default index 7c881d7..6474ce9 100755 --- a/bin/firefox-default +++ b/bin/firefox-default @@ -1,3 +1,3 @@ #!/usr/bin/env bash -exec /usr/bin/firefox --profile "$HOME/.mozilla/firefox/profile-default" +exec /usr/bin/firefox --profile "$HOME/.mozilla/firefox/profile-default" "${@}"