I have to use Quartz X11 window when I want to plot data that is on a remote server (using NX). I'd like to use my iTerm terminal as the interface to this, as it is nicely customized with fonts, themes, etc - instead of the bare xterm window. How do I do this?
Assuming that you have set-up everything correctly with ssh and XQuartz. You need to set-up the DISPLAY
environmental variable:
export DISPLAY=:0
ssh -Y ...
# start your app
xterm has variable DISPLAY
automatically set by default.