You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
315 B
15 lines
315 B
8 months ago
|
#!/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;
|