blob: ceef58a9168716137b5e2c8c89111568ce25cb5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
_sddm_src="/usr/share/raveos/cosmic-theme/theme-data/sddm/sddm.conf"
_sddm_dst="/etc/sddm.conf.d/raveos-theme.conf"
pre_install() {
rm -f "$_sddm_dst"
}
pre_upgrade() {
rm -f "$_sddm_dst"
}
post_install() {
mkdir -p /etc/sddm.conf.d
install -Dm644 "$_sddm_src" "$_sddm_dst"
}
post_upgrade() {
mkdir -p /etc/sddm.conf.d
install -Dm644 "$_sddm_src" "$_sddm_dst"
}
post_remove() {
rm -f "$_sddm_dst"
}
|