From e1de1a131d593bfee193abc64f1e8e7de8f7ac1c Mon Sep 17 00:00:00 2001 From: Nippy Date: Wed, 9 Sep 2026 13:45:23 +0200 Subject: fix(plasma): resolve kwalletd6 crash and session freeze - Add default kwalletrc (/etc/xdg and ~/.config) with First Use=false - Remove disruptive plasma-apply-lookandfeel from first-login.sh - Ensure kwallet-pam and kwalletmanager dependencies for clean PAM auto-unlock - Bump raveos-plasma-theme pkgrel to 3 and raveos-calamares-module to 23 --- raveos-plasma-theme/raveos-plasma-apply.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'raveos-plasma-theme/raveos-plasma-apply.sh') diff --git a/raveos-plasma-theme/raveos-plasma-apply.sh b/raveos-plasma-theme/raveos-plasma-apply.sh index 2e7854e..cf1ce9c 100755 --- a/raveos-plasma-theme/raveos-plasma-apply.sh +++ b/raveos-plasma-theme/raveos-plasma-apply.sh @@ -82,6 +82,20 @@ widgetStyle=Breeze GLBEOF } +write_kwalletrc() { + local target_home="$1" + mkdir -p "${target_home}/.config" + cat > "${target_home}/.config/kwalletrc" <<'KWEOF' +[Wallet] +Default Wallet=kdewallet +Enabled=true +First Use=false + +[org.freedesktop.secrets] +api-enabled=true +KWEOF +} + # skel konfiguráció új felhasználóknak mkdir -p \ /etc/skel/.config/kitty \ @@ -110,6 +124,7 @@ write_konsolerc /etc/skel write_kscreenlockerrc /etc/skel write_ksplashrc /etc/skel write_kdeglobals /etc/skel +write_kwalletrc /etc/skel disable_kmix_autostart /etc/skel ensure_bashrc_hook /etc/skel/.bashrc echo "1" > /etc/skel/.config/raveos/plasma-migrated @@ -149,6 +164,10 @@ while IFS=: read -r user _ uid gid _ home shell; do write_konsolerc "${home}" fi + if [[ ! -f "${home}/.config/kwalletrc" ]]; then + write_kwalletrc "${home}" + fi + if [[ ! -f "${home}/.config/autostart/kmix_autostart.desktop" ]]; then disable_kmix_autostart "${home}" fi -- cgit v1.3