Skip to content

Instantly share code, notes, and snippets.

@petdance
Created September 10, 2019 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petdance/d678f197568265c8851e3bf0ed1bd20d to your computer and use it in GitHub Desktop.
Save petdance/d678f197568265c8851e3bf0ed1bd20d to your computer and use it in GitHub Desktop.
Put this in ~/.bash/prompt.sh, and add "source ~/.bash/prompt.sh" in your .bashrc
#!/bin/bash
# Adapted from from https://github.com/hoelzro/bashrc/blob/master/colors.sh
function __prompt
{
local EXIT="$?" # Stash the exit status for later.
# List of color variables that bash can use
local BLACK="\[\033[0;30m\]" # Black
local DGREY="\[\033[1;30m\]" # Dark Gray
local RED="\[\033[0;31m\]" # Red
local LRED="\[\033[1;31m\]" # Light Red
local GREEN="\[\033[0;32m\]" # Green
local LGREEN="\[\033[1;32m\]" # Light Green
local BROWN="\[\033[0;33m\]" # Brown
local YELLOW="\[\033[0;33m\]" # Yellow
local LYELLOW="\[\033[1;33m\]" # Light Yellow
local BLUE="\[\033[0;34m\]" # Blue
local LBLUE="\[\033[1;34m\]" # Light Blue
local PURPLE="\[\033[0;35m\]" # Purple
local LPURPLE="\[\033[1;35m\]" # Light Purple
local CYAN="\[\033[0;36m\]" # Cyan
local LCYAN="\[\033[1;36m\]" # Light Cyan
local LGREY="\[\033[0;37m\]" # Light Gray
local WHITE="\[\033[1;37m\]" # White
local RESET="\[\033[0m\]" # Color reset
local BOLD="\[\033[;1m\]" # Bold
# Base prompt
CNAME=$(hostname -s)
PS1="$CYAN$CNAME:$YELLOW\w$CYAN "
if [ $EXIT != 0 ]; then
PS1+="${LRED}\\\$ $RESET"
else
PS1+="${LGREEN}\\\$ $RESET"
fi
local dirty
local branch
# Look for Git status
if git status &>/dev/null; then
if git status -uno -s | grep -q . ; then
dirty=1
fi
branch=$(git branch --color=never | sed -ne 's/* //p')
# Look for Subversion status
else
svn_info=$( (svn info | grep ^URL) 2>/dev/null )
if [[ ! -z "$svn_info" ]] ; then
branch_pattern="^URL: .*/(branch(es)?|scratch|tags)/([^/]+)"
trunk_pattern="^URL: .*/trunk(/.*)?$"
if [[ $svn_info =~ $branch_pattern ]]; then
branch=${BASH_REMATCH[3]}
elif [[ $svn_info =~ $trunk_pattern ]]; then
branch='trunk'
else
branch='SVN'
fi
dirty=$(svn status -q)
fi
fi
if [[ ! -z "$branch" ]]; then
local status_color
if [[ -z "$dirty" ]] ; then
status_color=$GREEN
else
status_color=$LRED
fi
PS1="$BOLD$status_color$branch$RESET $PS1"
fi
PS1="$CYAN[$LGREY\\D{%T}$CYAN]$RESET $PS1"
# Set the window name while we're at it.
DIR=${PWD/$HOME/\~}
printf '\033k%s:%s\033\\' $CNAME $DIR
}
if [[ -z "$PROMPT_COMMAND" ]]; then
PROMPT_COMMAND=__prompt
else
PROMPT_COMMAND="$PROMPT_COMMAND ; __prompt"
fi
__prompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment