Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
8 lines
397 B
Bash
8 lines
397 B
Bash
# Prevent password-based SDDM logins from creating an encrypted login keyring
|
|
# that conflicts with Omarchy's passwordless default keyring behavior. The ISO
|
|
# owns autologin/session state because it knows whether the target is encrypted.
|
|
if [[ -f /etc/pam.d/sddm ]]; then
|
|
sed -i '/-auth.*pam_gnome_keyring\.so/d' /etc/pam.d/sddm
|
|
sed -i '/-password.*pam_gnome_keyring\.so/d' /etc/pam.d/sddm
|
|
fi
|