mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-03-04 15:51:12 +00:00
15 lines
315 B
Plaintext
15 lines
315 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Launch Calamares normally.
|
||
|
|
||
|
if [ -e '/etc/calamares/OEM_MODE_ACTIVATED' ]; then
|
||
|
msg="$(cat <<EOL
|
||
|
The installer was previously run in OEM mode. Please reboot to reset the configuration and try again.
|
||
|
EOL
|
||
|
)";
|
||
|
zenity --info --text="${msg}";
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
QT_STYLE_OVERRIDE=kvantum calamares -D8;
|