X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=bash%2F.bashrc;h=02d34c9c08cdd7b818b2a5422f46c3f5e6821eb9;hb=76ebf038d75f778b27e0e14d855bc295664656ce;hp=0b54b4b9fd82dac083fbd56cda4ce409740e8296;hpb=5375af6b6fef42d55b9198ea97d49bbad5df848a;p=max%2Fdotfiles.git diff --git a/bash/.bashrc b/bash/.bashrc index 0b54b4b..02d34c9 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -24,7 +24,11 @@ HISTFILESIZE=2000 shopt -s checkwinsize # make less more friendly for non-text input files, see lesspipe(1) -[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" +if [ -x /usr/bin/lesspipe ]; then + export LESSOPEN="|lesspipe %s" +elif [ -x /usr/bin/lesspipe.sh ]; then + export LESSOPEN="|lesspipe %s" +fi # set variable identifying the chroot you work in (used in the prompt below) if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then @@ -53,25 +57,23 @@ if ! shopt -oq posix; then fi fi -BASE03=$(tput setaf 8) -BASE02=$(tput setaf 0) -BASE01=$(tput setaf 10) -BASE00=$(tput setaf 11) -BASE0=$(tput setaf 12) -BASE1=$(tput setaf 14) -BASE2=$(tput setaf 7) -BASE3=$(tput setaf 15) -YELLOW=$(tput setaf 3) -ORANGE=$(tput setaf 9) +BLACK=$(tput setaf 0) RED=$(tput setaf 1) -MAGENTA=$(tput setaf 5) -VIOLET=$(tput setaf 13) +GREEN=$(tput setaf 2) +YELLOW=$(tput setaf 3) BLUE=$(tput setaf 4) +MAGENTA=$(tput setaf 5) CYAN=$(tput setaf 6) -GREEN=$(tput setaf 2) +GRAY=$(tput setaf 7) BOLD=$(tput bold) RESET=$(tput sgr0) +function __virtualenv_prompt() { + if [ -n "$VIRTUAL_ENV" ]; then + echo "(${VIRTUAL_ENV##*/}) " + fi +} + # set up command prompt function __prompt_command() { @@ -79,6 +81,30 @@ function __prompt_command() EXIT="$?" PS1="" + # check if inside git repo + local git_status="`git status -unormal 2>&1`" + if git rev-parse --git-dir > /dev/null 2>&1; then + git_status=$(git status --porcelain) + # parse the porcelain output of git status + if [[ ! $git_status = *[![:space:]]* ]]; then + local Color_On=$GREEN + elif [[ $git_status =~ ^\?\? ]]; then + local Color_On=$CYAN + else + local Color_On=$RED + fi + + branch=$(git symbolic-ref -q HEAD) + branch=${branch##refs/heads/} + branch=${branch:-HEAD} + + # add the result to prompt + PS1+="\n\[$Color_On\][$branch]\[$RESET\]\n" + fi + + + PS1+="$(__virtualenv_prompt)" + if [ $EXIT -eq 0 ]; then PS1+="\[$GREEN\][\!]\[$RESET\] "; else PS1+="\[$RED\][\!]\[$RESET\] "; fi # if logged in via ssh shows the ip of the client @@ -91,32 +117,22 @@ function __prompt_command() PS1+="${debian_chroot:+($debian_chroot)}" # basic information (user@host:path) - PS1+="\[$RED$BOLD\]\u\[$RESET\]@\[$RED$BOLD\]\h\[$RESET\]:\[$BLUE\]\w\[$RESET\] " - - # check if inside git repo - local git_status="`git status -unormal 2>&1`" - if ! [[ "$git_status" =~ Not\ a\ git\ repo ]]; then - # parse the porcelain output of git status - if [[ "$git_status" =~ nothing\ to\ commit ]]; then - local Color_On=$GREEN - elif [[ "$git_status" =~ nothing\ added\ to\ commit\ but\ untracked\ files\ present ]]; then - local Color_On=$PURPLE - else - local Color_On=$RED - fi - - if [[ "$git_status" =~ On\ branch\ ([^[:space:]]+) ]]; then - branch=${BASH_REMATCH[1]} - else - # Detached HEAD. (branch=HEAD is a faster alternative.) - branch="(`git describe --all --contains --abbrev=4 HEAD 2> /dev/null || echo HEAD`)" - fi - - # add the result to prompt - PS1+="\[$Color_On\][$branch]\[$RESET\] " - fi + PS1+="\[$RED$BOLD\]\u\[$RESET\]@\[$RED$BOLD\]\h\[$RESET\]:\[$BLUE\]\w\[$RESET\]\n" + # prompt $ or # for root PS1+="\$ " } PROMPT_COMMAND=__prompt_command + +if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then + gpg-connect-agent /bye >/dev/null 2>&1 +fi + +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + export SSH_AUTH_SOCK=${XDG_RUNTIME_DIR}/gnupg/S.gpg-agent.ssh +fi + +export GPG_TTY=($tty) +gpg-connect-agent updatestartuptty /bye > /dev/null