Skip to Content
Script GuidesHydex-NotifyConfig

CONFIG

Below is the default configuration file used in Hydex-Notify.


config.lua
Config = {} Config.position = 'default'--default(top-right), bottom-right, right, top-center, bottom-left, top-left, left Config.Usesound = true -- You want to use sounds ? Config.type = { default = { --type ( donot delete default(it will be triggered if you havent mentioned type)) icon = 'fas fa-globe fa-flip',-- ("icon" "animation")- font awesome icon and animation sound = 'default', -- sound name from html/sound bgcolor = 'linear-gradient(315deg, #e4b5cb 0%, #722ae6 74%)', --chat background (You can use both gradient and color hex) textcolor = '#dbdbdb', --Text color(You can change text color if you want) }, info = { icon = 'fas fa-bell fa-shake', sound = 'default', bgcolor = 'linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(99,99,99,1) 86%)', textcolor = '#dbdbdb', }, success = { icon = 'fas fa-check-circle fa-bounce', sound = 'default', bgcolor = 'linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(4,85,19,1) 86%)', textcolor = '#dbdbdb', }, error = { icon = 'fas fa-triangle-exclamation fa-beat-fade', sound = 'default', bgcolor = 'linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(135,0,0,1) 86%)', textcolor = '#dbdbdb', }, warning = { icon = 'fas fa-circle-radiation fa-spin', sound = 'default', bgcolor = 'linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(122,80,0,1) 86%)', textcolor = '#dbdbdb', }, }
Last updated on