-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.parsecgaming.parsec.json
56 lines (56 loc) · 1.83 KB
/
com.parsecgaming.parsec.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"app-id": "com.parsecgaming.parsec",
"runtime": "org.freedesktop.Platform",
"runtime-version": "1.6",
"sdk": "org.freedesktop.Sdk",
"runtime": "org.gnome.Platform",
"runtime-version": "3.26",
"sdk": "org.gnome.Sdk",
"tags": ["proprietary"],
"separate-locales": false,
"command": "parsecd",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Wayland access */
"--socket=wayland",
/* Needs to talk to the network: */
"--share=network",
/* Enable playing sound thru pulseaudio */
"--socket=pulseaudio",
/* Allow access to parsec folder */
"--filesystem=~/.parsec/:rw",
/* Enable access to dri */
"--device=dri",
/* Enable themes support */
"--filesystem=~/.config/dconf:ro",
"--env=DCONF_USER_CONFIG_DIR=.config/dconf",
/* Required for file reveal in file manager */
"--socket=session-bus"
],
"modules": [
{
"name": "parsecd",
"buildsystem": "simple",
"build-commands": [
"install -D parsecd /app/bin/parsecd",
"install -Dm644 com.parsecgaming.parsec.desktop /app/share/applications/com.parsecgaming.parsec.desktop",
"install -Dm644 com.parsecgaming.parsec.png /app/share/icons/hicolor/256x256/apps/com.parsecgaming.parsec.png"
],
"sources": [
{
"type": "file",
"path": "parsecd"
},
{
"type": "file",
"path": "com.parsecgaming.parsec.desktop"
},
{
"type": "file",
"path": "com.parsecgaming.parsec.png"
}
]
}
]
}