aboutsummaryrefslogtreecommitdiff
path: root/lumina-xconfig/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-xconfig/main.cpp')
-rw-r--r--lumina-xconfig/main.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/lumina-xconfig/main.cpp b/lumina-xconfig/main.cpp
deleted file mode 100644
index 699665fb..00000000
--- a/lumina-xconfig/main.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-#include <QApplication>
-#include <QDebug>
-#include <QFile>
-#include <QStringList>
-
-#include "MainUI.h"
-#include <LuminaOS.h>
-#include <LuminaThemes.h>
-#include <LuminaUtils.h>
-#include <LuminaSingleApplication.h>
-
-int main(int argc, char ** argv)
-{
- /*QStringList in;
- for(int i=1; i<argc; i++){ //skip the first arg (app binary)
- QString path = argv[i];
- if(path=="."){
- //Insert the current working directory
- in << QDir::currentPath();
- }else{
- if(!path.startsWith("/")){ path.prepend(QDir::currentPath()+"/"); }
- in << path;
- }
- }
- if(in.isEmpty()){ in << QDir::homePath(); }*/
- LTHEME::LoadCustomEnvSettings();
- LSingleApplication a(argc, argv, "lumina-xconfig"); //loads translations inside constructor
- if( !a.isPrimaryProcess()){ return 0; }
- //qDebug() << "Loaded QApplication";
- a.setApplicationName("Lumina Screen Configuration");
- LuminaThemeEngine themes(&a);
-
- //Start the UI
- MainUI w;
- QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) );
- QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(loadIcons()) );
- w.show();
-
- int retCode = a.exec();
- return retCode;
-}
bgstack15