mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
The file "clean", which contains "WindowMaker/Defaults/WMRootMenu"
can be removed, because this file was included to be cleaned in
the commit 01907f9983
The Application/* items are moved to the root menu, removing the
"Applications" submenu. The files from /etc/X11/WindowMaker moved
to /etc/GNUstep/Defaults
39 lines
703 B
Bash
39 lines
703 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
inst="/etc/menu-methods/wmaker /etc/menu-methods/wmappearance"
|
|
|
|
case "$1" in
|
|
remove)
|
|
for file in $inst ; do
|
|
if [ -f $file ] ; then
|
|
chmod a-x $file
|
|
fi
|
|
done
|
|
;;
|
|
purge)
|
|
if [ -x /usr/bin/update-menus ] ; then
|
|
update-menus
|
|
rm -f /etc/GNUstep/Defaults/menu.hook /etc/GNUstep/Defaults/appearance.menu
|
|
fi
|
|
;;
|
|
upgrade|abort-install|disappear)
|
|
# nothing to do
|
|
;;
|
|
failed-upgrade)
|
|
# this is an upgrade, and it has failed. What can fail?
|
|
exit 1
|
|
;;
|
|
abort-upgrade)
|
|
# preinst failed, leave things like they were
|
|
;;
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|