adding toilet on top of figlet for more silly fonts and better gsa

This commit is contained in:
JesseBot 2022-11-05 14:02:28 +01:00
parent ee72ad7360
commit 7bff4ad41a
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
###########################################################
# ===-----------------------------------------------=== #
# General #
# General Brewfile for both macOS and Debian #
# ===-----------------------------------------------=== #
###########################################################
@ -53,6 +53,7 @@ brew "rich"
# make fun text in the terminal
brew "lolcat"
brew "figlet"
brew "toilet"
brew "cowsay"
# steam locamotive

View file

@ -199,7 +199,7 @@ alias cat='dog'
alias gc='git commit -m'
alias gs='git status'
# check all directories below current directory for their git status
alias gsa='ls -1 -A | xargs -I % sh -c "figlet % | lolcat ; cd %; git status --short; cd - > /dev/null; echo ''"'
alias gsa='ls -1 -A | xargs -I % sh -c "toilet -f smblock % | lolcat ; cd %; git status --short; cd - > /dev/null; echo ''"'
alias gd='git diff'
alias ga='git add .'
alias gph='git push && git push --tags'