- create a small wrapper (/tmp/nxclient in my case) with this content:
#!/bin/bash PREFIX=/tmp/neatx # adapt to the same value you used above! PYTHONPATH=${PREFIX}/lib/python2.7/site-packages /tmp/neatx/lib/neatx/nxdialog "$@"
There's a "exec" missing, should look like this:
#!/bin/bash PREFIX=/tmp/neatx # adapt to the same value you used above! PYTHONPATH=${PREFIX}/lib/python2.7/site-packages exec /tmp/neatx/lib/neatx/nxdialog "$@"
Uli