You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my i3 config I have set
focus_wrapping workspace
This will limit the focus to windows inside the workspace and restrict focusing windows/containers in the next output, but focus will wrap after last window.
Is there any way I can detect that focus was / or will wrapped to previous windows? for example just before or after calling i3ipc.command("focus right")
Thanks
The text was updated successfully, but these errors were encountered:
The ipc doesn't give you any info on what window was focused after the command is issued. You'll need to do another command to get the focused window with i3.get_tree().find_focused().
In my i3 config I have set
focus_wrapping workspace
This will limit the focus to windows inside the workspace and restrict focusing windows/containers in the next output, but focus will wrap after last window.
Is there any way I can detect that focus was / or will wrapped to previous windows? for example just before or after calling i3ipc.command("focus right")
Thanks
The text was updated successfully, but these errors were encountered: