wok-next view bash/stuff/etc/bashrc @ rev 20786
gnupg: remove spaces (aka: should build now, since newest libgpg-error available now, which has the GPGRT_LOGLVL_INFO
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sat Jun 09 07:09:31 2018 +0000 (2018-06-09) |
parents | 67aa716192dd |
children |
line source
1 # /etc/bashrc: Bash system wide config file.
2 #
4 if [ "`id -u`" -eq 0 ]; then
5 # Simple prompt
6 #PS1='\u@\h:\w # '
8 # Colored prompt
9 PS1="\[\e[31;1m\]\u@\[\e[32;1m\]\h:\w\[\e[0m\] # "
10 else
11 # Simple prompt
12 #PS1='\u@\h:\w $ '
14 # Colored prompt
15 PS1="\[\e[34;1m\]\u@\[\e[32;1m\]\h:\w\[\e[0m\] $ "
16 fi
18 export PS1