mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
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:
parent
5c6240a906
commit
6a9930f451
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user