示例#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)))
示例#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)))
示例#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))
示例#4
0
文件: test.py 项目: Adaephon-GH/i3-py
 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)
示例#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)