diff options
| author | Nippy <nippy@rp1.hu> | 2026-07-03 13:24:36 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-07-03 13:24:36 +0200 |
| commit | 7de9210d7806e34d47803c361d7a95e29e877de3 (patch) | |
| tree | e74edd19540e43e3c2926dd37b8151603d809294 /raveos-plasma-theme/raveos-plasma-theme.install | |
| parent | af5dd5ec4bf911af75912f3cea6f53d5a8676f12 (diff) | |
| download | RaveOS-PKGBUILD-7de9210d7806e34d47803c361d7a95e29e877de3.tar.gz RaveOS-PKGBUILD-7de9210d7806e34d47803c361d7a95e29e877de3.zip | |
new sddm
Diffstat (limited to 'raveos-plasma-theme/raveos-plasma-theme.install')
| -rw-r--r-- | raveos-plasma-theme/raveos-plasma-theme.install | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/raveos-plasma-theme/raveos-plasma-theme.install b/raveos-plasma-theme/raveos-plasma-theme.install index 9cf2f8d..a61ed75 100644 --- a/raveos-plasma-theme/raveos-plasma-theme.install +++ b/raveos-plasma-theme/raveos-plasma-theme.install @@ -1,30 +1,11 @@ -_sddm_src="/usr/share/raveos/plasma-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" if [[ -x /usr/lib/raveos-plasma-theme/auto-apply.sh ]]; then /usr/lib/raveos-plasma-theme/auto-apply.sh || true fi } post_upgrade() { - mkdir -p /etc/sddm.conf.d - install -Dm644 "$_sddm_src" "$_sddm_dst" if [[ -x /usr/lib/raveos-plasma-theme/auto-apply.sh ]]; then /usr/lib/raveos-plasma-theme/auto-apply.sh || true fi } - -post_remove() { - rm -f "$_sddm_dst" -} |