File: openbox.prerm

package info (click to toggle)
openbox 3.6.1-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,456 kB
  • sloc: ansic: 36,894; sh: 4,484; xml: 1,358; makefile: 607; python: 594; 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#