Skip to content

Instantly share code, notes, and snippets.

@DevoKun
Last active October 24, 2018 02:13
Show Gist options
  • Select an option

  • Save DevoKun/040d900d6c1119d46e54f96b136c794a to your computer and use it in GitHub Desktop.

Select an option

Save DevoKun/040d900d6c1119d46e54f96b136c794a to your computer and use it in GitHub Desktop.
Configure bash shell config to flip a table whenever a command fails with a non-zero exit status.
export COLOR_NC='\e[0m'
export COLOR_BLUE='\e[0;34m'
export COLOR_GREEN='\e[0;32m'
export COLOR_CYAN='\e[0;36m'
export COLOR_RED='\e[0;31m'
export COLOR_BROWN='\e[0;33m'
export COLOR_YELLOW='\e[1;33m'

export PROMPT_COMMAND='[ $? -eq 0 ] || printf "${COLOR_CYAN}(${COLOR_GREEN}╯${COLOR_NC}${COLOR_BLUE}°${COLOR_CYAN}□${COLOR_BLUE}°${COLOR_CYAN})${COLOR_GREEN}╯${COLOR_RED}︵ ${COLOR_BROWN}┻━┻${COLOR_NC}\n"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment