diff options
author | Weblate <noreply@weblate.org> | 2016-10-11 07:55:44 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2016-10-11 07:55:44 +0000 |
commit | dabe6a5b4d0b2786015431d9af658c6f2126eb84 (patch) | |
tree | b02fc72af6dac7d807f14cb597bd9dd0d3691581 /src-qt5/core/lumina-session/main.cpp | |
parent | Translated using Weblate (l_SCREENSHOT@de (generated)) (diff) | |
parent | Merge branch 'master' of github.com:trueos/lumina (diff) | |
download | lumina-dabe6a5b4d0b2786015431d9af658c6f2126eb84.tar.gz lumina-dabe6a5b4d0b2786015431d9af658c6f2126eb84.tar.bz2 lumina-dabe6a5b4d0b2786015431d9af658c6f2126eb84.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/lumina-session/main.cpp')
-rw-r--r-- | src-qt5/core/lumina-session/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-session/main.cpp b/src-qt5/core/lumina-session/main.cpp index 464302a7..24d32c52 100644 --- a/src-qt5/core/lumina-session/main.cpp +++ b/src-qt5/core/lumina-session/main.cpp @@ -33,8 +33,10 @@ int main(int argc, char ** argv) QString disp = QString(getenv("DISPLAY")).simplified(); if(disp.isEmpty()){ //No X session found. Go ahead and re-init this binary within an xinit call - QStringList args; args << QCoreApplication::applicationFilePath(); - if(LUtils::isValidBinary("x11vnc")){ args << "--" << "-listen" << "tcp"; } //need to be able to VNC into this session + QString prog = QCoreApplication::applicationFilePath().section("/",-1); + LUtils::isValidBinary(prog); //will adjust the path to be absolute + QStringList args; args << prog; + //if(LUtils::isValidBinary("x11vnc")){ args << "--" << "-listen" << "tcp"; } //need to be able to VNC into this session return QProcess::execute("xinit", args); } //Setup any initialization values |