-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_launcher.json
More file actions
45 lines (45 loc) · 951 Bytes
/
app_launcher.json
File metadata and controls
45 lines (45 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"config" : {
"title" : "App Launcher",
"description" : "Select an option from the list",
"minimizeConsole" : true,
"closeOnLaunch" : false
},
"executables" : [
{
"name" : "My Exe App",
"target" : "C:\\Folder\\application.exe",
"params" : false
},
{
"name" : "My Bat App",
"target" : "C:\\Folder\\application.bat",
"params" : false
},
{
"name" : "My Standalone Game",
"target" : "C:\\Folder\\game.exe",
"params" : "+exec example; set example 123"
},
{
"name" : "My Steam Game",
"target" : "steam://rungameid/0000",
"params" : "-example +example 123"
},
{
"name" : "My Steam Game (Launch Option)",
"target" : "steam://launch/0000/option/0",
"params" : false
},
{
"name" : "My Folder",
"target" : "C:\\Users\\MyUser\\Documents",
"params" : false
},
{
"name" : "My Website",
"target" : "https://github.com/TriForceX",
"params" : "?example=true"
}
]
}