aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-session/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/lumina-session/session.h')
-rw-r--r--src-qt5/core/lumina-session/session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-session/session.h b/src-qt5/core/lumina-session/session.h
index 4ae01f85..dee31502 100644
--- a/src-qt5/core/lumina-session/session.h
+++ b/src-qt5/core/lumina-session/session.h
@@ -6,6 +6,7 @@
//===========================================
#include <QObject>
#include <QProcess>
+#include <QDebug>
#include <QFileSystemWatcher>
#include <sys/types.h>
@@ -18,6 +19,8 @@ private:
QString id;
private slots:
void filechanged(QString path){
+ qDebug() << "File Changed:" << path;
+ qDebug() << " - Program:" << this->program();
if(watcher==0){ return; } //just in case
if(this->state()==QProcess::Running){
if(this->program().section(" ",0,0).section("/",-1) == "fluxbox" ){ ::kill(this->pid(), SIGUSR2); } //Fluxbox needs SIGUSR2 to reload it's configs
@@ -33,6 +36,7 @@ public:
id=ID;
watcher = 0;
if(!watchfiles.isEmpty()){
+ qDebug() << "Watch Files for changes:" << ID << watchfiles;
watcher = new QFileSystemWatcher(this);
connect(watcher, SIGNAL(fileChanged(QString)), this, SLOT(filechanged(QString)) );
connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(filechanged(QString)) );
bgstack15