-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change Direction / Previous Windows #44
Comments
For your use case you would just use |
There's also the variant with Shift, of course. |
Yes exactly,
would also be good. |
This behavior is well established in other window managers right? As far as I can remember it was like this with WindowMaker. |
Hmm, I still fail to see what is not working as expected. FWIW here's my config for alt-tab: -- Alt-Tab: cycle through all clients on te
cyclefocus and awful.key({ altkey, }, "Tab", function(c)
cyclefocus.cycle({
display_notifications = true,
-- raise_clients = true,
modifier="Alt_L", keys={'Tab', 'ISO_Left_Tab'},
-- get_client_icon_widget = function()
-- bnote("get_client_icon_widget")
-- end,
})
end),
cyclefocus and awful.key({ altkey, "Shift" }, "Tab", function(c)
cyclefocus.cycle({
display_notifications = true,
-- raise_clients = true,
modifier='Alt_L', keys={'Tab', 'ISO_Left_Tab'},
})
end), |
Hi,
would it be somehow possible to setup this plugin in a way to cycle to the previous focus and then through all other windows?
For example the focus is on Windows W1 and when pressing 'modkey+Tab', the focus goes to W2:
After a while, I would like to go back or to W1 or to other windows in the following order:
This would be interesting for the case, where somebody needs to switch frequently between to windows (W1 and W2 in the example above), and only sometimes to the others (W3 and W4).
The text was updated successfully, but these errors were encountered: