diff --git a/debian/changelog b/debian/changelog index f539a65b..375ec5f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ byobu (2.54) unreleased; urgency=low - * UNRELEASED + * usr/bin/byobu-launcher: profile.d is sourced, not executed -- Dustin Kirkland Fri, 05 Feb 2010 01:17:41 -0800 diff --git a/usr/bin/byobu-launcher b/usr/bin/byobu-launcher index de4589ab..2da85cab 100755 --- a/usr/bin/byobu-launcher +++ b/usr/bin/byobu-launcher @@ -17,8 +17,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -PKG="byobu" - -[ -r "$HOME/.$PKG/disable-autolaunch" ] && exit 0 - -exec /usr/bin/$PKG +if [ ! -r "$HOME/.byobu/disable-autolaunch" ]; then + exec /usr/bin/byobu +fi