Merge pull request #10 from e-kwsm/patch-1

improvements
This commit is contained in:
dalto8
2026-06-27 15:11:45 -05:00
committed by GitHub
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# EndeavourOS Quickstart Installer
[![Maintenance](https://img.shields.io/maintenance/yes/2025.svg)]()
[![Maintenance](https://img.shields.io/maintenance/yes/2026.svg)]()
This is a simple tool to help an end-user get started by providing an easy way to install an application from a set of curated applications configured by default.
+3
View File
@@ -13,6 +13,7 @@ konqueror="Web browser based on Qt toolkit and Qt WebEngine"
[Image Viewers & Managers]
eog="Image viewing and cataloging program from the GNOME project"
loupe="A simple image viewer for GNOME"
geeqie="Lightweight image viewer and manager"
gwenview="Fast and easy to use image viewer from the KDE project"
ristretto="Fast and lightweight image viewer from the Xfce project"
@@ -66,6 +67,7 @@ totem="Media player from the GNOME project"
celluloid="Simple GTK+ frontend for mpv"
haruna="Video player built with Qt/QML on top of libmpv"
smplayer="Media player with built-in codecs that can play virtually all video and audio formats"
showtime="Video player for GNOME"
vlc="Middleweight video player with support for a wide variety of audio and video formats"
baka-mplayer="A free and open source, cross-platform, libmpv based multimedia player"
kaffeine="Very versatile media player from the KDE project"
@@ -121,6 +123,7 @@ skrooge="Personal finance manager from the KDE project"
atril="Simple multi-page document viewer from the MATE project"
evince="A document viewer for multiple document formats from the GNOME project"
okular="Multi-platform, fast and feature-rich universal document viewer"
papers="Document viewer for PDF and other document formats aimed at the GNOME desktop"
xreader="A simple document viewer from the X-Apps Project"
[Misc System Tools]
+2 -1
View File
@@ -12,6 +12,7 @@
int main(int argc, char *argv[])
{
using namespace Qt::StringLiterals;
QGuiApplication app(argc, argv);
QTranslator translator;
@@ -39,7 +40,7 @@ int main(int argc, char *argv[])
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty(QStringLiteral("packageModel"), &model);
engine.rootContext()->setContextProperty(QStringLiteral("packageManager"), &packageManager);
const QUrl url(u"qrc:/eosquickstart/main.qml"_qs);
const QUrl url(u"qrc:/eosquickstart/main.qml"_s);
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)