I’m working on a little program that’ll launch different browsers based on the content of the URL passed and I’d like to set it as the default Web app in this list (under Settings → Default Apps). I’ve written a .desktop file based on the epiphany.desktop file, but it doesn’t show up when I hit [Win]+o+p+e and it doesn’t show up in the default apps either, so I’m hoping that someone here can explain what I’ve done wrong.

Here’s the contents of the opening.desktop file:

$ cat ~/.local/share/applications/opening.desktop 
[Desktop Entry]
Name=Opening
GenericName=Web Browser
Comment=Open links in the right browsers
Keywords=web;browser;internet;opening;
Exec=opening %u
StartupNotify=true
Terminal=false
Type=Application
Icon=/home/daniel/.local/share/applications/opening.png
Categories=Network;WebBrowser;
MimeType=text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;multipart/related;application/x-mimearchive;message/rfc822;application/x-xpinstall;

Any criticisms are much appreciated!