forked from logan/dotfiles
Added ssh-agent autostart
This commit is contained in:
parent
4983d2fe85
commit
37a3b9896d
1 changed files with 6 additions and 0 deletions
6
.bashrc
6
.bashrc
|
@ -5,6 +5,12 @@
|
|||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
|
||||
ssh-agent > "$XDG_RUNTIME_DIR/ssh-agent.env"
|
||||
fi
|
||||
if [[ ! "$SSH_AUTH_SOCK" ]]; then
|
||||
eval "$(<"$XDG_RUNTIME_DIR/ssh-agent.env")"
|
||||
fi
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
alias grep='grep --color=auto'
|
||||
|
|
Loading…
Reference in a new issue