summaryrefslogtreecommitdiff
path: root/raveos-plasma-theme
diff options
context:
space:
mode:
authorNippy <nippy@Nippy-Mac-mini.local>2026-09-19 22:28:12 +0200
committerNippy <nippy@Nippy-Mac-mini.local>2026-09-19 22:28:12 +0200
commitc5ca121fde65cfa5c1729f779cf6b0f47b6ebb21 (patch)
treeade5ca729f51cb849a6ec39ed45e21a9d8aa1af8 /raveos-plasma-theme
parenta95908de8949035c4b101500665cbddf7ac44e94 (diff)
downloadRaveOS-PKGBUILD-c5ca121fde65cfa5c1729f779cf6b0f47b6ebb21.tar.gz
RaveOS-PKGBUILD-c5ca121fde65cfa5c1729f779cf6b0f47b6ebb21.zip
working fix/test
Diffstat (limited to 'raveos-plasma-theme')
-rw-r--r--raveos-plasma-theme/.SRCINFO8
-rw-r--r--raveos-plasma-theme/PKGBUILD2
-rwxr-xr-xraveos-plasma-theme/raveos-plasma-apply.sh18
3 files changed, 19 insertions, 9 deletions
diff --git a/raveos-plasma-theme/.SRCINFO b/raveos-plasma-theme/.SRCINFO
index 8812ea0..83edc19 100644
--- a/raveos-plasma-theme/.SRCINFO
+++ b/raveos-plasma-theme/.SRCINFO
@@ -1,18 +1,18 @@
pkgbase = raveos-plasma-theme
pkgdesc = RaveOS Plasma theme payload and installer
pkgver = 1.0.0
- pkgrel = 3
+ pkgrel = 6
url = https://raveos.local
install = raveos-plasma-theme.install
arch = any
license = custom
- conflicts = raveos-gnome-theme
- conflicts = raveos-hyprland-theme
- conflicts = raveos-cosmic-theme
depends = fastfetch
depends = raveos-sddm-theme
depends = wl-clipboard
depends = kwallet-pam
+ conflicts = raveos-gnome-theme
+ conflicts = raveos-hyprland-theme
+ conflicts = raveos-cosmic-theme
options = !debug
pkgname = raveos-plasma-theme
diff --git a/raveos-plasma-theme/PKGBUILD b/raveos-plasma-theme/PKGBUILD
index bdaad3a..dc033fc 100644
--- a/raveos-plasma-theme/PKGBUILD
+++ b/raveos-plasma-theme/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=raveos-plasma-theme
pkgver=1.0.0
-pkgrel=5
+pkgrel=6
pkgdesc="RaveOS Plasma theme payload and installer"
arch=('any')
url="https://raveos.local"
diff --git a/raveos-plasma-theme/raveos-plasma-apply.sh b/raveos-plasma-theme/raveos-plasma-apply.sh
index 20e104a..ed9213b 100755
--- a/raveos-plasma-theme/raveos-plasma-apply.sh
+++ b/raveos-plasma-theme/raveos-plasma-apply.sh
@@ -199,10 +199,20 @@ while IFS=: read -r user _ uid gid _ home shell; do
ensure_bashrc_hook "${home}/.bashrc"
echo "1" > "${home}/.config/raveos/plasma-migrated"
- chown -R "${uid}:${gid}" \
- "${home}/.config" \
- "${home}/.local" \
- "${home}/.bashrc" 2>/dev/null || true
+ chown "${uid}:${gid}" \
+ "${home}/.bashrc" \
+ "${home}/.config/konsolerc" \
+ "${home}/.config/kwalletrc" \
+ "${home}/.config/kdeglobals" \
+ "${home}/.config/plasmarc" 2>/dev/null || true
+ for d in \
+ .config/kitty \
+ .config/fastfetch \
+ .config/autostart \
+ .config/raveos \
+ .local/share/konsole; do
+ [[ -e "${home}/${d}" ]] && chown -R "${uid}:${gid}" "${home}/${d}" 2>/dev/null || true
+ done
done < /etc/passwd