Update: - I have made a standalone version of neatx's nxdialog.py, see https://github.com/ArcticaProject/nx-libs/pull/767 - all this stuff I have been talking about in the previous posts refers to the menu being displayed in _rootless_ (or application) mode only. It does offer a menu bar for fullscreen mode
Uli On Thu, Feb 7, 2019 at 7:35 PM Ulrich Sibiller <[email protected]> wrote: > > > 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 _______________________________________________ x2go-user mailing list [email protected] https://lists.x2go.org/listinfo/x2go-user
