Create a custom URL Protocol Handler
To register a new URL scheme handler with XDG, first create a Desktop Entry which specifies the x-scheme-handler/...
MIME type:
[Desktop Entry]
Type=Application
Name=DDG Scheme Handler
Exec=open-ddg.sh %u
StartupNotify=false
MimeType=x-scheme-handler/ddg;
Note that %u
passes the URL (e.g. ddg://query%20terms
) as a single parameter, according to the Desktop Entry Specification.
Once you have created this Desktop Entry and installed it (i.e. put it in the local or system applications
directory for XDG, like ~/.local/share/applications/
or /usr/share/applications/
), then you must register the application with the MIME type (assuming you had named your Desktop Entry ddg-opener.desktop
):
xdg-mime default ddg-opener.desktop x-scheme-handler/ddg
A reference implementation of the ddg-open.sh
handler:
#!/bin/bash
# bash and not just sh because we are using some bash-specific syntax
if [[ "$1" == "ddg:"* ]]; then
ref=${1#ddg://}
#ref=$(python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])" "$ref") # If you want decoding
xdg-open "https://duckduckgo.com/?q=$ref"
else
xdg-open "$1" # Just open with the default handler
fi