From the website: Byobu is a GPLv3 open source text-based window manager and terminal multiplexer. It was originally designed to provide elegant enhancements to the otherwise functional, plain, practical GNU Screen, for the Ubuntu server distribution. Byobu now includes an enhanced profiles, convenient keybindings, configuration utilities, and toggle-able system status notifications for both the GNU Screen window manager and the more modern Tmux terminal multiplexer, and works on most Linux, BSD, and Mac distributions. Adapted from the old packages feed: https://git.openwrt.org/?p=openwrt/svn-archive/packages.git;a=tree;f=utils/byobu Signed-off-by: Jeffery To <jeffery.to@gmail.com>
21 lines
623 B
Diff
21 lines
623 B
Diff
--- a/usr/lib/byobu/hostname
|
|
+++ b/usr/lib/byobu/hostname
|
|
@@ -20,12 +20,16 @@
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
__hostname_detail() {
|
|
- hostname -f
|
|
+ hostname -f 2>/dev/null
|
|
}
|
|
|
|
__hostname() {
|
|
local h=
|
|
- h=$(hostname -s 2>/dev/null || hostname)
|
|
+ if eval $BYOBU_TEST hostname >/dev/null 2>&1; then
|
|
+ h=$(hostname -s 2>/dev/null || hostname)
|
|
+ elif [ -r /proc/sys/kernel/hostname ]; then
|
|
+ read h < /proc/sys/kernel/hostname
|
|
+ fi
|
|
if metadata_available; then
|
|
local cache="$BYOBU_RUN_DIR/cache.$BYOBU_BACKEND/hostname"
|
|
# Background a retrieval of our public hostname
|