diff options
| author | Nippy <nippy@rp1.hu> | 2026-06-22 11:15:06 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-06-22 11:15:06 +0200 |
| commit | 69e54a72c47189eaa07e27c020ff23c9caf06379 (patch) | |
| tree | 9942912ec88ec4c471aa9a9644f4aea7ac02ba0b /raveos-plasma-theme/PKGBUILD | |
| parent | 10839298610a8170eac3374617078a6025017b08 (diff) | |
| download | RaveOS-PKGBUILD-69e54a72c47189eaa07e27c020ff23c9caf06379.tar.gz RaveOS-PKGBUILD-69e54a72c47189eaa07e27c020ff23c9caf06379.zip | |
gnome cosmic plasma sddm update
Diffstat (limited to 'raveos-plasma-theme/PKGBUILD')
| -rw-r--r-- | raveos-plasma-theme/PKGBUILD | 67 |
1 files changed, 49 insertions, 18 deletions
diff --git a/raveos-plasma-theme/PKGBUILD b/raveos-plasma-theme/PKGBUILD index 0d4f792..1c6663b 100644 --- a/raveos-plasma-theme/PKGBUILD +++ b/raveos-plasma-theme/PKGBUILD @@ -1,16 +1,29 @@ +# Maintainer: RaveOS Team +# +# raveos-plasma-theme +# ------------------- +# KDE Plasma DE téma csomag: kitty, fastfetch, Plasma splash, Konsole profil, +# kickoff ikon, háttérkép, SDDM téma. +# +# Az apply script (raveos-plasma-theme-apply.service) post_install hook-ból +# fut és bemásolja a theme-data tartalmát /etc/skel-be és minden meglévő +# user home-jába. + pkgname=raveos-plasma-theme pkgver=0.0.0 -pkgrel=32 +pkgrel=33 pkgdesc="RaveOS Plasma theme payload and installer" arch=('any') url="https://raveos.local" license=('custom') + depends=('fastfetch') + install="${pkgname}.install" source=() sha256sums=() -# Build redirection +# Build könyvtárak az src mellé, ne a makepkg alapértelmezettbe BUILDDIR="${startdir}/build" PKGDEST="${startdir}/build" SRCDEST="${startdir}/build" @@ -18,22 +31,40 @@ SRCPKGDEST="${startdir}/build" LOGDEST="${startdir}/build" package() { - install -dm755 "${pkgdir}/usr/share/raveos/plasma-theme" - cp -r --no-preserve=ownership "${startdir}/theme-data" "${pkgdir}/usr/share/raveos/plasma-theme/" + # theme-data payload: kitty, fastfetch, Plasma konfig, Konsole, splash stb. + install -dm755 "${pkgdir}/usr/share/raveos/plasma-theme" + cp -r --no-preserve=ownership "${startdir}/theme-data" \ + "${pkgdir}/usr/share/raveos/plasma-theme/" + + # SDDM téma: rendszerszintű telepítés, SDDM innen olvassa + install -dm755 "${pkgdir}/usr/share/sddm/themes" + cp -r "${startdir}/theme-data/sddm/sddm-rave-theme" \ + "${pkgdir}/usr/share/sddm/themes/sddm-rave-theme" + + # SDDM konfig: post_install/post_upgrade hook telepíti (nem itt, hogy + # elkerüljük a pacman "conflicting files" hibát az unowned fájloknál) + + # apply script: post_install hook hívja + install -Dm755 "${startdir}/raveos-plasma-apply.sh" \ + "${pkgdir}/usr/lib/raveos-plasma-theme/auto-apply.sh" + + # first-login script: első bejelentkezéskor fut (XDG autostart) + install -Dm755 "${startdir}/raveos-plasma-first-login.sh" \ + "${pkgdir}/usr/lib/raveos-plasma-theme/first-login.sh" + + # systemd service (a post_install hook enable-oli) + install -Dm644 "${startdir}/raveos-plasma-theme-apply.service" \ + "${pkgdir}/usr/lib/systemd/system/raveos-plasma-theme-apply.service" - install -Dm755 "${startdir}/raveos-plasma-apply.sh" \ - "${pkgdir}/usr/lib/raveos-plasma-theme/auto-apply.sh" - install -Dm755 "${startdir}/raveos-plasma-first-login.sh" \ - "${pkgdir}/usr/lib/raveos-plasma-theme/first-login.sh" - install -Dm644 "${startdir}/raveos-plasma-theme-apply.service" \ - "${pkgdir}/usr/lib/systemd/system/raveos-plasma-theme-apply.service" - install -Dm644 "${startdir}/raveos-plasma-first-login.desktop" \ - "${pkgdir}/etc/xdg/autostart/raveos-plasma-first-login.desktop" + # XDG autostart: first-login script indítása + install -Dm644 "${startdir}/raveos-plasma-first-login.desktop" \ + "${pkgdir}/etc/xdg/autostart/raveos-plasma-first-login.desktop" - install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ - "${pkgdir}/usr/share/pixmaps/raveos-logo.svg" - install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ - "${pkgdir}/usr/share/icons/hicolor/scalable/apps/raveos-logo.svg" - install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ - "${pkgdir}/usr/share/icons/hicolor/scalable/apps/distributor-logo-raveos.svg" + # Kickoff/rendszer ikon - globálisan is telepítve, nem csak user-szinten + install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ + "${pkgdir}/usr/share/pixmaps/raveos-logo.svg" + install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ + "${pkgdir}/usr/share/icons/hicolor/scalable/apps/raveos-logo.svg" + install -Dm644 "${startdir}/theme-data/plasma/org.kde.plasma.kickoff.svg" \ + "${pkgdir}/usr/share/icons/hicolor/scalable/apps/distributor-logo-raveos.svg" } |