Skip to content

Commit

Permalink
Merge pull request #11452 from nholthaus/master
Browse files Browse the repository at this point in the history
Fixes #11451 - Add `konsole` as default terminal for KDE-plasma
  • Loading branch information
Tyriar authored Sep 8, 2016
2 parents e190921 + 46a36d0 commit 195c04b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vs/workbench/parts/execution/electron-browser/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ if (env.isLinux) {
defaultTerminalLinux = 'x-terminal-emulator';
} else if (process.env.DESKTOP_SESSION === 'gnome' || process.env.DESKTOP_SESSION === 'gnome-classic') {
defaultTerminalLinux = 'gnome-terminal';
} else if (process.env.DESKTOP_SESSION === 'kde-plasma') {
defaultTerminalLinux = 'konsole';
} else if (process.env.COLORTERM) {
defaultTerminalLinux = process.env.COLORTERM;
} else if (process.env.TERM) {
Expand Down

0 comments on commit 195c04b

Please sign in to comment.