-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.ex.json
41 lines (41 loc) · 1.02 KB
/
conf.ex.json
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
{
"desktop": {
"window_width": 1920,
"window_height": 1080,
"full_screen": true
},
"web": {
"host": "127.0.0.1",
"port": 2001,
"env": {
"DISPLAY": ":0",
"XAUTHORITY": "$HOME/.Xauthority"
}
},
"applications": [
{
"name": "Steam Link",
"start": "flatpak run com.valvesoftware.SteamLink",
"stop": "pkill steamlink",
"banner": "/images/steam.jpg"
},
{
"name": "RetroArch",
"start": "retroarch",
"stop": "pkill retroarch",
"banner": "/images/retroarch.png"
},
{
"name": "Dolphin",
"start": "dolphin-emu",
"stop": "pkill dolphin-emu",
"banner": "/images/dolphin.jpg"
},
{
"name": "Plex HTPC",
"start": "flatpak run tv.plex.PlexHTPC",
"stop": "pkill plex-bin",
"banner": "/images/plex.png"
}
]
}