~ubuntu-branches/ubuntu/precise/xfwm4/precise-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

# remove alternatives links

if [ "$1" = "remove" ]; then
  update-alternatives --remove x-window-manager /usr/bin/xfwm4

  # Get xfce-mcs-manager to reinit
  pkill -USR1 -f xfce-mcs-manager || true
fi

#DEBHELPER#

exit 0