mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 05:53:22 -07:00
* usr/lib/byobu/session:
- Fix screen session regex
This commit is contained in:
parent
4f3be73ee9
commit
0c292308c8
2 changed files with 3 additions and 1 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -40,6 +40,8 @@ byobu (5.128) unreleased; urgency=medium
|
||||||
- Fix typo
|
- Fix typo
|
||||||
* usr/lib/byobu/services:
|
* usr/lib/byobu/services:
|
||||||
- Fix reading services from $BYOBU_CONFIG_DIR/statusrc
|
- Fix reading services from $BYOBU_CONFIG_DIR/statusrc
|
||||||
|
* usr/lib/byobu/session:
|
||||||
|
- Fix screen session regex
|
||||||
* usr/lib/byobu/updates_available:
|
* usr/lib/byobu/updates_available:
|
||||||
- Add support for opkg (OpenWrt)
|
- Add support for opkg (OpenWrt)
|
||||||
* usr/lib/byobu/whoami:
|
* usr/lib/byobu/whoami:
|
||||||
|
|
|
@ -34,7 +34,7 @@ __session() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
screen)
|
screen)
|
||||||
local count=$(screen -ls | grep "^ .*\)$" | wc -l)
|
local count=$(screen -ls | grep "^\s\+.*)$" | wc -l)
|
||||||
if [ $count -gt 1 ]; then
|
if [ $count -gt 1 ]; then
|
||||||
color u W k; printf "${ICON_SESSION}%S"; color --
|
color u W k; printf "${ICON_SESSION}%S"; color --
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue