]> git.vomp.tv Git - vompclient.git/blob - config.json.sample
Log conversion
[vompclient.git] / config.json.sample
1 /* Vomp local config file
2    To use, rename to config.json and place in the current working directory for vompclient
3    This file is optional. All fields are optional
4    Anything in here overrides program defaults
5    Example data is shown below
6 */
7
8 {
9   "main":
10   {
11     "daemonize": true
12   },
13
14   "log":
15   {
16     "enabled": false,
17     "filename": "stdout",
18     "level": "debug"
19   },
20
21   "input":
22   {
23     "mod_cec_enabled": true,
24     "mod_udp_enabled": true,
25     "mod_lirc_enabled": true
26   },
27
28   "input_lirc":
29   {
30     "lirc_ip": "192.0.2.0",
31     "lirc_port": 8765,
32
33     "remotes": [ "lirc-remote-name-1", "lirc-remote-name-2" ],
34
35     "lirc-remote-name-1":
36     {
37       "KEY_POWER": "POWER",
38       "KEY_MUTE": "MUTE"
39       /* etc. List all keys to be used by Vomp
40       On the left - the Lirc key name. On the right - the Vomp keyname. See input.h (for now)  */
41     },
42
43     "lirc-remote-name-2":
44     {
45     }
46   }
47 }