From 7ac2337a5c38af263719cf284064ebea11746016 Mon Sep 17 00:00:00 2001 From: histalek Date: Wed, 17 Nov 2021 11:36:15 +0100 Subject: [PATCH] firefox: Open new instances in new window This especially includes the handling of klicked hyperlinks from other applications. --- .local/share/applications/firefox.desktop | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .local/share/applications/firefox.desktop diff --git a/.local/share/applications/firefox.desktop b/.local/share/applications/firefox.desktop new file mode 100644 index 0000000..6473291 --- /dev/null +++ b/.local/share/applications/firefox.desktop @@ -0,0 +1,24 @@ +[Desktop Entry] +Version=1.0 +Name=Firefox +GenericName=Web Browser +Comment=Browse the World Wide Web +Keywords=Internet;WWW;Browser;Web;Explorer +Exec=/usr/lib/firefox/firefox --new-window %u +Icon=firefox +Terminal=false +X-MultipleArgs=false +Type=Application +MimeType=text/html;text/xml;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;application/x-xpinstall;application/pdf;application/json; +StartupNotify=true +StartupWMClass=firefox +Categories=Network;WebBrowser; +Actions=new-window;new-private-window; + +[Desktop Action new-window] +Name=New Window +Exec=/usr/lib/firefox/firefox --new-window %u + +[Desktop Action new-private-window] +Name=New Private Window +Exec=/usr/lib/firefox/firefox --private-window %u