dotwryn/bashrc
2019-04-16 09:54:31 -06:00

14 lines
441 B
Bash

RC_DIR="$HOME/.wryn"
# terminal colors
source $RC_DIR/bashcolors
# scripts for fun (see file for dependencies)
source $RC_DIR/fun
# --- Welcome message -----------------------------------------
exec artii "Welcome, beautiful" | lolcat; echo; cowsay -p -f small "damn u sexy" | lolcat;
# --- Utility Alias -------------------------------------------
alias restart='clear; source ~/.bashrc; echo'
alias datereadable='date +"%A %B %d, %Y"'