The 'improved' bash script to launch xnview doesn't seem to work if it's run from anywhere but the working directory. Problem is the first line of code which just returns dirname "." and it really needs to be the absolute path. The fix is simple. Change
Code: Select all
dirname="$(dirname "$(readlink "$0")")"
Code: Select all
dirname="$(dirname "$(readlink -f "$0")")"