mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Add support for workspace_min_width bar option.
This commit is contained in:
parent
657587964e
commit
989123a2a5
13 changed files with 74 additions and 3 deletions
|
@ -270,6 +270,12 @@ static bool ipc_parse_config(
|
|||
config->workspace_buttons = json_object_get_boolean(workspace_buttons);
|
||||
}
|
||||
|
||||
json_object *workspace_min_width =
|
||||
json_object_object_get(bar_config, "workspace_min_width");
|
||||
if (workspace_min_width) {
|
||||
config->workspace_min_width = json_object_get_int(workspace_min_width);
|
||||
}
|
||||
|
||||
json_object *wrap_scroll = json_object_object_get(bar_config, "wrap_scroll");
|
||||
if (wrap_scroll) {
|
||||
config->wrap_scroll = json_object_get_boolean(wrap_scroll);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue