aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-session/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-05-11 08:58:58 -0400
committerKen Moore <moorekou@gmail.com>2016-05-11 08:58:58 -0400
commit3f1750e0fe81492223b6774e082282266eec91d4 (patch)
tree97797cc07757f088bfcdaf2faa64c206fdaeec7c /src-qt5/core/lumina-session/main.cpp
parentFix a desktop crash which only seems to happen if you have an existing, but i... (diff)
parentFix the loading of icons where the theme uses pure numbers instead of the <nu... (diff)
downloadlumina-3f1750e0fe81492223b6774e082282266eec91d4.tar.gz
lumina-3f1750e0fe81492223b6774e082282266eec91d4.tar.bz2
lumina-3f1750e0fe81492223b6774e082282266eec91d4.zip
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'src-qt5/core/lumina-session/main.cpp')
-rw-r--r--src-qt5/core/lumina-session/main.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src-qt5/core/lumina-session/main.cpp b/src-qt5/core/lumina-session/main.cpp
index 0ed3067a..8f89e95c 100644
--- a/src-qt5/core/lumina-session/main.cpp
+++ b/src-qt5/core/lumina-session/main.cpp
@@ -9,9 +9,6 @@
#include <QProcess>
#include <QString>
-
-
-
#include "session.h"
#include <LuminaUtils.h>
#include <LuminaOS.h>
@@ -39,7 +36,7 @@ int main(int argc, char ** argv)
setenv("XDG_CURRENT_DESKTOP","Lumina",1);
unsetenv("QT_QPA_PLATFORMTHEME"); //causes issues with Lumina themes - not many people have this by default...
//Check for any missing user config files
-
+
//Start X11 if needed
//Configure X11 monitors if needed
bgstack15