[X2Go-User] x2go session control panel

Ulrich Sibiller uli42 at gmx.de
Thu Feb 7 19:35:57 CET 2019


> 6. 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


More information about the x2go-user mailing list