Epsilon HUD - Configuration

All settings are configured in the config.lua file. Below you will find a detailed description of each setting.

General Settings

config.lua
Config = {}

Config.Framework = 'esx'         -- 'esx' or 'qbcore'
Config.DefaultTheme = 'dark'     -- 'dark' or 'light'
Config.SpeedUnit = 'kmh'         -- 'kmh' or 'mph'
Config.MinimapShape = 'circle'   -- 'circle' or 'square'
Config.ShowStreetName = true     -- Street name display
Config.ShowCompass = true        -- Compass display

Settings Table

SettingTypeDefaultDescription
Config.Frameworkstring'esx'Framework to use
Config.DefaultThemestring'dark'Default theme
Config.SpeedUnitstring'kmh'Speed unit
Config.MinimapShapestring'circle'Minimap shape
Config.ShowStreetNamebooleantrueShow/hide street name
Config.ShowCompassbooleantrueShow/hide compass

Bar Settings

You can configure the visibility and color of each bar:

config.lua
Config.Bars = {
    health = { show = true, color = '#3fb950' },
    armor  = { show = true, color = '#58a6ff' },
    hunger = { show = true, color = '#d29922' },
    thirst = { show = true, color = '#58a6ff' },
    stress = { show = true, color = '#f85149' },
    oxygen = { show = true, color = '#79c0ff' },
}

Vehicle HUD Settings

config.lua
Config.VehicleHUD = {
    showSpeed = true,
    showFuel = true,
    showDamage = true,
    showSeatbelt = true,
    fuelScript = 'LegacyFuel'   -- Fuel script name
}
Warning: Change the fuelScript value according to the resource name of the fuel script you are using. For example, ox_fuel, LegacyFuel, etc.