From c01900fd2183a6f633e4222fb03049fae3911b63 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 25 Sep 2017 13:55:41 -0400 Subject: [PATCH] bash_profile: run keychain in the background It causes a few hundred msec delay on login otherwise, at least under gLinux. --- .bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2