Skip to main content

Config Files

All configuration is done inside config.lua. The file is unescrowd and fully editable.

Config = {}

Config.DefaultDuration = 4000

Default duration for notifications in milliseconds. Used when no duration is specified in the export call.


Config.MaxNotifications = 5

Maximum number of notifications visible on screen at once. Any new notifications beyond this limit will be queued.


Config.Icons = {
success = "fa-solid fa-circle-check",
error = "fa-solid fa-circle-xmark",
warning = "fa-solid fa-triangle-exclamation",
info = "fa-solid fa-circle-info"
}

FontAwesome icon classes used for each notification type. You can replace these with any valid FontAwesome class to customise the icons.

tip

You can find FontAwesome icons at fontawesome.com/icons. Make sure to use the correct prefix (fa-solid, fa-regular, fa-brands).