Re: Dropbox howto
I recently upgraded my Dropbox to version 1.1.23 and it stopped opening thunar with the "fake nautilus" script:
#!/bin/bash
exec thunar $@
exit 0I found it needed to be changed to:
#!/bin/bash
exec thunar ${@/#--no-desktop}
exit 0since Dropbox is now sneaking a "--no-desktop" in as the first argument. You could also use $2 but that might make it not work if you're not using the newest Dropbox. ${@/#--no-desktop} will work since it just takes out the --no-desktop if it's there.