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)
def create_tmp(current_id): i3.focus(con_id=current_id) i3.split('vertical') i3.open()