2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
2018-11-10 23:55:06 +11:00
|
|
|
#include "util.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_wrap_scroll(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "wrap_scroll", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
2019-05-17 08:56:58 +10:00
|
|
|
config->current_bar->wrap_scroll =
|
2018-11-10 23:55:06 +11:00
|
|
|
parse_boolean(argv[0], config->current_bar->wrap_scroll);
|
|
|
|
if (config->current_bar->wrap_scroll) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Enabling wrap scroll on bar: %s",
|
2018-11-10 23:55:06 +11:00
|
|
|
config->current_bar->id);
|
|
|
|
} else {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Disabling wrap scroll on bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|