mutter/debian/mutter.prerm

13 lines
156 B
Plaintext
Raw Permalink Normal View History

2024-08-13 17:22:25 +02:00
#!/bin/sh
set -e
action="$1"
if [ "$action" = remove ]; then
update-alternatives --remove x-window-manager \
/usr/bin/mutter
fi
#DEBHELPER#