gnome-terminal fixed

This commit is contained in:
Kaushal 2018-08-26 18:32:08 +05:30
parent e7995e6906
commit 62cb52cdda

View File

@ -133,7 +133,7 @@ class FLOappStore:
if(app["type"] == "Gui"):
subprocess.Popen(app["exec"], cwd=app["location"])
elif(app["type"] == "Cmdline"):
subprocess.Popen(["gnome-terminal --command",app["exec"]],cwd=app["location"],stdout=subprocess.PIPE,shell=True)
subprocess.Popen(["gnome-terminal --command "+app["exec"]],cwd=app["location"],stdout=subprocess.PIPE,shell=True)
def openBrowserApp(self,app):
self.appWin.destroy()