Skip to content

Showing a window that is hidden using the keyboard? #269

Answered by bakkeby
forte97 asked this question in Q&A
Discussion options

You must be logged in to vote

There is an undocumented feature where you can use the normal focusstack to also focus on hidden windows by changing the argument to +/-2.

	{ MODKEY,                       XK_j,          focusstack,             {.i = +2 } },
	{ MODKEY,                       XK_k,          focusstack,             {.i = -2 } },

This allows you to select hidden windows in addition to normal visible windows. You can add separate keybindings for the above if you want.

It is worth noting that due to how hidden windows are in iconic state they won't be able to receive input focus, in this case the input focus will remain with the previously focused visible window.

The solution is not particularly good imho; it w…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@forte97
Comment options

Answer selected by forte97
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants