"xdg-open" stuff, which utterly fails to function in Puppy
Some Pups, like BionicPup64, have code that breaks xdg-open.
Puppy uses Rox-Filer to open files but in some Pups,
you can edit /usr/local/bin/roxfiler
and change this:
exec /usr/local/apps/ROX-Filer/AppRun "${@#*file://}"
to this:
exec /usr/local/apps/ROX-Filer/AppRun "$@"
xdg-open
should now work better.
The torrent line in /usr/local/bin/xdg-open
does nothing, unless you move it in to the case statement, like this:
Code: Select all
#!/bin/sh
#this script created by Jemimah. see: http://murga-linux.com/puppy/viewtopic.php?t=63400&start=150
#110115 xdg-open used to be a symlink to defaulthandler.
case "$1" in
'') exit
;;
file://*) exec /usr/local/apps/ROX-Filer/AppRun -U "$1"
;;
magnet:*) exec transmission "$1"
;;
*://*) exec rox -U "$1"
;;
*@*.*) exec rox -U "mailto:${1}"
;;
*) exec rox "$1"
;;
esac
It can be problematic if an installer (or any software expects to use sudo
AFAIK, this (roxfiler) is fixed in FossaPup64.