mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-02-14 06:38:21 +00:00
14 lines
324 B
Bash
Executable File
14 lines
324 B
Bash
Executable File
#!/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
|
|
sed -i "s/Session=plasma/Session=kubuntu-oem-environment/" /etc/sddm.conf
|
|
fi
|