This commit is contained in:
sairajzero 2018-08-26 19:29:01 +05:30
parent 4aa0c11f43
commit 06cc16f2ac
3 changed files with 10 additions and 16 deletions

View File

@ -5,8 +5,7 @@
"name": "Alexandria", "name": "Alexandria",
"icon": "Icon/Alexandria.png", "icon": "Icon/Alexandria.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "https://alexandria.io/browser/"
"url": "https://alexandria.io/browser/"
}, },
{ {
"id": "2", "id": "2",
@ -14,7 +13,7 @@
"icon": "Icon/AternaLove.png", "icon": "Icon/AternaLove.png",
"type": "Cmdline", "type": "Cmdline",
"location": "apps/aternalove", "location": "apps/aternalove",
"exec": "'bash -c ./auto-aterna-love.sh;bash'", "exec": "./auto-aterna-love.sh",
"github": "https://github.com/metacoin/aternalove.git" "github": "https://github.com/metacoin/aternalove.git"
}, },
{ {
@ -22,24 +21,21 @@
"name": "Caltech", "name": "Caltech",
"icon": "Icon/Caltech.png", "icon": "Icon/Caltech.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "https://etdb.caltech.edu/browse"
"url": "https://etdb.caltech.edu/browse"
}, },
{ {
"id": "4", "id": "4",
"name": "Flotorizer", "name": "Flotorizer",
"icon": "Icon/Flotorizer.png", "icon": "Icon/Flotorizer.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "http://flotorizer.net/"
"url": "http://flotorizer.net/"
}, },
{ {
"id": "5", "id": "5",
"name": "Medici", "name": "Medici",
"icon": "Icon/Medici.png", "icon": "Icon/Medici.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "https://www.mediciventures.com/"
"url": "https://www.mediciventures.com/"
}, },
{ {
"id": "6", "id": "6",
@ -55,7 +51,7 @@
"name": "Florate", "name": "Florate",
"icon": "Icon/Florate.png", "icon": "Icon/Florate.png",
"type": "Gui", "type": "Gui",
"location": "apps/Florate-Dapp/", "location": "apps/FloRate-Dapp/",
"exec": "./Florate", "exec": "./Florate",
"github": "https://github.com/Tarun047/FloRate-Dapp.git" "github": "https://github.com/Tarun047/FloRate-Dapp.git"
}, },
@ -64,16 +60,14 @@
"name": "tZero", "name": "tZero",
"icon": "Icon/tZero.png", "icon": "Icon/tZero.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "https://www.tzero.com/"
"url": "https://www.tzero.com/"
}, },
{ {
"id": "9", "id": "9",
"name": "WorldMood", "name": "WorldMood",
"icon": "Icon/WorldMood.png", "icon": "Icon/WorldMood.png",
"type": "Webapp", "type": "Webapp",
"location": "-", "url": "http://worldmood.io/"
"url": "http://worldmood.io/"
}, },
{ {
"id": "10", "id": "10",
@ -81,7 +75,7 @@
"icon": "Icon/Xcertify.png", "icon": "Icon/Xcertify.png",
"type": "Cmdline", "type": "Cmdline",
"location": "apps/Xcertify/", "location": "apps/Xcertify/",
"exec": "'bash -c ./xcertify;bash'", "exec": "./xcertify",
"github": "https://github.com/akhil2015/Xcertify.git" "github": "https://github.com/akhil2015/Xcertify.git"
} }
] ]

Binary file not shown.

View File

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