aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-03-29 17:49:44 -0400
committerDrew DeVault <sir@cmpwn.com>2018-03-29 22:11:08 -0400
commit5c9cdbcdd2a07e2ced7b60d629a3e20bd7c8bf68 (patch)
tree08a5de486cfceb091b5b1faa5e8ea893bea1de57 /sway/commands
parent569b2bfd5daae5b3be49772bdca4a3f224e20629 (diff)
Add swaybg_command
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/swaybg_command.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sway/commands/swaybg_command.c b/sway/commands/swaybg_command.c
new file mode 100644
index 00000000..770d4821
--- /dev/null
+++ b/sway/commands/swaybg_command.c
@@ -0,0 +1,20 @@
+#include <string.h>
+#include "sway/commands.h"
+#include "log.h"
+#include "stringop.h"
+
+struct cmd_results *cmd_swaybg_command(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "swaybg_command", EXPECTED_AT_LEAST, 1))) {
+ return error;
+ }
+
+ if (config->swaybg_command) {
+ free(config->swaybg_command);
+ }
+ config->swaybg_command = join_args(argv, argc);
+ wlr_log(L_DEBUG, "Using custom swaybg command: %s",
+ config->swaybg_command);
+
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}