Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 976 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 976 Bytes

Homebridge Discord Mute

Ever wanted to mute/unmute yourself on Discord through HomeKit? Here's your answer!

Quick start:

to use this plugin you have to have the Client Running on the machine with Discord.

then go to your homebridge machine, and run the following command:

npm i -g homebridge-discordmute

and add this to your homebridge config.json file:

"accessories": [
    {
        "name": "Mute",
        "accessory": "DiscordMute",
        "type": "Mute",
        "ip_address": "127.0.0.0"
    }
]

Configuration

to make Homebridge aware that you've installed a new plugin, you have to add it into your config file. Somewhere inside that file you should see a key named accessories.

the type parameter has to be either Mute or Deafen, with the first letter being upper case!

the ip_address parameter needs to be the ip address of the computer with Discord on!