calamares-settings-ubuntu/ubuntuunity/calamares-launch-normal

16 lines
364 B
Plaintext
Raw Permalink Normal View History

2024-03-17 14:41:26 -05:00
#!/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
2024-03-25 19:29:51 +00:00
export BROWSER='sudo -H -u ubuntu-unity firefox'
2024-03-17 14:41:26 -05:00
QT_STYLE_OVERRIDE=kvantum calamares -D8;