mirror of
https://github.com/endeavouros-team/eos-quickstart.git
synced 2026-07-29 06:55:24 +00:00
@@ -1,5 +1,5 @@
|
||||
# EndeavourOS Quickstart Installer
|
||||
|
||||
[]()
|
||||
[]()
|
||||
|
||||
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.
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user