diff options
author | Ken Moore <ken@pcbsd.org> | 2016-07-29 14:02:35 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2016-07-29 14:02:35 -0400 |
commit | 2f7830e11b92243d468a71f693ebf5ed38c6c228 (patch) | |
tree | 0b7c89186df076ddb2e8c70a1c90425814fbe256 /src-qt5/core/libLumina/LuminaUtils.cpp | |
parent | Add a bit of debugging output for when fluxbox/compton get prompted to reload... (diff) | |
download | lumina-2f7830e11b92243d468a71f693ebf5ed38c6c228.tar.gz lumina-2f7830e11b92243d468a71f693ebf5ed38c6c228.tar.bz2 lumina-2f7830e11b92243d468a71f693ebf5ed38c6c228.zip |
Add in a terminal rule for qterminal to "open here" on a directory (does not work properly with the standard -e flag).
Diffstat (limited to 'src-qt5/core/libLumina/LuminaUtils.cpp')
-rw-r--r-- | src-qt5/core/libLumina/LuminaUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/LuminaUtils.cpp b/src-qt5/core/libLumina/LuminaUtils.cpp index 76d61f8d..2ed5f60b 100644 --- a/src-qt5/core/libLumina/LuminaUtils.cpp +++ b/src-qt5/core/libLumina/LuminaUtils.cpp @@ -176,7 +176,7 @@ QString LUtils::GenerateOpenTerminalExec(QString term, QString dirpath){ exec = term+" --working-directory=\""+dirpath+"\""; }else if(term=="xfce4-terminal"){ exec = term+" --default-working-directory=\""+dirpath+"\""; - }else if(term=="konsole"){ + }else if(term=="konsole" || term == "qterminal"){ exec = term+" --workdir \""+dirpath+"\""; }else{ //-e is the parameter for most of the terminal appliction to execute an external command. |