Skip to content

Instantly share code, notes, and snippets.

@funny-falcon
Created July 18, 2022 08:11
Show Gist options
  • Select an option

  • Save funny-falcon/a73078a32529507c1e4e16bf36151074 to your computer and use it in GitHub Desktop.

Select an option

Save funny-falcon/a73078a32529507c1e4e16bf36151074 to your computer and use it in GitHub Desktop.

Revisions

  1. funny-falcon created this gist Jul 18, 2022.
    16 changes: 16 additions & 0 deletions sshrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    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