Skip to content

Instantly share code, notes, and snippets.

@pono
Created July 31, 2014 16:24
Show Gist options
  • Save pono/113418b78abebab76d97 to your computer and use it in GitHub Desktop.
Save pono/113418b78abebab76d97 to your computer and use it in GitHub Desktop.
.bashrc for blog post
box="${HOSTNAME#*.}"
D=$'\[\e[0m\]'
case "$box" in
aqua) COLOR=$'\e[1;34m\]'
;;
cyan) COLOR=$'\e[1;36m\]'
;;
diamond) COLOR=$'\e[0;37m\]'
;;
emerald) COLOR=$'\e[1;32m\]'
;;
pink) COLOR=$'\e[0;35m\]'
;;
yellow) COLOR=$'\e[0;33m\]'
;;
esac
PS1="\w ${COLOR}♥${D} "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment