12 lines
256 B
Bash
12 lines
256 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
|
update-alternatives --remove \
|
|
sddm-ubuntu-theme \
|
|
/usr/share/sddm/themes/lubuntu
|
|
fi
|
|
|
|
# Tag to allow some debhelper commands to inject relevant code
|
|
#DEBHELPER#
|