terminator/debian/terminator.prerm
bryce 961e5368f2 * No-change upload for wily
* No-change upload for vivid
* copyright: Change upstream maintainer to Stephen Boddy
* New upstream release of 0.98.  Remaining changes:
  + Add missing dependency on psutil to check for IBus running.
  + Workaround debian compression of font files.
  + Add terminator.wrapper to fix blurry/incorrect icons in task switchers.
2015-09-21 23:20:18 -07:00

13 lines
392 B
Bash

#!/bin/sh
set -e
if [ "$1" = remove ]; then
update-alternatives --remove terminator /usr/bin/terminator || true
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
update-alternatives --remove terminator.wrapper /usr/bin/terminator.wrapper || true
update-alternatives --remove x-terminal-emulator /usr/bin/terminator.wrapper
fi
#DEBHELPER#