-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbashrc.local
61 lines (51 loc) · 1.51 KB
/
bashrc.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- mode: sh; -*-
#############################################################################
#
# Filename: bashrc.local
# Author: Chris Charles
#
# ---------------------------------------------------------------------------
#
# Local settings for Bash.
#
#############################################################################
# Use gnuclient.
export EDITOR=emacsclient
export BROWSER=chromium
export TERMINAL=konsole
# Function to read the current Subversion revision.
#
# Inspired by the __git_ps1 function provided by Git's bash completion.
__svn_ps1() {
if $(svn info >/dev/null 2>&1); then
local revision=$(svn info | grep Revision | awk '{print $2}')
echo -n "svn:$revision"
local status=$(svn status)
if [ "$status" != "" ]; then
echo "*";
fi
fi
}
# Update the prompts.
awesome_prompt() {
local EXIT_STATUS="$?"
if type -t __git_ps1 | grep -q "function"; then
local GIT_BRANCH=$(__git_ps1 "git:%s")
fi
local SVN_STATUS=$(__svn_ps1)
PS1="\[\e[94m\]\u\[\e[0m\] \[\e[92m\]\h \[\e[93m\]\w\[\e[90m\]"
PS2="\[\e[90m\]... \[\e[0m\]"
if [ "$GIT_BRANCH" != '' ]; then
PS1="$PS1 \[\e[96m\]$GIT_BRANCH"
fi
if [ "$SVN_STATUS" != '' ]; then
PS1="$PS1 \[\e[96m\]$SVN_STATUS"
fi
if [ "$EXIT_STATUS" -eq "0" ]; then
PS1="$PS1 \[\e[90m\]"
else
PS1="$PS1 \[\e[91m\]";
fi
PS1="$PS1($EXIT_STATUS)\[\e[0m\]\n\[\e[90m\]> \[\e[0m\]"
}
export PROMPT_COMMAND=awesome_prompt