diff options
| author | Nippy <nippy@Nippy-Mac-mini.local> | 2026-09-20 17:06:52 +0200 |
|---|---|---|
| committer | Nippy <nippy@Nippy-Mac-mini.local> | 2026-09-20 17:06:52 +0200 |
| commit | 72001d49700542d7466ae61b1065368e5b241d52 (patch) | |
| tree | 77341ef716bd0c1f029fcf0e2a4f610dd906b049 /raveos-cosmic-theme/raveos-cosmic-apply.sh | |
| parent | a95908de8949035c4b101500665cbddf7ac44e94 (diff) | |
| download | RaveOS-PKGBUILD-72001d49700542d7466ae61b1065368e5b241d52.tar.gz RaveOS-PKGBUILD-72001d49700542d7466ae61b1065368e5b241d52.zip | |
hyperland fix
Diffstat (limited to 'raveos-cosmic-theme/raveos-cosmic-apply.sh')
| -rwxr-xr-x | raveos-cosmic-theme/raveos-cosmic-apply.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/raveos-cosmic-theme/raveos-cosmic-apply.sh b/raveos-cosmic-theme/raveos-cosmic-apply.sh index adf5e83..23e18bf 100755 --- a/raveos-cosmic-theme/raveos-cosmic-apply.sh +++ b/raveos-cosmic-theme/raveos-cosmic-apply.sh @@ -124,10 +124,15 @@ while IFS=: read -r user _ uid gid _ home shell; do ensure_bashrc_hook "${home}/.bashrc" touch "$user_marker" - chown -R "${uid}:${gid}" \ - "${home}/.config" \ - "${home}/.local" \ - "${home}/.bashrc" 2>/dev/null || true + chown "${uid}:${gid}" "${home}/.bashrc" 2>/dev/null || true + chown "${uid}:${gid}" "${home}/.config" 2>/dev/null || true + for d in \ + .config/kitty \ + .config/fastfetch \ + .config/cosmic \ + .config/raveos-cosmic-theme; do + [[ -e "${home}/${d}" ]] && chown -R "${uid}:${gid}" "${home}/${d}" 2>/dev/null || true + done done < /etc/passwd echo "COSMIC tema telepites kesz." |