Exemplo n.º 1
0
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)))
Exemplo n.º 2
0
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)))
Exemplo n.º 3
0
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))
Exemplo n.º 4
0
 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)
Exemplo n.º 5
0
 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)