mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
23 lines
380 B
Bash
23 lines
380 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
failed-upgrade|abort-upgrade|deconfigure)
|
|
update-alternatives --remove x-window-manager /usr/bin/wmaker
|
|
;;
|
|
remove)
|
|
update-alternatives --remove x-window-manager /usr/bin/wmaker
|
|
;;
|
|
upgrade)
|
|
;;
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|