From 0a5541093c6a6820143b85dbb3a233d94cc8fb38 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Sun, 12 Aug 2018 11:32:34 -0500 Subject: [PATCH] * usr/share/byobu/profiles/bashrc: - fix missing bash 256 ps1 colors --- debian/changelog | 2 ++ usr/share/byobu/profiles/bashrc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index df1c840a..f8a6a601 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 27 May 2018 18:07:11 -0500 diff --git a/usr/share/byobu/profiles/bashrc b/usr/share/byobu/profiles/bashrc index d2caafbf..6e3ebbfc 100644 --- a/usr/share/byobu/profiles/bashrc +++ b/usr/share/byobu/profiles/bashrc @@ -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