Fix bold text issue

The default text style was not being set back to normal so terminal output was rendering bold, e.g. for an ls command
pull/1194/head
Josh Marshall 2018-05-18 11:52:35 +10:00 committed by GitHub
parent af5c215942
commit bca7051a62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
function prompt_command() { function prompt_command() {
PS1="${green}\u@\h $(clock_prompt) ${reset_color}${white}\w${reset_color}$(scm_prompt_info)${blue}${bold_blue} ${reset_color} "; PS1="${green}\u@\h $(clock_prompt) ${reset_color}${white}\w${reset_color}$(scm_prompt_info)${blue}${bold_blue} ${reset_color} ${normal}";
} }
THEME_CLOCK_COLOR=${THEME_CLOCK_COLOR:-"$blue"} THEME_CLOCK_COLOR=${THEME_CLOCK_COLOR:-"$blue"}