You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
446 B
17 lines
446 B
. /etc/profile.d/bash_colors
|
|
|
|
if [ -f /etc/chroot ]; then
|
|
chroot=$(cat /etc/chroot)
|
|
fi
|
|
if [ $(id -u) -eq 0 ]; then
|
|
USER_COLOR_BASH=$red
|
|
USER_COLOR_ZSH=red
|
|
else
|
|
USER_COLOR_BASH=$blue
|
|
USER_COLOR_ZSH=blue
|
|
fi
|
|
|
|
SHELL=bash
|
|
export PS1_BASH="${USER_COLOR_BASH}\u${white}@\h ${blue}\w ${white}|${yellow}${SHELL}${white}| \\$ "
|
|
export PS1_ZSH="%B%F{$USER_COLOR_ZSH}%(?..%? )%f%b%B%F{$USER_COLOR_ZSH}%n%f%b@%m %B%F{blue}%40<..<%~%<< %f|%F{yellow}zsh%f| # "
|