aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-10-23 09:09:29 +0200
committerGitHub <noreply@github.com>2018-10-23 09:09:29 +0200
commit7583b0b8a50eab789f758feb9851f4734e0884ed (patch)
tree8d6c3984f3206187c036047dd79c59e3ba62972a /sway
parent5c6240a906df91625dc0ea2c0a7a258ca0fd2487 (diff)
parent6a9930f451063535aee4ffa060cb5cb7b250848d (diff)
Merge pull request #2936 from RedSoxFan/fix-swaynag-command
cmd_swaynag_command: fix typo in variable
Diffstat (limited to 'sway')
-rw-r--r--sway/commands/swaynag_command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/swaynag_command.c b/sway/commands/swaynag_command.c
index 6c86f1a7..5e54504c 100644
--- a/sway/commands/swaynag_command.c
+++ b/sway/commands/swaynag_command.c
@@ -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 {