{
  "bridge": {
    "name": "Homebridge",
    "username": "CD:22:3D:E3:CE:30",
    "port": 51826,
    "pin": "031-45-154"
  },

  "description": "This is an example configuration for the SSH homebridge plugin",

  "accessories": [
    {
      "accessory": "SSH",
      "name": "iTunes Music",
      "on": "osascript -e 'tell application \"iTunes\" to play'",
      "off": "osascript -e 'tell application \"iTunes\" to stop'",
      "state": "osascript -e 'tell application \"iTunes\" to get player state'",
      "on_value" : "playing",
      "exact_match": true,
      "ssh" : {
        "user": "me",
        "host": "mymac",
        "port": 22,
        "password": "password (or use key)",
        "key": "path to private key file",
      }
    }
  ]
}
