diff options
Diffstat (limited to 'raveos-gnome-theme')
| -rw-r--r-- | raveos-gnome-theme/.SRCINFO | 11 | ||||
| -rw-r--r-- | raveos-gnome-theme/PKGBUILD | 2 | ||||
| -rwxr-xr-x | raveos-gnome-theme/raveos-gnome-apply.sh | 12 |
3 files changed, 15 insertions, 10 deletions
diff --git a/raveos-gnome-theme/.SRCINFO b/raveos-gnome-theme/.SRCINFO index a7cea12..f5d4e92 100644 --- a/raveos-gnome-theme/.SRCINFO +++ b/raveos-gnome-theme/.SRCINFO @@ -1,17 +1,18 @@ pkgbase = raveos-gnome-theme - pkgdesc = RaveOS GNOME theme payload and modern cascading installer + pkgdesc = RaveOS GNOME theme payload and installer pkgver = 1.0.0 - pkgrel = 1 + pkgrel = 6 url = https://raveos.local install = raveos-gnome-theme.install arch = any license = custom - conflicts = raveos-plasma-theme - conflicts = raveos-hyprland-theme - conflicts = raveos-cosmic-theme depends = raveos-sddm-theme depends = dconf optdepends = fastfetch: terminál üdvözlő (profile.d script indítja) + conflicts = raveos-plasma-theme + conflicts = raveos-hyprland-theme + conflicts = raveos-cosmic-theme + conflicts = yaru-gtk-theme options = !debug pkgname = raveos-gnome-theme diff --git a/raveos-gnome-theme/PKGBUILD b/raveos-gnome-theme/PKGBUILD index 9718552..d376a4f 100644 --- a/raveos-gnome-theme/PKGBUILD +++ b/raveos-gnome-theme/PKGBUILD @@ -2,7 +2,7 @@ pkgname=raveos-gnome-theme pkgver=1.0.0 -pkgrel=5 +pkgrel=6 pkgdesc="RaveOS GNOME theme payload and installer" arch=('any') url="https://raveos.local" diff --git a/raveos-gnome-theme/raveos-gnome-apply.sh b/raveos-gnome-theme/raveos-gnome-apply.sh index 7b8c1f1..8176284 100755 --- a/raveos-gnome-theme/raveos-gnome-apply.sh +++ b/raveos-gnome-theme/raveos-gnome-apply.sh @@ -112,10 +112,14 @@ while IFS=: read -r user _ uid gid _ home shell; do ensure_bashrc_hook "${home}/.bashrc" echo "1" > "${home}/.config/raveos/gnome-migrated" - chown -R "${uid}:${gid}" \ - "${home}/.config" \ - "${home}/.local" \ - "${home}/.bashrc" 2>/dev/null || true + chown "${uid}:${gid}" "${home}/.bashrc" "${home}/.config/mimeapps.list" 2>/dev/null || true + for d in \ + .config/kitty \ + .config/fastfetch \ + .config/burn-my-windows \ + .config/raveos; do + [[ -e "${home}/${d}" ]] && chown -R "${uid}:${gid}" "${home}/${d}" 2>/dev/null || true + done done < /etc/passwd |