Using powerline now

This commit is contained in:
Daniel Demus 2025-01-02 20:06:13 +01:00
parent ea1ae29b95
commit 65c8d5267a

View File

@ -1,17 +0,0 @@
if [ "$PS1" ]; then
if [ "$BASH" ]; then
if [ "`id -u`" -eq 0 ]; then
PS1='\[\033[01;31m\]\u\[\033[34m\]@\h\[\033[00m\] \[\033[01;35m\]\W\[\033[00m\] # '
else
PS1='\[\033[01;32m\]\u\[\033[34m\]@\h\[\033[00m\] \[\033[01;35m\]\W\[\033[00m\] \\$ '
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi