/* 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" }, "input": { "mod_cec_enabled": true, "mod_udp_enabled": true, "mod_lirc_enabled": true }, "input_lirc": { // This is an example input_lirc section "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": { } } }