aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/main.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-21 15:53:51 -0500
committerKen Moore <ken@pcbsd.org>2015-01-21 15:53:51 -0500
commita059c1fdb254fc5e2dca743597fe96c0a8a09aa3 (patch)
tree126af0492cd60a8c7e71721510f03296aa52531a /lumina-desktop/main.cpp
parentClean up a couple other session options: (diff)
downloadlumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.tar.gz
lumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.tar.bz2
lumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.zip
Add a completely new background method for a distributor to set per-system defaults for the Lumina desktop. Also fix a bug this exposed in how the Lumina panel removes plugins.
Diffstat (limited to 'lumina-desktop/main.cpp')
-rw-r--r--lumina-desktop/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp
index 4e447b98..bd26e8f4 100644
--- a/lumina-desktop/main.cpp
+++ b/lumina-desktop/main.cpp
@@ -59,7 +59,6 @@ int main(int argc, char ** argv)
LXDG::setEnvironmentVars();
setenv("DESKTOP_SESSION","LUMINA",1);
setenv("XDG_CURRENT_DESKTOP","LUMINA",1);
- //LSession::setGraphicsSystem("native"); //make sure to use X11 graphics system
//Setup the log file
qDebug() << "Lumina Log File:" << logfile.fileName();
if(QFile::exists(logfile.fileName()+".old")){ QFile::remove(logfile.fileName()+".old"); }
bgstack15