File: rxvt-unicode.postinst

package info (click to toggle)
rxvt-unicode 9.31-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,720 kB
  • sloc: ansic: 46,693; cpp: 17,560; perl: 3,532; makefile: 407; sh: 381
file content (14 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

if [ "$1" = configure ]; then

    update-alternatives \
        --install /usr/bin/x-terminal-emulator \
            x-terminal-emulator /usr/bin/urxvt 20 \
        --slave /usr/share/man/man1/x-terminal-emulator.1.gz \
            x-terminal-emulator.1.gz /usr/share/man/man1/urxvt.1.gz

fi

#DEBHELPER#