mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
fixed shell script license statements to be GPL-3, instead of GPL-2
This commit is contained in:
parent
48ef3f05d9
commit
fb098e86c7
5 changed files with 22 additions and 31 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/bin/sh -e
|
||||||
#
|
#
|
||||||
# screen-launcher
|
# screen-launcher
|
||||||
# Copyright (C) 2008 Canonical Ltd.
|
# Copyright (C) 2008 Canonical Ltd.
|
||||||
|
@ -6,19 +6,17 @@
|
||||||
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
# Dustin Kirkland <kirkland@canonical.com>
|
# Dustin Kirkland <kirkland@canonical.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License.
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
# Sanitize the local user's setup
|
# Sanitize the local user's setup
|
||||||
for i in ".screenrc-keybindings" ".screenrc-windows"; do
|
for i in ".screenrc-keybindings" ".screenrc-windows"; do
|
||||||
|
@ -27,6 +25,7 @@ for i in ".screenrc-keybindings" ".screenrc-windows"; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Launch screen
|
||||||
if [ "$TERM" != "screen" ]; then
|
if [ "$TERM" != "screen" ]; then
|
||||||
screen -xRR
|
screen -xRR
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -6,19 +6,17 @@
|
||||||
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
# Dustin Kirkland <kirkland@canonical.com>
|
# Dustin Kirkland <kirkland@canonical.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License.
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
|
|
||||||
install_screen_launcher() {
|
install_screen_launcher() {
|
||||||
|
|
|
@ -6,19 +6,17 @@
|
||||||
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
# Dustin Kirkland <kirkland@canonical.com>
|
# Dustin Kirkland <kirkland@canonical.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License.
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
|
|
||||||
remove_screen_launcher() {
|
remove_screen_launcher() {
|
||||||
|
|
|
@ -5,19 +5,17 @@
|
||||||
#
|
#
|
||||||
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
# Authors: Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License.
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
import sys, os, os.path, time, string, commands, gettext
|
import sys, os, os.path, time, string, commands, gettext
|
||||||
from ConfigParser import SafeConfigParser
|
from ConfigParser import SafeConfigParser
|
||||||
|
|
|
@ -6,19 +6,17 @@
|
||||||
# Authors: Dustin Kirklan <dustin.kirkland@ubuntu.com>
|
# Authors: Dustin Kirklan <dustin.kirkland@ubuntu.com>
|
||||||
# Nick Barcet <nick.barcet@ubuntu.com>
|
# Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License.
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
|
|
||||||
# To generate localization information, run:
|
# To generate localization information, run:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue