/* Vomp local config file Using a local config.json file is optional. This file shows all config options and their defaults, where applicable. To use a local config, create config.json and copy in just the settings you want to change. Place the file in the current working directory for vompclient. */ { "main": { "daemonize": true }, "log": { "enabled": false, "filename": "stdout", "level": "debug" }, "server": { // "server" has no defaults // Normally vompclient will use IPv4 UDP broadcasts and IPv6 multicast to find servers // Entering an address and optionally a port will disable discovery "address": "vdrserver.example.com", "port": 3024 } "input": { "mod_cec_enabled": true, "mod_udp_enabled": true, "mod_lirc_enabled": true }, "input_lirc": { // input_lirc has no defaults "lirc_ip": "192.0.2.0", "lirc_port": 8765, "remotes": [ "lirc-remote-name-1", "lirc-remote-name-2" ], "lirc-remote-name-1": { "KEY_POWER": "POWER", "KEY_MUTE": "MUTE" /* etc. List all keys to be used by Vomp On the left - the Lirc key name. On the right - the Vomp key name. See input.h (for now) */ }, "lirc-remote-name-2": { } } }