cmd_swaynag_command: fix typo in variable

The custom swaynag_command was being stored as config->swaybg_command
instead of config->swaynag_command.
This commit is contained in:
Brian Ashworth 2018-10-22 21:19:22 -04:00
parent 5c6240a906
commit 6a9930f451

View File

@ -14,7 +14,7 @@ struct cmd_results *cmd_swaynag_command(int argc, char **argv) {
char *new_command = join_args(argv, argc);
if (strcmp(new_command, "-") != 0) {
config->swaybg_command = new_command;
config->swaynag_command = new_command;
wlr_log(WLR_DEBUG, "Using custom swaynag command: %s",
config->swaynag_command);
} else {