11 lines
159 B
Bash
11 lines
159 B
Bash
#!/bin/sh
|
|
|
|
pycentral pkgremove terminator
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
|
|
fi
|
|
|