Install executables to the right spots.

This commit is contained in:
Simon Quigley 2022-06-30 14:54:28 -05:00
parent 06e89e5442
commit 55c3f71582
3 changed files with 9 additions and 2 deletions

View File

@ -29,3 +29,7 @@ qt_add_executable(lubuntu-installer-prompt
target_link_libraries(lubuntu-installer-prompt PRIVATE Qt6::Widgets)
qt_finalize_executable(lubuntu-installer-prompt)
install(TARGETS lubuntu-installer-prompt DESTINATION bin)
install(PROGRAMS "scripts/lubuntu-installer" DESTINATION bin)
install(FILES "img/background.png" DESTINATION share/lubuntu/installer-prompt)

3
scripts/lubuntu-installer Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
pkexec calamares -D6

View File

@ -10,7 +10,7 @@ InstallerPrompt::InstallerPrompt(QWidget *parent)
ui->setupUi(this);
// Set the background image and scale it
QPixmap bg("../img/background.png");
QPixmap bg("/usr/share/lubuntu/installer-prompt/background.png");
QScreen *screen = QGuiApplication::primaryScreen();
QRect screenGeometry = screen->geometry();
@ -45,7 +45,7 @@ void InstallerPrompt::tryLubuntu()
void InstallerPrompt::installLubuntu()
{
QProcess *calamares = new QProcess(this);
calamares->start("/usr/bin/pkexec /usr/bin/calamares");
calamares->start("/usr/bin/lubuntu-installer");
}
InstallerPrompt::~InstallerPrompt()