1
0
Fork 0
forked from wry/wry

config: allow disabling the built-in bar

This commit is contained in:
Julian Orth 2025-07-17 22:31:16 +02:00
parent 224f5380fe
commit 08e7e01d0e
16 changed files with 156 additions and 14 deletions

View file

@ -133,6 +133,9 @@ impl ActionParser<'_> {
"unpin-float" => SetFloatPinned(false),
"toggle-float-pinned" => ToggleFloatPinned,
"kill-client" => KillClient,
"show-bar" => ShowBar(true),
"hide-bar" => ShowBar(false),
"toggle-bar" => ToggleBar,
_ => {
return Err(
ActionParserError::UnknownSimpleAction(string.to_string()).spanned(span)

View file

@ -132,6 +132,7 @@ impl Parser for ConfigParser<'_> {
window_rules_val,
pointer_revert_key_str,
use_hardware_cursor,
show_bar,
),
) = ext.extract((
(
@ -179,6 +180,7 @@ impl Parser for ConfigParser<'_> {
opt(val("windows")),
recover(opt(str("pointer-revert-key"))),
recover(opt(bol("use-hardware-cursor"))),
recover(opt(bol("show-bar"))),
),
))?;
let mut keymap = None;
@ -494,6 +496,7 @@ impl Parser for ConfigParser<'_> {
window_rules,
pointer_revert_key,
use_hardware_cursor: use_hardware_cursor.despan(),
show_bar: show_bar.despan(),
})
}
}