sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 17fb3b6994a65a7286cd21f3c25294ce5c8cceed
parent f52825336ca32c7244ce08313d8a38afe5430aa5
Author: Rouven Czerwinski <rouven@czerwinskis.de>
Date:   Fri, 19 Oct 2018 19:11:21 +0200

commands/bar: remove left and right from allowed positions

"left" and "right" are not allowed positions for swaybar, remove them.

Diffstat:
Msway/commands/bar/position.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/bar/position.c b/sway/commands/bar/position.c @@ -12,7 +12,7 @@ struct cmd_results *bar_cmd_position(int argc, char **argv) { if (!config->current_bar) { return cmd_results_new(CMD_FAILURE, "position", "No bar defined."); } - char *valid[] = { "top", "bottom", "left", "right" }; + char *valid[] = { "top", "bottom" }; for (size_t i = 0; i < sizeof(valid) / sizeof(valid[0]); ++i) { if (strcasecmp(valid[i], argv[0]) == 0) { wlr_log(WLR_DEBUG, "Setting bar position '%s' for bar: %s",