Quote:
Originally Posted by kovidgoyal
xdg-open on your system is broken, it is not handling encoded file:// URLs correctly. Fix it and your problems will go away.
|
Thank you for your fast help!
Problem seems XFCE specific (occured on Linix Mint 17.2 xfce 64bit)
Found the bug indeed in /usr/bin/xdg-open - "$' is missing a " ("$"')
If anybody else has the problem change
Code:
elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce;
to
Code:
elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$"' >/dev/null 2>&1; then DE=xfce;
cheers