This commit is contained in:
Russell Riker 2022-09-07 13:25:24 +00:00
parent 4925be4ebd
commit ade46fa4aa
1 changed files with 14 additions and 11 deletions

25
.bashrc
View File

@ -149,20 +149,23 @@ 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.
# Check to see if this is the tilde.team machine, if so don't run this stuff
echo $HOSTNAME
if [ $HOSTNAME != 'tilde' ]; then
BANNERFILE=$(ls ~/mydocs/ascii-art/ | shuf -n 1)
# Then use lolcat to display the colorful ascii art file
lolcat ~/mydocs/ascii-art/$BANNERFILE
#Look in 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
# fetchmaster6000
fm6000 -r
# Set up ssh-agent using keychain
/usr/bin/keychain --nogui $HOME/.ssh/id_ed25519
#/usr/bin/keychain --nogui $HOME/.ssh/id_rsa
source $HOME/.keychain/$HOSTNAME-sh
# fetchmaster6000
fm6000 -r
# Set up ssh-agent using keychain
/usr/bin/keychain --nogui $HOME/.ssh/id_ed25519
#/usr/bin/keychain --nogui $HOME/.ssh/id_rsa
source $HOME/.keychain/$HOSTNAME-sh
fi
# eval "$(starship init bash)"