aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-07-29 14:02:35 -0400
committerKen Moore <ken@pcbsd.org>2016-07-29 14:02:35 -0400
commit2f7830e11b92243d468a71f693ebf5ed38c6c228 (patch)
tree0b7c89186df076ddb2e8c70a1c90425814fbe256
parentAdd a bit of debugging output for when fluxbox/compton get prompted to reload... (diff)
downloadlumina-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).
-rw-r--r--src-qt5/core/libLumina/LuminaUtils.cpp2
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.
bgstack15