Minor edits.

This commit is contained in:
Derek Taylor
2024-04-16 20:13:30 -05:00
parent 9862068abd
commit 568963d881

View File

@@ -214,10 +214,10 @@ alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify"
# receive the key of a developer # receive the key of a developer
alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys" alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
# switch between shells # change your default USER shell
alias tobash="sudo chsh $USER -s /bin/bash && echo 'Now log out.'" alias tobash="sudo chsh $USER -s /bin/bash && echo 'Log out and log back in for change to take effect.'"
alias tozsh="sudo chsh $USER -s /bin/zsh && echo 'Now log out.'" alias tozsh="sudo chsh $USER -s /bin/zsh && echo 'Log out and log back in for change to take effect.'"
alias tofish="sudo chsh $USER -s /bin/fish && echo 'Now log out.'" alias tofish="sudo chsh $USER -s /bin/fish && echo 'Log out and log back in for change to take effect.'"
# bare git repo alias for dotfiles # bare git repo alias for dotfiles
alias config="/usr/bin/git --git-dir=$HOME/dotfiles --work-tree=$HOME" alias config="/usr/bin/git --git-dir=$HOME/dotfiles --work-tree=$HOME"