diff options
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c index 409afce9..62852980 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -2849,8 +2849,10 @@ static struct cmd_results *bar_cmd_position(int argc, char **argv) { } else if (strcasecmp("bottom", argv[0]) == 0) { config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; } else if (strcasecmp("left", argv[0]) == 0) { + sway_log(L_INFO, "Warning: swaybar currently only supports top and bottom positioning. YMMV"); config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_LEFT; } else if (strcasecmp("right", argv[0]) == 0) { + sway_log(L_INFO, "Warning: swaybar currently only supports top and bottom positioning. YMMV"); config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_RIGHT; } else { error = cmd_results_new(CMD_INVALID, "position", "Invalid value %s", argv[0]); |