From: Mike Frysinger Date: Mon, 25 Sep 2017 17:55:41 +0000 (-0400) Subject: bash_profile: run keychain in the background X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;ds=sidebyside;h=c01900fd2183a6f633e4222fb03049fae3911b63;p=home.git bash_profile: run keychain in the background It causes a few hundred msec delay on login otherwise, at least under gLinux. --- diff --git a/.bash_profile b/.bash_profile index 75b8798..4935e8f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -2,7 +2,7 @@ if type -P keychain >/dev/null ; then ( set -- $(find ~/.ssh/ -maxdepth 1 -type f '(' -name 'id_*' -a '!' -name '*.pub' ')') chmod go-rwx "$@" - keychain -q "$@" + keychain -q "$@" & ) fi [[ -f ~/.bashrc ]] && . ~/.bashrc