aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2021-02-03 18:33:12 +0100
committerOrestis Floros <orestisflo@gmail.com>2021-02-06 11:00:16 +0100
commit8ff8db3c367ea40620c0f2bc737eec61883669d6 (patch)
tree618c99cedfa3927171e63c126c5b5fdfde359bcf /include
parentf2243a7a908b96d2bd199c6d0668f347bbb67a1c (diff)
downloadi3-8ff8db3c367ea40620c0f2bc737eec61883669d6.tar.gz
i3-8ff8db3c367ea40620c0f2bc737eec61883669d6.zip
Accept multiple outputs in `move container|workspace to output`
Fixes #4337
Diffstat (limited to 'include')
-rw-r--r--include/commands.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/commands.h b/include/commands.h
index 7a1877a1..47ac5dbf 100644
--- a/include/commands.h
+++ b/include/commands.h
@@ -138,7 +138,7 @@ void cmd_mode(I3_CMD, const char *mode);
* Implementation of 'move [window|container] [to] output <str>'.
*
*/
-void cmd_move_con_to_output(I3_CMD, const char *name);
+void cmd_move_con_to_output(I3_CMD, const char *name, bool move_workspace);
/**
* Implementation of 'move [window|container] [to] mark <str>'.
@@ -153,12 +153,6 @@ void cmd_move_con_to_mark(I3_CMD, const char *mark);
void cmd_floating(I3_CMD, const char *floating_mode);
/**
- * Implementation of 'move workspace to [output] <str>'.
- *
- */
-void cmd_move_workspace_to_output(I3_CMD, const char *name);
-
-/**
* Implementation of 'split v|h|t|vertical|horizontal|toggle'.
*
*/