# WINDOWS_MODIFIER_LABELS

# Variable: WINDOWS\_MODIFIER\_LABELS

```ts
const WINDOWS_MODIFIER_LABELS: Record<CanonicalModifier | "Mod", string>;
```

Defined in: [constants.ts:548](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/constants.ts#L548)

Modifier key labels for Windows/Linux display.

Used by formatting functions to display hotkeys with standard text labels
(e.g., 'Ctrl' for Control, 'Win' for Meta/Windows key) instead of symbols.
This provides a familiar Windows/Linux look and feel in hotkey displays.

## Example

```ts
STANDARD_MODIFIER_LABELS['Control'] // 'Ctrl'
STANDARD_MODIFIER_LABELS['Meta'] // 'Win'
STANDARD_MODIFIER_LABELS['Alt'] // 'Alt'
STANDARD_MODIFIER_LABELS['Shift'] // 'Shift'
```
