mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-11-20 07:21:54 +01:00
* Simplistic globbing for matching keyboard layout icons Update the logic for determining the display text for the current keyboard layout. Instead of a direct map lookup, iterate through the layout map to support wildcard matching. Patterns ending with `*` will match any language string starting with the characters before the `*`. This allows grouping similar layouts (e.g., `English`, `English (Colemak-DH ISO)`) under a single pattern like `English*`. * Use `IndexMap` instead of `HashMap` for keyboard layout icons map This enables users to choose which globs to prioritize via ordering in the config * Enable feature `serde` for `indexmap` * Document wildcard matching for keyboard layouts * Enable `indexmap2` feature flag for `schemars` * Add missing period * use string slices * Fix formatting |
||
|---|---|---|
| .. | ||
| clients | ||
| config | ||
| dynamic_value | ||
| image | ||
| ipc | ||
| modules | ||
| bar.rs | ||
| channels.rs | ||
| cli.rs | ||
| desktop_file.rs | ||
| error.rs | ||
| gtk_helpers.rs | ||
| ironvar.rs | ||
| logging.rs | ||
| macros.rs | ||
| main.rs | ||
| popup.rs | ||
| script.rs | ||
| style.rs | ||