Files
bash-it/themes/dulcie/dulcie.theme.bash
2015-02-27 14:06:15 +02:00

11 lines
232 B
Bash

#!/usr/bin/env bash
# Simplistic one-liner theme to display source control management info beside
# the ordinary bash prompt.
prompt() {
PS1="${reset_color}[\u@\h$(scm_prompt_info)${reset_color} \W]\$ "
}
PROMPT_COMMAND=prompt