1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-06-01 20:09:13 +02:00

Added beatmaker files

This commit is contained in:
Eric-Teunis de Boone 2016-10-03 10:30:30 +02:00
parent 811a903869
commit 979739552d
13 changed files with 116 additions and 25 deletions

View file

@ -67,15 +67,13 @@ function __prompt_command() {
PS1+="@"
if color ; then
if [[ $HOSTNAME == 'fatserf' ]]; then
PS1+="${Pur}\H${RCol}"
elif [[ $HOSTNAME == 'lilo'* ]]; then
PS1+="${BWhi}\H${RCol}"
elif [[ $HOSTNAME == 'hg'* ]]; then
PS1+="${BRed}\H${RCol}"
else
PS1+="${Blu}${On_Whi}\H${RCol}"
fi
case "$HOSTNAME" in
'beatmaker') PS1+="${Gre}\H${RCol}";;
'fatserf') PS1+="${Pur}\H${RCol}";;
'lilo'*) PS1+="${BWhi}\H${RCol}";;
'hg'*) PS1+="${BRed}\H${RCol}";;
*) PS1+="${Blu}${On_Whi}\H${RCol}";;
esac
else
PS1+="\H"
fi