blob: 39deaf143aa39e0757c9d663adaac282c33490ca (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
|
# note: this file needs to be sourced in /etc/bash.bashrc
. ~/.config/shell/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
if [[ $- != *i* ]] ; then
return
fi
shopt -s checkwinsize
shopt -s no_empty_cmd_completion
shopt -s histappend
case ${TERM} in
[aEkx]term*|rxvt*|gnome*|konsole*|interix)
PS1='\[\033]0;\u@\h:\w\007\]'
;;
screen*)
PS1='\[\033k\u@\h:\w\033\\\]'
;;
*)
unset PS1
;;
esac
use_color=false
if type -P dircolors >/dev/null ; then
LS_COLORS=
if [[ -f ~/.dir_colors ]] ; then
used_default_dircolors="no"
eval "$(dircolors -b ~/.dir_colors)"
elif [[ -f /etc/DIR_COLORS ]] ; then
used_default_dircolors="maybe"
eval "$(dircolors -b /etc/DIR_COLORS)"
else
used_default_dircolors="yes"
eval "$(dircolors -b)"
fi
if [[ -n ${LS_COLORS:+set} ]] ; then
use_color=true
fi
unset used_default_dircolors
else
case ${TERM} in
[aEkx]term*|rxvt*|gnome*|konsole*|screen|cons25|*color) use_color=true;;
esac
fi
if ${use_color} ; then
if [[ ${EUID} == 0 ]] ; then
PS1+='\[\033[01;31m\]\h\[\033[01;34m\] \w \$_\[\033[00m\]$(__git_ps1) '
else
PS1+='\[\033[01;34m\]\w \$_\[\033[00m\]$(__git_ps1) '
fi
alias ls='ls --color=auto'
alias grep='grep --colour=auto'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
else
if [[ ${EUID} == 0 ]] ; then
PS1+='\u@\h \W \$ '
else
PS1+='\u@\h \w \$ '
fi
fi
for sh in /etc/bash/bashrc.d/* ; do
[[ -r ${sh} ]] && source "${sh}"
done
unset use_color sh
|