1 # ~/.bashrc: executed by bash(1) for non-login shells.
2 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
5 # If not running interactively, don't do anything
11 # don't put duplicate lines or lines starting with space in the history.
12 # See bash(1) for more options
13 HISTCONTROL=ignoreboth
15 # append to the history file, don't overwrite it
18 # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
22 # check the window size after each command and, if necessary,
23 # update the values of LINES and COLUMNS.
26 # make less more friendly for non-text input files, see lesspipe(1)
27 [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
29 # set variable identifying the chroot you work in (used in the prompt below)
30 if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
31 debian_chroot=$(cat /etc/debian_chroot)
35 # colored GCC warnings and errors
36 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
39 if [ -f ~/.bash_aliases ]; then
43 eval `dircolors ~/.dir_colors`
45 # enable programmable completion features (you don't need to enable
46 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
47 # sources /etc/bash.bashrc).
48 if ! shopt -oq posix; then
49 if [ -f /usr/share/bash-completion/bash_completion ]; then
50 . /usr/share/bash-completion/bash_completion
51 elif [ -f /etc/bash_completion ]; then
52 . /etc/bash_completion
59 YELLOW=$(tput setaf 3)
61 MAGENTA=$(tput setaf 5)
67 # set up command prompt
68 function __prompt_command()
70 # capture the exit status of the last command
74 if [ $EXIT -eq 0 ]; then PS1+="\[$GREEN\][\!]\[$RESET\] "; else PS1+="\[$RED\][\!]\[$RESET\] "; fi
76 # if logged in via ssh shows the ip of the client
77 if [ -n "$SSH_CLIENT" ]; then
79 PS1+="\[$YELLOW\]("$IP")\[$RESET\]";
82 # debian chroot stuff (take it or leave it)
83 PS1+="${debian_chroot:+($debian_chroot)}"
85 # basic information (user@host:path)
86 PS1+="\[$RED$BOLD\]\u\[$RESET\]@\[$RED$BOLD\]\h\[$RESET\]:\[$BLUE\]\w\[$RESET\] "
88 # check if inside git repo
89 local git_status="`git status -unormal 2>&1`"
90 if ! [[ "$git_status" =~ Not\ a\ git\ repo ]]; then
91 # parse the porcelain output of git status
92 if [[ "$git_status" =~ nothing\ to\ commit ]]; then
94 elif [[ "$git_status" =~ nothing\ added\ to\ commit\ but\ untracked\ files\ present ]]; then
100 if [[ "$git_status" =~ On\ branch\ ([^[:space:]]+) ]]; then
101 branch=${BASH_REMATCH[1]}
103 # Detached HEAD. (branch=HEAD is a faster alternative.)
104 branch="(`git describe --all --contains --abbrev=4 HEAD 2> /dev/null || echo HEAD`)"
107 # add the result to prompt
108 PS1+="\[$Color_On\][$branch]\[$RESET\] "
111 # prompt $ or # for root
114 PROMPT_COMMAND=__prompt_command
117 if [ -f "${HOME}/.gpg-agent-info" ]; then
118 . "${HOME}/.gpg-agent-info"
119 export GPG_AGENT_INFO
125 export GPG_TTY=$(tty)