| Sign In/My Account | View Cart |
| Article: |
Graphical Toolkits for OS X: wxPython | |
| Subject: | The GUI toolkits | |
| Date: | 2007-05-05 17:37:34 | |
| From: | interprocess | |
|
Do any of the GUI toolkits that you're going to cover work in X11? Can I write a GUI program that executes on my server and displays on user's desktop boxes when they SSH into the server vi the X11.app and execute the program? I've tried with Apple's installs of Tcl/Tk and Python and they won't remote display.
|
||
Showing messages 1 through 4 of 4.
The GUI toolkits
The GUI toolkits
1. Yes, I am about to publish (in the next week or so) an article on GTK which uses X11 from Apple.
2. Yes you can write server programs that show up on the desktop through ssh. The trick is to make sure X11 is running on the users desktop and to pass the -X (uppercase x) to ssh, like this;
ssh -X your.server.name
Then run the program, like this;
./my_X_app
3. Are you passing the -X switch when you ssh in? Double check you X11 confiiguration and you X windows configuration, it often requires some tweaking because of its default settings. That is to say, you may need to explicitly inform both the server and the client that exporting / importing X windows is allowed.
Hope that helps,
Jeremiah