Last active
March 11, 2017 21:55
-
-
Save conorbone/f3c3f248a4a24170d5236d772b0c2d49 to your computer and use it in GitHub Desktop.
.bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .bashrc | |
export PS1="\[\e[31m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]@\[\e[31m\]\h\[\e[m\]\[\e[31m\]]\[\e[m\]:\[\e[36m\][\[\e[m\]\[\e[36m\]\w\[\e[m\]\[\e[36m\]]\[\e[m\]\[\e[31m\]\\$\[\e[m\] " | |
# i like to talk to cows | |
fortune -c | cowthink -f $(find /usr/share/cows -type f | shuf -n 1) | |
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
echo "Hardware Information:" | |
uptime | |
free -m | |
# SSH sesions should be 80 wide :3 | |
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
w | |
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH="$PATH:$HOME/.rvm/bin" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" | |
# alias | |
alias dirs='dirs -v' # Looks better | |
alias ls='ls --color=auto' # Use colors | |
alias la='ls -Fa' # List all files | |
alias ll='ls -Fls' # Long listing format | |
alias vi='vim' # VI improved |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment