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.
This commit is contained in:
parent
0477ab4875
commit
8a631ad0bc
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -1,6 +1,9 @@
|
|||||||
lubuntu-artwork (1.4) UNRELEASED; urgency=medium
|
lubuntu-artwork (1.4) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Rename sddm-theme-lubuntu-chooser to sddm-theme-lubuntu.
|
* Rename sddm-theme-lubuntu-chooser to sddm-theme-lubuntu.
|
||||||
|
* 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.
|
||||||
|
|
||||||
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 07 Jul 2018 16:09:18 -0500
|
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 07 Jul 2018 16:09:18 -0500
|
||||||
|
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -48,7 +48,7 @@ Package: sddm-theme-lubuntu
|
|||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}
|
Depends: ${misc:Depends}
|
||||||
Recommends: sddm
|
Recommends: sddm
|
||||||
Conflicts: sddm-theme-lubuntu-chooser (<< 1.4)
|
Conflicts: sddm-theme-lubuntu-chooser (<< 1.4), sddm-theme-breeze
|
||||||
Replaces: sddm-theme-lubuntu-chooser (<< 1.4)
|
Replaces: sddm-theme-lubuntu-chooser (<< 1.4)
|
||||||
Provides: sddm-theme
|
Provides: sddm-theme
|
||||||
Description: 'Lubuntu chooser' theme for SDDM X11 display manager
|
Description: 'Lubuntu chooser' theme for SDDM X11 display manager
|
||||||
|
12
debian/sddm-theme-lubuntu.postinst
vendored
Normal file
12
debian/sddm-theme-lubuntu.postinst
vendored
Normal file
@ -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#
|
11
debian/sddm-theme-lubuntu.prerm
vendored
Normal file
11
debian/sddm-theme-lubuntu.prerm
vendored
Normal file
@ -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…
x
Reference in New Issue
Block a user