Skip to content

Instantly share code, notes, and snippets.

@funny-falcon
Created July 18, 2022 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funny-falcon/a73078a32529507c1e4e16bf36151074 to your computer and use it in GitHub Desktop.
Save funny-falcon/a73078a32529507c1e4e16bf36151074 to your computer and use it in GitHub Desktop.
.ssh/rc to constant ssh_auth_sock but not fake X11 auth
if test "$SSH_AUTH_SOCK" ; then
ln -sf $SSH_AUTH_SOCK ~/.ssh/ssh_auth_sock
SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock
export SSH_AUTH_SOCK
fi
# example sshrc file
if read proto cookie && [ -n "$DISPLAY" ]; then
if [ `echo $DISPLAY | cut -c1-10` = 'localhost:' ]; then
# X11UseLocalhost=yes
echo add unix:`echo $DISPLAY | cut -c11-` $proto $cookie
else
# X11UseLocalhost=no
echo add $DISPLAY $proto $cookie
fi | xauth -q -
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment