DeltaLima-color-schemes/PS1.sh

7 lines
348 B
Bash
Raw Normal View History

2023-07-31 23:46:22 +02:00
#!/bin/sh
2023-08-01 10:33:27 +02:00
git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
2023-08-01 10:54:29 +02:00
export PS1="\[$(tput sgr0)\]\[\033[38;5;6m\][\e[1m\[\033[01;32m\]\u\[\033[38;5;39m\]@\[\033[01;32m\]$HOSTNAME\[$(tput sgr0)\]\e[1m\[\033[38;5;11m\]:\[\033[01;34m\]\w\[$(tput sgr0)\]\[\033[38;5;6m\]]\[\033[38;5;11m\]\$(git_branch)🐧 \[$(tput sgr0)\]"