Skip to Content

Configuration

Edit config.lua in the resource folder to customize the UI.

Settings Reference

SettingTypeDefaultDescription
useConvarsbooleanfalseUse server.cfg convars instead of this config file
primaryColorstring"#FF0000"Hex color for the entire UI theme
primaryShadenumber6Color shade: 0 (lightest) to 9 (darkest)
localestring"en"Language — check locales/ folder for available options
notificationDurationnumber3000Default notification duration in milliseconds
progressCancelKeystring"X"Key to cancel progress bars
notificationPositionstring"top-right"Notification position on screen
textUIPositionstring"right-center"Text UI position on screen
radialOpenModestring"hold""press" or "hold" to open radial menu
radialOpenKeystring"z"Key to open the radial menu
contextMenuPositionstring"right"Context menu side
progressBarPositionstring"bottom-center"Progress bar position on screen

Position Options

Notification Positions

"top-left", "top-center", "top-right", "bottom-left", "bottom-center", "bottom-right"

Text UI Positions

"right-center", "left-center", "top-center", "bottom-center"

Context Menu Positions

"right", "left"

Progress Bar Positions

"top-left", "top-center", "top-right", "bottom-left", "bottom-center", "bottom-right"

Supported Languages

LanguageCodeLanguageCode
EnglishenPolishpl
FrenchfrPortuguesept
SpanishesRomanianro
GermandeTurkishtr
ItalianitCzechcs
DutchnlRussianru

Full Config Example

return { useConvars = false, primaryColor = "#FF0000", primaryShade = 6, locale = "en", notificationDuration = 3000, progressCancelKey = "X", notificationPosition = "top-right", textUIPosition = "right-center", radialOpenMode = "hold", radialOpenKey = "z", contextMenuPosition = "right", progressBarPosition = "bottom-center", }
Last updated on