~ubuntu-branches/debian/wheezy/byobu/wheezy

« back to all changes in this revision

Viewing changes to etc/profile.d/Z97-byobu.sh

  • Committer: Package Import Robot
  • Author(s): Alexander Chernyakhovsky
  • Date: 2012-01-11 19:37:34 UTC
  • mfrom: (0.5.3) (0.1.162 precise)
  • Revision ID: package-import@ubuntu.com-20120111193734-89083z97py39gj05
Tags: 5.2-1
* Syncing from Ubuntu. Remaining changes:
  - Switch to dh short syntax
  - Added a substvar ${perl:Depends} dependency into debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#    Z97-byobu.sh - allow any user to opt into auto-launching byobu
 
3
#    Copyright (C) 2011 Canonical Ltd.
 
4
#
 
5
#    Authors: Dustin Kirkland <kirkland@ubuntu.com>
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU General Public License as published by
 
9
#    the Free Software Foundation, version 3 of the License.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
# Allow any user to opt into auto-launching byobu by setting LC_BYOBU=1
 
20
# Apologies for borrowing the LC_BYOBU namespace, but:
 
21
#  a) it's reasonable to assume that no one else is using LC_BYOBU
 
22
#  b) LC_* is sent and receieved by most /etc/ssh/ssh*_config
 
23
if [ "$LC_BYOBU" = "1" ] && [ -r "/usr/bin/byobu-launch" ]; then
 
24
        . /usr/bin/byobu-launch
 
25
fi
 
26
 
 
27
# vi: syntax=sh ts=4 noexpandtab