-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bashrc
37 lines (34 loc) · 934 Bytes
/
.bashrc
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
# Aliases
#alias sudo='sudo ' # sudo: make aliases work
#alias nano='nano -wcAiLS' # nano: -w: don't wrap long lines
# -c: constantly show cursor position
# -A: enable smart home key
# -i: automatically indent new lines
# -L: don't add newlines to the ends of files
# -S: scroll by line instead of half-screen
alias apk='apk --progress' # apk: show progress bar
# Shell Options
shopt -s checkwinsize
# Color Definitions for .bashrc
COL_YEL="\[\e[1;33m\]"
COL_GRA="\[\e[0;37m\]"
COL_WHI="\[\e[1;37m\]"
COL_GRE="\[\e[1;32m\]"
COL_RED="\[\e[1;31m\]"
# Bash Prompt
if test "$UID" -eq 0 ; then
_COL_USER=$COL_RED
_p=" #"
else
_COL_USER=$COL_GRE
_p=">"
fi
COLORIZED_PROMPT="${_COL_USER}\u${COL_WHI}@${COL_YEL}\h${COL_WHI}:\w${_p} \[\e[m\]"
case $TERM in
*term | rxvt | screen )
PS1="${COLORIZED_PROMPT}\[\e]0;\u@\h:\w\007\]" ;;
linux )
PS1="${COLORIZED_PROMPT}" ;;
* )
PS1="\u@\h:\w${_p} " ;;
esac