blob: 42d07a29bf6f08dc403f91cc54b2d295c39ebc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/bash
# This is your Application ID, avoid conflict
appID="md.obsidian.Obsidian"
# This is a friendly name of an application. It should only contain ASCII characters and not spaces.
friendlyName="Obsidian"
# This is the state directory of your application, which is located under "XDG_DATA_HOME"
stateDirectory="Obsidian_Data"
# This is the target executable to launch
#launchTarget="gtk4-demo"
waylandOnly="adaptive"
# Takes boolean value.
bindInputDevices="false"
# Expose all GPUs. Takes boolean value, usually used in games.
gameMode="false"
# Below you can set envs that will be imported into the application sandbox
|