1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2012, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "WMProcess.h"
#include "LSession.h"
WMProcess::WMProcess() : QProcess(){
connect(this,SIGNAL(finished(int, QProcess::ExitStatus)),this,SLOT(processFinished(int, QProcess::ExitStatus)) );
this->setProcessChannelMode(QProcess::MergedChannels);
QString log = QString(getenv("XDG_CONFIG_HOME"))+"/lumina-desktop/logs/wm.log";
if(QFile::exists(log)){ QFile::remove(log); }
this->setStandardOutputFile(log);
//ssaver = new QProcess(0);
inShutdown = false;
}
WMProcess::~WMProcess(){
}
// =======================
// PUBLIC FUNCTIONS
// =======================
void WMProcess::startWM(){
inShutdown = false;
QString cmd = setupWM();
if(!isRunning()){this->start(cmd); }
/*if(ssaver->state() == QProcess::NotRunning \
&& LSession::handle()->sessionSettings()->value("WindowManager", "fluxbox").toString() != "lumina-wm"){
ssaver->start("xscreensaver -no-splash");
}*/
}
void WMProcess::stopWM(){
if(isRunning()){
inShutdown = true;
//QProcess::startDetached("fluxbox-remote closeallwindows");
//ssaver->kill();
this->kill();
if(!this->waitForFinished(10000)){ this->terminate(); };
}else{
qWarning() << "WM already closed - did it crash?";
}
}
void WMProcess::restartWM(){
qDebug() << "Restarting WM";
if(isRunning()){
inShutdown = true;
this->kill();
if(!this->waitForFinished(5000) ){ this->terminate(); };
inShutdown = false;
}
this->startWM();
}
void WMProcess::updateWM(){
if(isRunning()){
qDebug() << "Updating WM";
::kill(this->pid(), SIGUSR2); //send fluxbox the signal to reload it's configuration
}
}
// =======================
// PRIVATE FUNCTIONS
// =======================
bool WMProcess::isRunning(){
return (this->state() != QProcess::NotRunning);
}
QString WMProcess::setupWM(){
QString WM = LSession::handle()->sessionSettings()->value("WindowManager", "fluxbox").toString();
QString cmd="echo WM Disabled";
//leave the option to add other window managers here (for testing purposes)
if(WM=="fluxbox"){
QString confDir = QString( getenv("XDG_CONFIG_HOME"))+"/lumina-desktop";
if(!QFile::exists(confDir)){ QDir dir(confDir); dir.mkpath(confDir); }
if(!QFile::exists(confDir+"/fluxbox-init")){
QFile::copy(":/fluxboxconf/fluxbox-init-rc",confDir+"/fluxbox-init");
QFile::setPermissions(confDir+"/fluxbox-init", QFile::ReadOwner | QFile::WriteOwner | QFile::ReadUser | QFile::ReadOther | QFile::ReadGroup);
}
// FLUXBOX BUG BYPASS: if the ~/.fluxbox dir does not exist, it will ignore the given config file
if(!QFile::exists(QDir::homePath()+"/.fluxbox")){
QDir dir; dir.mkpath(QDir::homePath()+"/.fluxbox");
}
cmd = "fluxbox -rc "+confDir+"/fluxbox-init -no-slit -no-toolbar";
}else {
cmd = WM;
}
return cmd;
}
void WMProcess::cleanupConfig(){
//QString confDir = QDir::homePath()+"/.config/openbox";
//if(!QFile::exists(confDir+"/rc.xml")){ return; } //Make sure that there is a current config file
//if(QFile::exists(confDir+"/lumina-rc.xml")){ QFile::remove(confDir+"/lumina-rc.xml"); }
//QFile::rename(confDir+"/rc.xml",confDir+"/lumina-rc.xml");
//if(QFile::exists(confDir+"/openbox-rc.xml")){ QFile::rename(confDir+"/openbox-rc.xml",confDir+"/rc.xml"); }
}
// =======================
// PRIVATE SLOTS
// =======================
void WMProcess::processFinished(int exitcode, QProcess::ExitStatus status){
if(!inShutdown){
if(exitcode == 0 && status == QProcess::NormalExit){
cleanupConfig();
emit WMShutdown();
}else{
//restart the Window manager
qDebug() << "WM Stopped Unexpectedly: Restarting it...";
this->startWM();
}
}else{
cleanupConfig();
}
}
|