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-plasma-theme/raveos-plasma-apply.sh | |
| parent | a95908de8949035c4b101500665cbddf7ac44e94 (diff) | |
| download | RaveOS-PKGBUILD-72001d49700542d7466ae61b1065368e5b241d52.tar.gz RaveOS-PKGBUILD-72001d49700542d7466ae61b1065368e5b241d52.zip | |
hyperland fix
Diffstat (limited to 'raveos-plasma-theme/raveos-plasma-apply.sh')
| -rwxr-xr-x | raveos-plasma-theme/raveos-plasma-apply.sh | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/raveos-plasma-theme/raveos-plasma-apply.sh b/raveos-plasma-theme/raveos-plasma-apply.sh index 20e104a..c73bb64 100755 --- a/raveos-plasma-theme/raveos-plasma-apply.sh +++ b/raveos-plasma-theme/raveos-plasma-apply.sh @@ -199,10 +199,21 @@ 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 + chown "${uid}:${gid}" "${home}/.config" "${home}/.local" "${home}/.local/share" 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 |