mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/lib/byobu/.shutil: LP: #854262
- fix regressed monochrome support
This commit is contained in:
parent
b5cdd2eef8
commit
ddb8d2f90d
2 changed files with 8 additions and 1 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -4,6 +4,10 @@ byobu (4.34) unreleased; urgency=low
|
||||||
* usr/lib/byobu/.constants: LP: #846576
|
* usr/lib/byobu/.constants: LP: #846576
|
||||||
- silence errors
|
- silence errors
|
||||||
|
|
||||||
|
[ Dustin Kirkland ]
|
||||||
|
* usr/lib/byobu/.shutil: LP: #854262
|
||||||
|
- fix regressed monochrome support
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 08 Sep 2011 14:26:43 -0700
|
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 08 Sep 2011 14:26:43 -0700
|
||||||
|
|
||||||
byobu (4.33-0ubuntu1) oneiric; urgency=low
|
byobu (4.33-0ubuntu1) oneiric; urgency=low
|
||||||
|
|
|
@ -41,7 +41,10 @@ color_screen() {
|
||||||
attr=$1 ; fg=$2 ; bg=$3
|
attr=$1 ; fg=$2 ; bg=$3
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
[ "$MONOCHROME" = "1" ] && (fg= ; bg= )
|
if [ "$MONOCHROME" = "1" ]; then
|
||||||
|
fg=
|
||||||
|
bg=
|
||||||
|
fi
|
||||||
printf "$ESC{=$attr $fg$bg}"
|
printf "$ESC{=$attr $fg$bg}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue