Skip to content

Commit

Permalink
Support for XFCE terminal (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
D0m0 authored Oct 13, 2023
1 parent 887b217 commit 95c34fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,11 @@ QString Debugger::createTty() {
proc_args << "--hide-menubar"
<< "--title" << tr("edb output")
<< "--";
} else if (command_info.fileName() == "xfce4-terminal") {
proc_args << "--hide-menubar"
<< "--title" << tr("edb output")
<< "--hold"
<< "-x";
} else if (command_info.fileName() == "konsole") {
proc_args << "--hide-menubar"
<< "--title" << tr("edb output")
Expand Down

0 comments on commit 95c34fe

Please sign in to comment.