Since Ubuntu's sddm is hardcoded to use the Breeze theme, add postinst and prerm scripts which install the Lubuntu SDDM theme as the Breeze theme. Conflict against sddm-theme-breeze accordingly.
parent
0477ab4875
commit
8a631ad0bc
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ]; then
|
||||||
|
update-alternatives --install \
|
||||||
|
/usr/share/sddm/themes/breeze \
|
||||||
|
breeze \
|
||||||
|
/usr/share/sddm/themes/lubuntu 20
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Tag to allow some debhelper commands to inject relevant code
|
||||||
|
#DEBHELPER#
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
||||||
|
update-alternatives --remove \
|
||||||
|
breeze \
|
||||||
|
/usr/share/sddm/themes/lubuntu
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Tag to allow some debhelper commands to inject relevant code
|
||||||
|
#DEBHELPER#
|
Loading…
Reference in new issue