> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/xdiskjockey/config/sound_effect.md).

# Add new sound effect

In `xdiskjockey/config.lua` you can find array called "SoundsEffects" where you can add new one / edit existing one, or remove them. They are all shared between mixers.

```lua
-- All sound effects are shared between all mixers
SoundsEffects = {
    -- item 1
    {
        Name = "Countdown from 10 to 0 and hyping on end",
        URL = "https://www.youtube.com/watch?v=iwYDfyCABAc",
    },
    -- another item
    {
        Name = "Count down from 5 to 1 and hyping on end",
        URL = "https://www.youtube.com/watch?v=LZyIgCOeLLU",
    },
}
```
