diff options
Diffstat (limited to 'raveos-hyprland-theme')
| -rw-r--r-- | raveos-hyprland-theme/.SRCINFO | 10 | ||||
| -rw-r--r-- | raveos-hyprland-theme/PKGBUILD | 2 | ||||
| -rw-r--r-- | raveos-hyprland-theme/raveos-hyprland-apply.sh | 31 |
3 files changed, 34 insertions, 9 deletions
diff --git a/raveos-hyprland-theme/.SRCINFO b/raveos-hyprland-theme/.SRCINFO index af8db8f..e7a8d73 100644 --- a/raveos-hyprland-theme/.SRCINFO +++ b/raveos-hyprland-theme/.SRCINFO @@ -1,14 +1,11 @@ pkgbase = raveos-hyprland-theme pkgdesc = RaveOS Hyprland theme payload and installer pkgver = 1.0.0 - pkgrel = 1 + pkgrel = 6 url = https://raveos.local install = raveos-hyprland-theme.install arch = any license = custom - conflicts = raveos-cosmic-theme - conflicts = raveos-gnome-theme - conflicts = raveos-plasma-theme depends = dms-shell-hyprland depends = matugen depends = socat @@ -25,5 +22,10 @@ pkgbase = raveos-hyprland-theme depends = amdgpu_top depends = nvtop depends = intel-gpu-tools + conflicts = raveos-cosmic-theme + conflicts = raveos-gnome-theme + conflicts = raveos-plasma-theme + conflicts = yaru-gtk-theme + options = !debug pkgname = raveos-hyprland-theme diff --git a/raveos-hyprland-theme/PKGBUILD b/raveos-hyprland-theme/PKGBUILD index 91e49d2..52a59dc 100644 --- a/raveos-hyprland-theme/PKGBUILD +++ b/raveos-hyprland-theme/PKGBUILD @@ -2,7 +2,7 @@ pkgname=raveos-hyprland-theme pkgver=1.0.0 -pkgrel=5 +pkgrel=6 pkgdesc="RaveOS Hyprland theme payload and installer" arch=('any') url="https://raveos.local" diff --git a/raveos-hyprland-theme/raveos-hyprland-apply.sh b/raveos-hyprland-theme/raveos-hyprland-apply.sh index abd61f7..0454473 100644 --- a/raveos-hyprland-theme/raveos-hyprland-apply.sh +++ b/raveos-hyprland-theme/raveos-hyprland-apply.sh @@ -338,7 +338,12 @@ SEOF fi # Kizarolag az erintett konfiguraciok es konyvtarak jogosultsagait javitjuk - chown "${uid}:${gid}" "${home}/.config" "${home}/.local" "${home}/.bashrc" 2>/dev/null || true + chown "${uid}:${gid}" \ + "${home}/.bashrc" \ + "${home}/.face" \ + "${home}/.face.icon" \ + "${home}/.config/background.jpg" \ + "${home}/.config/user-dirs.dirs" 2>/dev/null || true chown "${uid}:${gid}" \ "${home}/${XDG_DESKTOP}" \ "${home}/${XDG_DOWNLOAD}" \ @@ -349,9 +354,27 @@ SEOF "${home}/${XDG_PICTURES}" \ "${home}/${XDG_VIDEOS}" \ "${home}/${XDG_PROJECTS}" 2>/dev/null || true - chown -R "${uid}:${gid}" \ - "${home}/.config" \ - "${home}/.local" 2>/dev/null || true + for d in \ + .config/hypr \ + .config/dms \ + .config/quickshell \ + .config/DankMaterialShell \ + .config/matugen \ + .config/kitty \ + .config/fastfetch \ + .config/raveos \ + .config/raveswitch \ + .config/gtk-3.0 \ + .config/gtk-4.0 \ + .config/nwg-look \ + .config/Thunar \ + .config/xfce4 \ + .config/xsettingsd \ + .config/Kvantum \ + .local/state/DankMaterialShell \ + .local/share/flatpak/overrides; do + [[ -e "${home}/${d}" ]] && chown -R "${uid}:${gid}" "${home}/${d}" 2>/dev/null || true + done done < /etc/passwd |