13 lines
156 B
Plaintext
13 lines
156 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
action="$1"
|
||
|
|
||
|
if [ "$action" = remove ]; then
|
||
|
update-alternatives --remove x-window-manager \
|
||
|
/usr/bin/mutter
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|