def move_window_here(window): '''Does `move workspace current` on the specified window.''' return i3.msg(0, "{} move workspace current".format( i3.container(id=window)))
def move_window_here(window): '''Does `move workspace current` on the specified window.''' return i3.msg(0, "{} move workspace current".format(i3.container(id=window)))
def move_window_here(window): """Does `move workspace current` on the specified window.""" return i3.msg(0, "%s move workspace current" % i3.container(id=window))
def test_container(self): container = i3.container(title='abc', con_id=123) output = ['[title="abc" con_id="123"]', '[con_id="123" title="abc"]'] self.assertTrue(container in output)