From bb40d8fc7777e14421c6b6ce88244cb0e448db59 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 27 Oct 2020 16:00:15 +0100 Subject: [PATCH] [UPDATE][SHELL] Do not unset SSH_ASKPASS This allows `keychain` to start very early using a GUI, not making my first terminal slow to open. --- shell/.profile | 3 --- 1 file changed, 3 deletions(-) diff --git a/shell/.profile b/shell/.profile index d427d8a..28c7005 100644 --- a/shell/.profile +++ b/shell/.profile @@ -56,9 +56,6 @@ elif { [ -n "$BASH_VERSION" ] || [ -n "$ZSH_VERSION" ] ; } && stty -ixon fi -# I do not want popups when asking for my SSH key -unset SSH_ASKPASS - # Use keychain to handle ssh-agent, in interactive shell too eval "$(keychain --dir ~/.cache/keychain --inherit any-once --eval id_rsa --eval shared_rsa --quiet)"