setup/profile.d/xhost.csh
2011-04-26 13:22:53 +02:00

12 lines
214 B
Tcsh

# Export Xauthority for users not for root.
if ($?DISPLAY) then
if (! $?SSH_TTY) then
if ( `id -u` >= 14 ) then
if (! $?XAUTHORITY) then
setenv XAUTHORITY $HOME/.Xauthority
endif
endif
endif
endif