* usr/share/byobu/profiles/bashrc:

- fix missing bash 256 ps1 colors
This commit is contained in:
Dustin Kirkland 2018-08-12 11:32:34 -05:00
commit 0a5541093c
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -50,6 +50,8 @@ byobu (5.127) unreleased; urgency=medium
- hardcode python3 as our interpreter
* usr/lib/byobu/include/shutil:
- check for lsb-release before using (not present on Debian)
* usr/share/byobu/profiles/bashrc:
- fix missing bash 256 ps1 colors
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 27 May 2018 18:07:11 -0500

View file

@ -54,7 +54,7 @@ if [ -n "$TMUX" ] || [ "${TERMCAP#*screen}" != "${TERMCAP}" ]; then
;;
*)
# Use Googley colors (blue / red / yellow / blue / green / red )
PS1="${debian_chroot:+($debian_chroot)}\[\e[31m\]\$(byobu_prompt_status)\[\e[00;32m\]\u\[\e[00m\]@\[\e[00;31m\]\h\[\e[00m\]:\[\e[00;36m\]\w\[\e[00m\]\$(byobu_prompt_symbol) "
PS1="${debian_chroot:+($debian_chroot)}\[\e[31m\]\$(byobu_prompt_status)\[\e[38;5;69m\]\u\[\e[38;5;214m\]@\[\e[38;5;167m\]\h\[\e[38;5;214m\]:\[\e[38;5;71m\]\w\[\e[38;5;214m\]\$(byobu_prompt_symbol)\e[00m\] "
;;
esac
fi