calamares-settings-ubuntu/kubuntu/oem/calamares-finish-oem

21 lines
456 B
Plaintext
Raw Normal View History

2024-02-12 17:26:01 -06:00
#!/bin/bash
msg="$(cat <<EOL
You are about to disable OEM configuration mode. The system will boot into the
account setup wizard the next time it is started.
Are you sure you want to continue?
EOL
)";
if kdialog --warningyesno "${msg}"; then
sddm_file="$(cat <<EOL
[Autologin]
Session=kubuntu-oem-environment
2024-02-15 13:30:35 -06:00
User=oem
EOL
)"
echo "$sddm_file" | sudo tee /etc/sddm.conf
2024-03-17 14:41:26 -05:00
kdialog --msgbox 'Done. The account setup wizard will run on next bootup.'
2024-02-12 17:26:01 -06:00
fi