Add this to /etc/profile:
# added to allow X11 applications to run
if [[ -z $DISPLAY ]]
then
export DISPLAY=:0.0
fi
And this to /etc/csh.cshrc:
# added to allow X11 applications to run
if (! $?DISPLAY) then
setenv DISPLAY :0.0
endif
Add this to /etc/profile:
# added to allow X11 applications to run
if [[ -z $DISPLAY ]]
then
export DISPLAY=:0.0
fi
And this to /etc/csh.cshrc:
# added to allow X11 applications to run
if (! $?DISPLAY) then
setenv DISPLAY :0.0
endif