diff options
| author | Robert Günzler <r@gnzler.io> | 2020-11-10 14:03:17 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-11-10 14:03:17 +0100 |
| commit | cee0acb812fb320f24ebc3e74d69320d24f18d38 (patch) | |
| tree | b64d4fbb55891f3b4b037a65363f81ca778cdc79 /.local/share/applications | |
| parent | a2598ee49f9b88cba137a356dc3cb0520828b4a0 (diff) | |
Add .desktop files to ~/.local/share/applications
Diffstat (limited to '.local/share/applications')
| -rw-r--r-- | .local/share/applications/defaults.list | 1 | ||||
| -rw-r--r-- | .local/share/applications/firefox.desktop | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/.local/share/applications/defaults.list b/.local/share/applications/defaults.list new file mode 100644 index 0000000..ca405e5 --- /dev/null +++ b/.local/share/applications/defaults.list @@ -0,0 +1 @@ +[Default Applications] diff --git a/.local/share/applications/firefox.desktop b/.local/share/applications/firefox.desktop new file mode 100644 index 0000000..b24b1c6 --- /dev/null +++ b/.local/share/applications/firefox.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Name=Firefox Nightly +Comment=Mozilla Firefox Web Browser +Exec=/home/robert/bin/firefox %u +Icon=firefox-nightly-bin +Terminal=false +Type=Application +MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; +Categories=Network;WebBrowser; +Actions=NewWindow;NewPrivateWindow; + +[Desktop Action NewWindow] +Name=New Window +Exec=/home/robert/bin/firefox --new-window %u + +[Desktop Action NewPrivateWindow] +Name=New Private Window +Exec=/home/robert/bin/firefox --private-window %u +StartupNotify=true |