示例#1
0
文件: focus.py 项目: tronje/dotfiles
def create_tmp(current_id):
    """Create a temporary window"""

    i3.focus(con_id=current_id, title="tmp_window")
    i3.split('vertical')

    # we don't want the tmp window to have a border
    opts = ["border none"]

    i3.open(*opts)
示例#2
0
def create_tmp(current_id):
    i3.focus(con_id=current_id)
    i3.split('vertical')
    i3.open()
示例#3
0
def create_tmp(current_id):
    i3.focus(con_id=current_id)
    i3.split('vertical')
    i3.open()