Skip to content

Commit

Permalink
docs(keys): keyboard layout docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzy000 committed Jan 20, 2025
1 parent 5b4e0f8 commit dced021
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 18 deletions.
6 changes: 5 additions & 1 deletion docs/Compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ cargo build --release --no-default-features \
> ⚠ Make sure you enable at least one `config` feature otherwise you will not be able to start the bar!
| Feature | Description |
|---------------------|-----------------------------------------------------------------------------------|
| ------------------- | --------------------------------------------------------------------------------- |
| **Core** | |
| http | Enables HTTP features. Currently this includes the ability to load remote images. |
| ipc | Enables the IPC server. |
Expand All @@ -101,6 +101,10 @@ cargo build --release --no-default-features \
| clipboard | Enables the `clipboard` module. |
| clock | Enables the `clock` module. |
| focused | Enables the `focused` module. |
| keys | Enables the `keys` module without keyboard layout support. |
| keys+all | Enables the `keys` module with keyboard layout support for all compositors. |
| keys+sway | Enables the `keys` module with keyboard layout support for Sway. |
| keys+hyprland | Enables the `keys` module with keyboard layout support for Hyprland. |
| launcher | Enables the `launcher` module. |
| music+all | Enables the `music` module with support for all player types. |
| music+mpris | Enables the `music` module with MPRIS support. |
Expand Down
53 changes: 36 additions & 17 deletions docs/modules/Keys.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
> [!NOTE]
> This module requires your user is in the `input` group.
Displays the toggle state of the capslock, num lock and scroll lock keys.
> [!IMPORTANT]
> The keyboard layout feature is only available on Sway and Hyprland.
![Screenshot of clock widget with popup open](https://f.jstanger.dev/github/ironbar/keys.png)
Displays the toggle state of the capslock, num lock and scroll lock keys, and the current keyboard layout.

![Screenshot of keys widget](https://f.jstanger.dev/github/ironbar/keys.png)

## Configuration

> Type: `keys`
| Name | Type | Default | Description |
|--------------------|-----------------------------|---------|--------------------------------------------------|
| `show_caps` | `boolean` | `true` | Whether to show capslock indicator. |
| `show_num` | `boolean` | `true` | Whether to show num lock indicator. |
| `show_scroll` | `boolean` | `true` | Whether to show scroll lock indicator. |
| `icon_size` | `integer` | `32` | Size to render icon at (image icons only). |
| `icons.caps_on` | `string` or [image](images) | `󰪛` | Icon to show for enabled capslock indicator. |
| `icons.caps_off` | `string` or [image](images) | `''` | Icon to show for disabled capslock indicator. |
| `icons.num_on` | `string` or [image](images) | `` | Icon to show for enabled num lock indicator. |
| `icons.num_off` | `string` or [image](images) | `''` | Icon to show for disabled num lock indicator. |
| `icons.scroll_on` | `string` or [image](images) | `` | Icon to show for enabled scroll lock indicator. |
| `icons.scroll_off` | `string` or [image](images) | `''` | Icon to show for disabled scroll lock indicator. |
| `seat` | `string` | `seat0` | ID of the Wayland seat to attach to. |
| Name | Type | Default | Description |
| ------------------ | ------------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------- |
| `show_caps` | `boolean` | `true` | Whether to show capslock indicator. |
| `show_num` | `boolean` | `true` | Whether to show num lock indicator. |
| `show_scroll` | `boolean` | `true` | Whether to show scroll lock indicator. |
| `icon_size` | `integer` | `32` | Size to render icon at (image icons only). |
| `icons.caps_on` | `string` or [image](images) | `󰪛` | Icon to show for enabled capslock indicator. |
| `icons.caps_off` | `string` or [image](images) | `''` | Icon to show for disabled capslock indicator. |
| `icons.num_on` | `string` or [image](images) | `` | Icon to show for enabled num lock indicator. |
| `icons.num_off` | `string` or [image](images) | `''` | Icon to show for disabled num lock indicator. |
| `icons.scroll_on` | `string` or [image](images) | `` | Icon to show for enabled scroll lock indicator. |
| `icons.scroll_off` | `string` or [image](images) | `''` | Icon to show for disabled scroll lock indicator. |
| `icons.layout_map` | `Map<string, string or image>` | `{}` | Map of icons or labels to show for a particular keyboard layout. Layouts use their actual name if not present in the map. |
| `seat` | `string` | `seat0` | ID of the Wayland seat to attach to. |

<details>
<summary>JSON</summary>
Expand All @@ -33,7 +37,11 @@ Displays the toggle state of the capslock, num lock and scroll lock keys.
"type": "keys",
"show_scroll": false,
"icons": {
"caps_on": "󰪛"
"caps_on": "󰪛",
"layout_map": {
"English (US)": "🇺🇸",
"Ukrainian": "🇺🇦"
}
}
}
]
Expand All @@ -52,6 +60,10 @@ show_scroll = false

[end.icons]
caps_on = "󰪛"

[end.icons.layout_map]
"English (US)" = "🇺🇸"
Ukrainian = "🇺🇦"
```

</details>
Expand All @@ -65,6 +77,10 @@ end:
show_scroll: false
icons:
caps_on: 󰪛
layout_map:
"English (US)": 🇺🇸
Ukrainian: 🇺🇦

```

</details>
Expand All @@ -79,6 +95,8 @@ end = [
type = "keys"
show_scroll = false
icons.caps_on = "󰪛"
icons.layout_map.'English (US)' = "🇺🇸"
icons.layout_map.Ukrainian = "🇺🇦"
}
]
}
Expand All @@ -89,13 +107,14 @@ end = [
## Styling

| Selector | Description |
|------------------------|--------------------------------------------|
| ---------------------- | ------------------------------------------ |
| `.keys` | Keys box container widget. |
| `.keys .key` | Individual key indicator container widget. |
| `.keys .key.enabled` | Key indicator where key is toggled on. |
| `.keys .key.caps` | Capslock key indicator. |
| `.keys .key.num` | Num lock key indicator. |
| `.keys .key.scroll` | Scroll lock key indicator. |
| `.keys .layout` | Keyboard layout indicator. |
| `.keys .key.image` | Key indicator image icon. |
| `.keys .key.text-icon` | Key indicator textual icon. |

Expand Down

0 comments on commit dced021

Please sign in to comment.