X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;ds=sidebyside;f=bash%2F.bashrc;h=249787cff3aff307933010d97dcb383294d03c4d;hb=c9b3fc98092322d98d4aac2ac9ada0bad743d6a7;hp=dbf95c3bcf3f5473cbf00cca2aaefad8e3f3e989;hpb=f33ff9fe6bef1a6894ac5332c7f95c0a44f45761;p=max%2Fdotfiles.git diff --git a/bash/.bashrc b/bash/.bashrc index dbf95c3..249787c 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 @@ -64,6 +68,12 @@ 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() { @@ -71,20 +81,6 @@ function __prompt_command() EXIT="$?" PS1="" - if [ $EXIT -eq 0 ]; then PS1+="\[$GREEN\][\!]\[$RESET\] "; else PS1+="\[$RED\][\!]\[$RESET\] "; fi - - # if logged in via ssh shows the ip of the client - if [ -n "$SSH_CLIENT" ]; then - IP=${SSH_CLIENT%% *} - PS1+="\[$YELLOW\]("$IP")\[$RESET\]"; - fi - - # debian chroot stuff (take it or leave it) - 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 @@ -92,7 +88,7 @@ function __prompt_command() 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 + local Color_On=$CYAN else local Color_On=$RED fi @@ -105,10 +101,40 @@ function __prompt_command() fi # add the result to prompt - PS1+="\[$Color_On\][$branch]\[$RESET\] " + 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 + if [ -n "$SSH_CLIENT" ]; then + IP=${SSH_CLIENT%% *} + PS1+="\[$YELLOW\]("$IP")\[$RESET\]"; + fi + + # debian chroot stuff (take it or leave it) + PS1+="${debian_chroot:+($debian_chroot)}" + + # basic information (user@host:path) + PS1+="\[$RED$BOLD\]\u\[$RESET\]@\[$RED$BOLD\]\h\[$RESET\]:\[$BLUE\]\w\[$RESET\] " + + # 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=~/.gnupg/S.gpg-agent.ssh +fi + +export GPG_TTY=($tty) +gpg-connect-agent updatestartuptty /bye > /dev/null