dotfiles/.ps1

12 lines
262 B
PowerShell
Raw Normal View History

2021-05-19 11:46:36 +02:00
#!/bin/bash
[[ -f /etc/bash_completion.d/git-prompt ]] && . /etc/bash_completion.d/git-prompt
NC='\[\033[00m\]'
GREEN='\[\033[01;32m\]'
YELLOW='\[\033[01;33m\]'
BLUE='\[\033[01;34m\]'
PS1="${GREEN}\u@\h${NC}:${BLUE}\w${YELLOW}\$(__git_ps1 ' [%s]')${NC} \$ "
2021-05-19 08:46:57 +02:00