Install package i3ipc with pip, and run the following script to make current window fullscreen:
import i3ipc
i3 = i3ipc.Connection()
tree = i3.get_tree()
cur = tree.find_focused()
cur.command('fullscreen')
Ref:
Install package i3ipc with pip, and run the following script to make current window fullscreen:
import i3ipc
i3 = i3ipc.Connection()
tree = i3.get_tree()
cur = tree.find_focused()
cur.command('fullscreen')
Ref: