> Usually, > > % setenv DISPLAY :0.0 > (csh,tcsh) > > or > > $ export DISPLAY=:0.0 > (sh,bash,zsh,ksh) Nitpick: most implementations of sh I know do not accept this syntax. The only portable solution (to do it in one command line ;-) is $ DISPLAY=:0.0 ; export DISPLAY