> For the complete documentation index, see [llms.txt](https://izaap-studios.gitbook.io/izaap-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://izaap-studios.gitbook.io/izaap-scripts/others/notify/config-files.md).

# Config Files

{% tabs %}
{% tab title="config.lua" %}

```lua
Config = {}

Config.Position = 'top-right' -- top-right / top-left / bottom-right / bottom-left
Config.MaxVisible = 5
Config.DefaultDuration = 5000
Config.DefaultLogo = 'logo.png'
Config.DefaultType = 'info'
Config.SoundVolume = 0.20

Config.UseTestCommand = true
Config.TestCommand = 'testnotify'

Config.Types = {
    success = {
        title = 'Success',
        icon = 'fa-solid fa-circle-check',
        color = '#33d17a',
        sound = 'sounds/success.mp3'
    },

    info = {
        title = 'Information',
        iconSvg = [[
            <svg viewBox="0 0 24 24" aria-hidden="true" focusable="false">
                <path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/>
            </svg>
        ]],
        color = '#3ea6ff',
        sound = 'sounds/info.mp3'
    },

    warning = {
        title = 'Warning',
        icon = 'fa-solid fa-triangle-exclamation',
        color = '#ffb020',
        sound = 'sounds/warning.mp3'
    },

    error = {
        title = 'Error',
        icon = 'fa-solid fa-circle-xmark',
        color = '#ff4d61',
        sound = 'sounds/error.mp3'
    },

    police = {
        title = 'Police Dispatch',
        icon = 'fa-solid fa-shield-halved',
        color = '#3b82f6',
        sound = 'sounds/police.mp3'
    },

    admin = {
        title = 'Admin Notice',
        icon = 'fa-solid fa-user-shield',
        color = '#a855f7',
        sound = 'sounds/admin.mp3'
    },

    bank = {
        title = 'Bank Alert',
        icon = 'fa-solid fa-building-columns',
        color = '#f8c82c',
        sound = 'sounds/bank.mp3'
    },

    gift = {
        title = 'Gift Reward',
        iconImage = 'icons/gift.png',
        color = '#ff66b3',
        sound = 'sounds/gift.mp3'
    }
}
```

{% endtab %}
{% endtabs %}
