diff options
author | head-gardener <[email protected]> | 2023-03-12 10:20:50 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2023-03-12 03:20:50 -0400 |
commit | ac31a612164828ca6ae5478332eee3cd2317ffdc (patch) | |
tree | 6d76f04b672818d527f277fe632377e0a673e06f /include | |
parent | 3b101734e67a0966026533ad224d9afa3672e434 (diff) |
feature: hide separator between titlebar and content (#91)
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/commands.h | 1 | ||||
-rw-r--r-- | include/sway/config.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index 68b316b4..84d44e27 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -201,6 +201,7 @@ sway_cmd cmd_title_align; sway_cmd cmd_title_format; sway_cmd cmd_titlebar_border_thickness; sway_cmd cmd_titlebar_padding; +sway_cmd cmd_titlebar_separator; sway_cmd cmd_unbindcode; sway_cmd cmd_unbindswitch; sway_cmd cmd_unbindgesture; diff --git a/include/sway/config.h b/include/sway/config.h index 77df2568..60c810e1 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -487,6 +487,7 @@ struct sway_config { bool shadows_on_csd_enabled; int shadow_blur_sigma; float shadow_color[4]; + bool titlebar_separator; char *swaynag_command; struct swaynag_instance swaynag_config_errors; |