Install executables to the right spots.
This commit is contained in:
parent
06e89e5442
commit
55c3f71582
@ -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
3
scripts/lubuntu-installer
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
pkexec calamares -D6
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user