> For the complete documentation index, see [llms.txt](https://kierandev.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kierandev.gitbook.io/documentation/tmc-resources/toggle-duty/config-options.md).

# Config Options

## Debug

```
Config.Debug = true
```

## Radial Options

```lua
Config.RadialOptions = {
    displayname  = "Duty Menu",
    icon         = "briefcase",
    iconCategory = "duotone"
}
```

## Show Job Grade

```lua
-- Shows the persons job grade label in the description of the button
Config.ShowJobGrade = true
```

## Searchable Menu

```lua
-- if the menu should be searchable (requires form)
Config.MenuSearchable = false
```

## Menu Form

```
-- if the menu should be in form 
Config.MenuForm = false
```

## Job Display

```lua
-- Job Display (How jobs display in the menu)
-- Get Duotone icons here - https://fontawesome.com/icons
Config.JobDisplay = {
    ['police']      = { label = "Police Officer",      icon = "fad fa-shield-alt",    },
    ['ambulance']   = { label = "Paramedic",           icon = "fad fa-heartbeat",     },
    ['mechanic']    = { label = "Mechanic",            icon = "fad fa-wrench",        },
    ['taxi']        = { label = "Taxi Driver",         icon = "fad fa-taxi",          },
    ['lawyer']      = { label = "Lawyer",              icon = "fad fa-balance-scale", },
    ['doctor']      = { label = "Doctor",              icon = "fad fa-user-md",       },
    ['reporter']    = { label = "Reporter",            icon = "fad fa-microphone",    },
    ['realestate']  = { label = "Real Estate Agent",   icon = "fad fa-home",          },
    -- Add/Remove as many jobs as you want if you dont set one it will use the fallback feature
}
```

## Icon Fallback

```lua
-- Icon it shows if you dont define one in the above config
Config.JobDisplayFallback = {
    icon = "fad fa-briefcase"
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kierandev.gitbook.io/documentation/tmc-resources/toggle-duty/config-options.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
