blob: b0f51ecaec17b8d9c64ae3cc2ab0964879d90d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
# Debian twm package post-installation script
# Copyright 1998-2001, 2004 Branden Robinson.
# Licensed under the GNU General Public License, version 2. See the file
# /usr/share/common-licenses/GPL or <https://www.gnu.org/copyleft/gpl.txt>.
# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava.
set -e
#DEBHELPER#
update-alternatives --install /usr/bin/x-window-manager x-window-manager \
/usr/bin/twm 40 --slave /usr/share/man/man1/x-window-manager.1.gz \
x-window-manager.1.gz /usr/share/man/man1/twm.1.gz
exit 0
# vim:set ai et sts=2 sw=2 tw=0:
|