mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Update process enhancements
This commit is contained in:
parent
7e799d999a
commit
d319e1c70b
3 changed files with 30 additions and 2 deletions
|
@ -246,6 +246,13 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
rootfs_proc->start(rootfs_prog, rootfs_args);
|
||||
rootfs_proc->waitForFinished();
|
||||
|
||||
// Removing update directory contents
|
||||
QDir dir("/mnt/onboard/onboard/.inkbox");
|
||||
dir.removeRecursively();
|
||||
// Re-creating update directory
|
||||
QString path("/mnt/onboard/onboard/.inkbox");
|
||||
dir.mkpath(path);
|
||||
|
||||
// Rebooting if needed
|
||||
if(reboot_after_update == true) {
|
||||
reboot(false);
|
||||
|
|
7
quit.cpp
7
quit.cpp
|
@ -46,11 +46,18 @@ quit::~quit()
|
|||
|
||||
void quit::on_pushButton_clicked()
|
||||
{
|
||||
// Prevent strange "appearing from nowhere" low battery or critical battery alerts due to sysfs unmount
|
||||
global::battery::showCriticalBatteryAlert = false;
|
||||
global::battery::showLowBatteryDialog = false;
|
||||
|
||||
poweroff(true);
|
||||
}
|
||||
|
||||
void quit::on_pushButton_2_clicked()
|
||||
{
|
||||
global::battery::showCriticalBatteryAlert = false;
|
||||
global::battery::showLowBatteryDialog = false;
|
||||
|
||||
reboot(true);
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,12 @@ settingsChooser::settingsChooser(QWidget *parent) :
|
|||
this->setStyleSheet(stylesheetFile.readAll());
|
||||
stylesheetFile.close();
|
||||
|
||||
// UI tweaks
|
||||
if(checkconfig("/opt/inkbox_kobox_support") != true) {
|
||||
ui->koboxSettingsBtn->hide();
|
||||
ui->line_3->hide();
|
||||
}
|
||||
|
||||
// Getting the screen's size
|
||||
sW = QGuiApplication::screens()[0]->size().width();
|
||||
sH = QGuiApplication::screens()[0]->size().height();
|
||||
|
@ -35,8 +41,16 @@ settingsChooser::settingsChooser(QWidget *parent) :
|
|||
ui->inkboxSettingsBtn->setProperty("type", "borderless");
|
||||
ui->koboxSettingsBtn->setProperty("type", "borderless");
|
||||
|
||||
ui->inkboxSettingsBtn->setStyleSheet("padding: 40px; Text-align: left");
|
||||
ui->koboxSettingsBtn->setStyleSheet("padding: 40px; Text-align: left");
|
||||
string_checkconfig("/opt/inkbox_device");
|
||||
if(checkconfig_str_val == "n705\n" or checkconfig_str_val == "n905\n") {
|
||||
ui->inkboxSettingsBtn->setStyleSheet("padding: 20px; Text-align: left");
|
||||
ui->koboxSettingsBtn->setStyleSheet("padding: 20px; Text-align: left");
|
||||
}
|
||||
else {
|
||||
ui->inkboxSettingsBtn->setStyleSheet("padding: 40px; Text-align: left");
|
||||
ui->koboxSettingsBtn->setStyleSheet("padding: 40px; Text-align: left");
|
||||
}
|
||||
|
||||
ui->inkboxSettingsBtn->setText("\t\t\tInkBox settings");
|
||||
ui->koboxSettingsBtn->setText("\t\t\tKoBox settings");
|
||||
|
||||
|
|
Loading…
Reference in a new issue