blob: d23221d2c6749e41e34bf746e5e07bc28ce7ce14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/bash
# This is your Application ID, avoid conflict
appID="moe.launcher.an-anime-game-launcher"
# This is a friendly name of an application. It should only contain ASCII characters and not spaces.
friendlyName="An_Anime_Game_Launcher"
# This is the state directory of your application, which is located under "XDG_DATA_HOME"
stateDirectory="AAGL_Data"
# This is the target executable to launch
launchTarget="an-anime-game-launcher"
# Takes boolean value. When enabled, do not process XAuth files and forces wayland input method. Generally this should be true when possible.
waylandOnly="false"
# Takes boolean value.
bindInputDevices="true"
# Below you can set envs that will be imported into the application sandbox
|