From 912d35eb2f58600c1bc683246b23c15a7972940d Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Sun, 26 Jul 2026 10:52:26 +0200 Subject: [PATCH] Update keychain aliases following release of 3.0.0 --- bashrc-mine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc-mine b/bashrc-mine index bc3db12..2bb6349 100644 --- a/bashrc-mine +++ b/bashrc-mine @@ -9,10 +9,10 @@ eval $(keychain --quiet --eval) # Set Keychain aliases alias kc-home='keychain ~/.ssh/home' alias kc-project='keychain ~/.ssh/project' -alias kc-clean='keychain --clear' +alias kc-clean='keychain wipe' alias kcd-home='ssh-add -d ~/.ssh/home' alias kcd-project='ssh-add -d ~/.ssh/project' -alias kc-l='keychain -l' +alias kc-l='keychain list' # Set SSH VNC alias (may be temporary, if we could set it up in SSH config file) alias sshvnc='ssh -L 5901:localhost:5900'