diff --git a/main.py b/main.py index 119bad7..26a20dd 100755 --- a/main.py +++ b/main.py @@ -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()