View Single Post
Old 10-02-2015, 07:19 AM   #3
kulo73
Junior Member
kulo73 began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Oct 2015
Device: Sony PRS-T1
Quote:
Originally Posted by kovidgoyal View Post
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

Last edited by kulo73; 10-02-2015 at 07:25 AM.
kulo73 is offline   Reply With Quote