dotfiles/acct.sh
2021-11-07 11:13:10 -08:00

10 lines
228 B
Bash
Executable File

#!/usr/bin/env bash -eo pipefail
ACCT=`whoami`
# change default shell back to bash
chsh -s /bin/bash $ACCT
# Generate keypair for use with github
ssh-keygen -o -a 100 -t ed25519 -f $HOME/.ssh/id_ed25519 -C "colin@jchenry.me"