Last active
January 4, 2023 11:27
-
-
Save windwp/b46e8bdeac793867b34d2191e66a6f44 to your computer and use it in GitHub Desktop.
i3-swallow used to swallow a terminal window in i3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
#----------------------------------------------- | |
# used to swallow a terminal window in i3 | |
# | |
# INSTALL | |
# Install python 3 and install i3ipc libary | |
# pip3 install i3ipc | |
# download this scrript and put it to your i3 config folder and run | |
# chmod +x $HOME/.config/i3/i3-swallow.py | |
# python3 $HOME/.config/i3/i3-swallow.py | |
# | |
# You can add this script to your i3 config file. | |
# exec --no-startup-id python3 $HOME/.config/i3/i3-swallow.py | |
# reload i3 and try run xclock | |
#---------------------------------------------------- | |
import i3ipc | |
import subprocess | |
swallowDict={} | |
i3 = i3ipc.Connection() | |
def hideSwallowParent(node, windowId, swallowId): | |
if(str(node.window) == str(windowId)): | |
global swallowDict | |
i3.command('[con_id=%s] focus' % swallowId) | |
i3.command('[con_id=%s] move to scratchpad' % node.id) | |
swallowDict[str(swallowId)] = { | |
"id": node.id, "layout": node.parent.layout} | |
return True | |
for node in node.nodes: | |
if(hideSwallowParent(node, windowId, swallowId)): | |
return True | |
return False | |
def getParentNodePid(node): | |
# get parent of pid because terminal spwan shell(zsh or fish) and then spawn that child process | |
output = subprocess.getoutput( | |
"ps -o ppid= -p $(ps -o ppid= -p $(xprop -id %d _NET_WM_PID | cut -d' ' -f3 ))" % (node.window)) | |
return output | |
def getWindowIdfromPId(pid): | |
output = subprocess.getoutput("xdotool search -pid %s" % pid) | |
return output | |
def on_new(self, event): | |
workspace = i3.get_tree().find_focused().workspace() | |
# if we can find parent have pid container map to any node in workspace we will hide it | |
parentContainerPid = getParentNodePid(event.container) | |
parentContainerWid = getWindowIdfromPId(parentContainerPid) | |
for item in workspace.nodes: | |
hideSwallowParent(item, parentContainerWid, event.container.id) | |
def on_close(self, event): | |
global swallowDict | |
swallow = swallowDict.get(str(event.container.id)) | |
if swallow != None: | |
window = i3.get_tree().find_by_id(swallow["id"]) | |
if window != None: | |
del swallowDict[str(event.container.id)] | |
event.container.command( | |
'[con_id=%s] scratchpad show;floating disable;focus' % (window.id)) | |
if swallow['layout'] == 'splitv': | |
event.container.command( | |
'[con_id=%s]split vertical' % (window.id)) | |
# Subscribe to events | |
i3.on("window::new", on_new) | |
i3.on("window::close",on_close) | |
i3.main() | |
@Hinigatsu you can do anything with it
btw this code is a part of another project I think you will be like it too.
https://github.com/windwp/i3-master-stack
Oh, that's nice! Thank you for the link <3
doesn't swallow
It doesn't work on sway, here's the log:
%d format: a number is required, not NoneType
Traceback (most recent call last):
File ".local/bin/i3-swallow.py", line 78, in <module>
i3.main()
File "/home/pop-os/.local/lib/python3.8/site-packages/i3ipc/connection.py", line 514, in main
raise loop_exception
File "/home/pop-os/.local/lib/python3.8/site-packages/i3ipc/connection.py", line 497, in main
while not self._event_socket_poll():
File "/home/pop-os/.local/lib/python3.8/site-packages/i3ipc/connection.py", line 477, in _event_socket_poll
raise e
File "/home/pop-os/.local/lib/python3.8/site-packages/i3ipc/connection.py", line 474, in _event_socket_poll
self._pubsub.emit(event_name, event)
File "/home/pop-os/.local/lib/python3.8/site-packages/i3ipc/_private/pubsub.py", line 28, in emit
s['handler'](self.conn, data)
File ".local/bin/i3-swallow.py", line 55, in on_new
parentContainerPid = getParentNodePid(event.container)
File ".local/bin/i3-swallow.py", line 43, in getParentNodePid
"ps -o ppid= -p $(ps -o ppid= -p $(xprop -id %d _NET_WM_PID | cut -d' ' -f3 ))" % (node.window))
TypeError: %d format: a number is required, not NoneType
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Saw this gist on Reddit! Amazing work, OP! <3
Could you proper license this code? I would love to make some tweaks and maybe even package this for distribution! You may take a look at: https://choosealicense.com/