summaryrefslogtreecommitdiffstats
path: root/sway/commands/bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar.c')
-rw-r--r--sway/commands/bar.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sway/commands/bar.c b/sway/commands/bar.c
index c808aef2..2a82d508 100644
--- a/sway/commands/bar.c
+++ b/sway/commands/bar.c
@@ -8,12 +8,12 @@
8 8
9// Must be in alphabetical order for bsearch 9// Must be in alphabetical order for bsearch
10static struct cmd_handler bar_handlers[] = { 10static struct cmd_handler bar_handlers[] = {
11 { "activate_button", bar_cmd_activate_button }, 11 { "bindcode", bar_cmd_bindcode },
12 { "binding_mode_indicator", bar_cmd_binding_mode_indicator }, 12 { "binding_mode_indicator", bar_cmd_binding_mode_indicator },
13 { "bindsym", bar_cmd_bindsym }, 13 { "bindsym", bar_cmd_bindsym },
14 { "colors", bar_cmd_colors }, 14 { "colors", bar_cmd_colors },
15 { "context_button", bar_cmd_context_button },
16 { "font", bar_cmd_font }, 15 { "font", bar_cmd_font },
16 { "gaps", bar_cmd_gaps },
17 { "height", bar_cmd_height }, 17 { "height", bar_cmd_height },
18 { "hidden_state", bar_cmd_hidden_state }, 18 { "hidden_state", bar_cmd_hidden_state },
19 { "icon_theme", bar_cmd_icon_theme }, 19 { "icon_theme", bar_cmd_icon_theme },
@@ -22,10 +22,13 @@ static struct cmd_handler bar_handlers[] = {
22 { "output", bar_cmd_output }, 22 { "output", bar_cmd_output },
23 { "pango_markup", bar_cmd_pango_markup }, 23 { "pango_markup", bar_cmd_pango_markup },
24 { "position", bar_cmd_position }, 24 { "position", bar_cmd_position },
25 { "secondary_button", bar_cmd_secondary_button },
26 { "separator_symbol", bar_cmd_separator_symbol }, 25 { "separator_symbol", bar_cmd_separator_symbol },
27 { "status_command", bar_cmd_status_command }, 26 { "status_command", bar_cmd_status_command },
27 { "status_edge_padding", bar_cmd_status_edge_padding },
28 { "status_padding", bar_cmd_status_padding },
29 { "strip_workspace_name", bar_cmd_strip_workspace_name },
28 { "strip_workspace_numbers", bar_cmd_strip_workspace_numbers }, 30 { "strip_workspace_numbers", bar_cmd_strip_workspace_numbers },
31 { "tray_bindsym", bar_cmd_tray_bindsym },
29 { "tray_output", bar_cmd_tray_output }, 32 { "tray_output", bar_cmd_tray_output },
30 { "tray_padding", bar_cmd_tray_padding }, 33 { "tray_padding", bar_cmd_tray_padding },
31 { "workspace_buttons", bar_cmd_workspace_buttons }, 34 { "workspace_buttons", bar_cmd_workspace_buttons },