dotwryn/bashrc

14 lines
441 B
Bash
Raw Normal View History

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