2018-07-07 16:16:21 -05:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ]; then
|
|
|
|
update-alternatives --install \
|
2018-07-27 08:21:08 -05:00
|
|
|
/usr/share/sddm/themes/ubuntu-theme \
|
|
|
|
sddm-ubuntu-theme \
|
|
|
|
/usr/share/sddm/themes/lubuntu 50
|
2018-07-07 16:16:21 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Tag to allow some debhelper commands to inject relevant code
|
|
|
|
#DEBHELPER#
|