diff --git a/README.md b/README.md index bee1a9a..a44498c 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,6 @@ This project is in **VERY VERY EARLY ALPHA**. It doesn't even do anything yet. Eventually it's going to present a "Try or Install Lubuntu" menu. -Licensing info: 2022 Lubuntu Developers +Licensing info: + - Everything is GPL-3 by 2022 Lubuntu Developers unless stated otherwise. + - img/background.png is licensed CC-BY-4.0, authored by Aaron Rainbolt , copyright ownership the same as source diff --git a/img/background.png b/img/background.png new file mode 100644 index 0000000..6c6504f Binary files /dev/null and b/img/background.png differ diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 55d99e4..c41e60f 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -8,7 +8,7 @@ MainWindow::MainWindow(QWidget *parent) ui->setupUi(this); // Set the background image, and let it change with the release - QPixmap bg("/usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png"); + QPixmap bg("../img/background.png"); bg = bg.scaled(this->size(), Qt::IgnoreAspectRatio); QPalette palette; palette.setBrush(QPalette::Window, bg);