Implement 'move [container|window] to workspace number <number>'

This commit is contained in:
Michael Stapelberg
2012-04-08 20:33:46 +02:00
parent 72078c704e
commit ad513b4799
4 changed files with 84 additions and 0 deletions

View File

@ -217,9 +217,15 @@ state MOVE_WORKSPACE:
-> MOVE_WORKSPACE_TO_OUTPUT
workspace = 'next', 'prev', 'next_on_output', 'prev_on_output'
-> call cmd_move_con_to_workspace($workspace)
'number'
-> MOVE_WORKSPACE_NUMBER
workspace = string
-> call cmd_move_con_to_workspace_name($workspace)
state MOVE_WORKSPACE_NUMBER:
number = string
-> call cmd_move_con_to_workspace_number($number)
state MOVE_TO_OUTPUT:
output = string
-> call cmd_move_con_to_output($output)