mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -05:00
Implement bar option: separator_symbol
This commit is contained in:
parent
1825cf32bf
commit
2fd7dd64ec
4 changed files with 25 additions and 1 deletions
|
|
@ -43,6 +43,7 @@ static void free_bar(struct bar_config *bar) {
|
|||
free(bar->hidden_state);
|
||||
free(bar->status_command);
|
||||
free(bar->font);
|
||||
free(bar->separator_symbol);
|
||||
int i;
|
||||
for (i = 0; i < bar->bindings->length; ++i) {
|
||||
free_sway_mouse_binding(bar->bindings->items[i]);
|
||||
|
|
@ -570,6 +571,7 @@ struct bar_config *default_bar_config(void) {
|
|||
bar->font = strdup("monospace 10");
|
||||
bar->height = -1;
|
||||
bar->workspace_buttons = true;
|
||||
bar->separator_symbol = NULL;
|
||||
bar->strip_workspace_numbers = false;
|
||||
bar->binding_mode_indicator = true;
|
||||
bar->tray_padding = 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue