Fix to open terminal in Gnome

This commit is contained in:
El Mau 2022-02-04 21:26:17 -06:00
parent b7e0d2a0fc
commit 6ce81f91c6
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -296,7 +296,7 @@ class Controllers(object):
if app.IS_MAC:
cmd = 'open "{}"'
elif app.DESKTOP == 'gnome':
cmd = 'x-terminal-emulator -- {}'
cmd = 'gnome-terminal -- {}'
cmd = cmd.format(self.path_python)
app.run(cmd)