aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/scratchpad.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/scratchpad.c')
-rw-r--r--sway/commands/scratchpad.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c
new file mode 100644
index 00000000..8a529cb4
--- /dev/null
+++ b/sway/commands/scratchpad.c
@@ -0,0 +1,37 @@
1#include "log.h"
2#include "sway/commands.h"
3#include "sway/config.h"
4#include "sway/scratchpad.h"
5#include "sway/server.h"
6#include "sway/tree/container.h"
7
8struct cmd_results *cmd_scratchpad(int argc, char **argv) {
9 struct cmd_results *error = NULL;
10 if ((error = checkarg(argc, "scratchpad", EXPECTED_EQUAL_TO, 1))) {
11 return error;
12 }
13 if (strcmp(argv[0], "show") != 0) {
14 return cmd_results_new(CMD_INVALID, "scratchpad",
15 "Expected 'scratchpad show'");
16 }
17 if (!server.scratchpad->length) {
18 return cmd_results_new(CMD_INVALID, "scratchpad",
19 "Scratchpad is empty");
20 }
21
22 if (config->handler_context.using_criteria) {
23 // If using criteria, this command is executed for every container which
24 // matches the criteria. If this container isn't in the scratchpad,
25 // we'll just silently return a success.
26 struct sway_container *con = config->handler_context.current_container;
27 wlr_log(WLR_INFO, "cmd_scratchpad(%s)", con->name);
28 if (!con->scratchpad) {
29 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
30 }
31 scratchpad_toggle_container(con);
32 } else {
33 scratchpad_toggle_auto();
34 }
35
36 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
37}