-
Notifications
You must be signed in to change notification settings - Fork 8
/
launcher.toml
63 lines (54 loc) · 1.59 KB
/
launcher.toml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#displayed application name
name = "RTX Remix"
#displayed before application name in launcher
productArea = "NVIDIA"
version = "2024.4.0-RC.6"
# A filter of release types
# 3 filter types [ "alpha", "beta", "release "]
channel = "beta"
# Set true if you want this package to show in enterprise launcher
enterpriseStatus = false
#unique identifier for component, all lower case, persists between versions
slug = "rtx-remix"
## install and launch instructions by environment
[defaults.windows-x86_64]
url = ""
entrypoint = "${productRoot}/lightspeed.app.trex.bat"
args = []
[defaults.windows-x86_64.open]
command = "${productRoot}/lightspeed.app.trex.bat"
args = ['--exec "open_stage.py ${file}"', "--/app/environment/name='launcher'", "--/app/content/emptyStageOnStart=true"]
[defaults.windows-x86_64.environment]
[defaults.windows-x86_64.install]
pre-install = ""
pre-install-args = []
install = ""
install-args = []
post-install = "${productRoot}/install.bat"
post-install-args = []
[defaults.windows-x86_64.uninstall]
pre-uninstall = ""
pre-uninstall-args = []
uninstall = ""
uninstall-args = []
post-uninstall = ""
post-uninstall-args = []
[defaults.linux-x86_64]
url = ""
entrypoint = "" # ${productRoot}/omni.app.lightspeed.sh
args = [] # "--/app/environment/name='launcher'"
[defaults.linux-x86_64.environment]
[defaults.linux-x86_64.install]
pre-install = ""
pre-install-args = []
install = ""
install-args = []
post-install = ""
post-install-args = []
[defaults.linux-x86_64.uninstall]
pre-uninstall = ""
pre-uninstall-args = []
uninstall = ""
uninstall-args = []
post-uninstall = ""
post-uninstall-args = []