From 578fcdead894c16d471cd67e3ba2c599418e8159 Mon Sep 17 00:00:00 2001 From: Dr-Wasabi Date: Sun, 15 May 2022 11:21:15 -0400 Subject: [PATCH] Use differnt ssh-key with agent --- .bashrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index df2b2ea..bac78b8 100644 --- a/.bashrc +++ b/.bashrc @@ -148,18 +148,21 @@ export PATH=$PATH:/usr/local/go/bin # Needed to get some go modules to complile export CGO_LDFLAGS_ALLOW="-Wl,-Bsymbolic-functions" + #Loo kin my ascii-art folder, and use shuf to get a randome file name. + BANNERFILE=$(ls ~/mydocs/ascii-art/ | shuf -n 1) # Then use lolcat to display the colorful ascii art file lolcat ~/mydocs/ascii-art/$BANNERFILE # Set up ssh-agent using keychain -/usr/bin/keychain --nogui $HOME/.ssh/id_rsa +/usr/bin/keychain --nogui $HOME/.ssh/id_ed25519 +#/usr/bin/keychain --nogui $HOME/.ssh/id_rsa source $HOME/.keychain/$HOSTNAME-sh -eval "$(starship init bash)" +# eval "$(starship init bash)" # cd to my wsl2 home folder cd ~