9:d83f081c6a41
Anton Shestakov <engored@ya.ru>, 2012-06-01
Tell virtualenv to not bother with prompt modifications.

next change 10:233c3d76cc7d
previous change 7:d3613e95e03f

.bash_prompt

Permissions: -rw-r--r--

Other formats: Feeds:
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
#!/bin/bash
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
function prompt_command {
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local RETURN_CODE="$?"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local RESET="\[\e[0m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local BOLD="\[\e[1m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local R="\[\e[1;31m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local G="\[\e[1;32m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local Y="\[\e[1;33m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local B="\[\e[1;34m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local P="\[\e[1;35m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
local C="\[\e[1;36m\]"
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local PROMPT_TEMPLATE="${P}{branch|quiet}☿{rev}{$R{update}}{$G+{rev|merge}}$R{status|modified}${RESET}"
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
local TIME="${G}\t${RESET}"
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
if [[ ${EUID} == 0 ]] ; then
3
3:cb307dcaf2ef More quotes.
Anton Shestakov <engored@ya.ru>
previous changes: 2:9c916e36d032
line | diff
local PROMPT_COLOR="$R"
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
# getting hg and git info is disabled for root
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
local HG_INFO=" ${P}-${RESET}"
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_INFO=" ${G}-${RESET}"
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
else
3
3:cb307dcaf2ef More quotes.
Anton Shestakov <engored@ya.ru>
previous changes: 2:9c916e36d032
line | diff
local PROMPT_COLOR="$G"
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
# testing if current dir is a part of hg repo
3
3:cb307dcaf2ef More quotes.
Anton Shestakov <engored@ya.ru>
previous changes: 2:9c916e36d032
line | diff
local TEST_DIR="$PWD"
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
while true ; do
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
[[ -d "$TEST_DIR/.hg" ]] && local HG_TRACKED=1 && break
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
[[ -d "$TEST_DIR/.git" ]] && local GIT_TRACKED=1 && break
3
3:cb307dcaf2ef More quotes.
Anton Shestakov <engored@ya.ru>
previous changes: 2:9c916e36d032
line | diff
[[ "$TEST_DIR" == '/' ]] && break
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
TEST_DIR=$(dirname "$TEST_DIR")
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
done
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
if [[ "$HG_TRACKED" ]] ; then
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
local HG_INFO=" $(hg prompt $PROMPT_TEMPLATE)"
2
2:9c916e36d032 Renamed .bashrc to .bash_prompt. Disabled any hg interaction for root.
Anton Shestakov <engored@ya.ru>
previous changes: 1:ef4ec926e9a4
line | diff
fi
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
if [[ "$GIT_TRACKED" ]] ; then
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_STATUS=$(git status 2>/dev/null)
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
if [[ $(echo ${GIT_STATUS} | grep "# Your branch is behind") ]]; then
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_UPDATE="$R^"
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
fi
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
if [[ $(echo ${GIT_STATUS} | grep "# Changes to be committed:") ]]; then
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_STAGED="$R!"
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
fi
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
if [[ $(echo ${GIT_STATUS} | grep "# Changes not staged for commit:") ]]; then
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_UNSTAGED="$P?"
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
fi
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
local GIT_INFO=" ${G}±${GIT_STAGED}${GIT_UNSTAGED}${GIT_UPDATE}${RESET}"
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
fi
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
fi
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
if [[ "$VIRTUAL_ENV" ]] ; then
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
local VENV="${G}+"$(basename "$VIRTUAL_ENV")"${RESET}"
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
fi
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
if [[ "$RETURN_CODE" != 0 ]] ; then
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
local RETCODE="${R}${RETURN_CODE}${RESET} "
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
fi
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
PS1="\
5
5:7b2ad8123a53 virtualenv support.
Anton Shestakov <engored@ya.ru>
previous changes: 3:cb307dcaf2ef
line | diff
${BOLD}[${TIME} \u@\h \
7
7:d3613e95e03f Git info. Git and Mercurial symbols (credit goes to Steve Losh and his extravagant zsh prompt).
Anton Shestakov <engored@ya.ru>
previous changes: 5:7b2ad8123a53
line | diff
${RETCODE}\W${VENV}${HG_INFO}${GIT_INFO}${BOLD}]\
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
${PROMPT_COLOR}\\\$${RESET} "
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
}
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
9
9:d83f081c6a41 Tell virtualenv to not bother with prompt modifications.
Anton Shestakov <engored@ya.ru>
previous changes: 7:d3613e95e03f
line | diff
export VIRTUAL_ENV_DISABLE_PROMPT="1"
0
0:226664158c55 Added .bashrc with hg prompt example.
Anton Shestakov <engored@ya.ru>
previous changes:
line | diff
export PROMPT_COMMAND=prompt_command