Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 52.14.140.108
Current Path : /bin/ |
| Current File : //bin/byobu-disable |
#!/bin/sh -e
#
# byobu-disable: disable byobu at login
# Copyright (C) 2010 Canonical Ltd.
#
# Authors: Dustin Kirkland <kirkland@byobu.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
PKG="byobu"
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
byobu-launcher-uninstall
echo
echo "The Byobu window manager will no longer be launched automatically at login."
echo
echo "To re-enable this behavior later, just run:"
echo " byobu-enable"
echo
# If we're in a byobu session, let's exit that too
case "$STY" in
*byobu)
$BYOBU_BACKEND -X at 0 quit
;;
esac
# vi: syntax=sh ts=4 noexpandtab
|