Here is how I configured support for a multi-tab RoxTerm in EVE-NG native.
sudo nano /usr/bin/eve-ng-integration
Then find the line that returns your emulator and just replace it with the roxterm line. I commented out konsole and used roxterm.
def _terminal_emulator_cmd(self): if self.override_terminal: return self.override_terminal.split() elif self._is_command('x-terminal-emulator'): return ['x-terminal-emulator', '-e'] elif self._current_desktop('cinnamon', 'gnome', 'unity'): return ['gnome-terminal', '-e'] elif self._current_desktop('kde'): return ['roxterm', '--tab', '-e'] # return ['konsole', '--new-tab', '-e']