File: openbox.prerm

package info (click to toggle)
openbox 3.4.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 5,472 kB
  • ctags: 3,123
  • sloc: ansic: 30,651; sh: 9,682; xml: 1,345; makefile: 578; python: 572; sed: 16
file content (13 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
    remove)
	update-alternatives --remove x-window-manager /usr/bin/openbox
	update-alternatives --remove x-session-manager /usr/bin/openbox-session
	rm -f /var/lib/openbox/debian-menu.xml
	;;
esac

#DEBHELPER#