Skip to content

Instantly share code, notes, and snippets.

@brunomiguel
brunomiguel / .bashrc
Last active September 19, 2018 06:46
Simple bash PS1 prompt
if [ "$color_prompt" = yes ]; then
PS1="\[\033[01;32m\]\u@\h\[\033[01;34m\]:\w\[\033[00m\]\n\\$: \[$(tput sgr0)\]"
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt