I’ve just installed awesome as my wm. When I do alt+tab using awesome, it just switch two apps, it’s not possible to get active the others..any idea?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default, the client sets focus to the previous window that had focus. When you alt+tab and it changes windows, the previous window is now the original window. Hence, it cycles between two windows.
To fix this, you will need to change the following:
In the default rc.lua, the section that controls window cycling looks like this:
To cycle through all the windows, and not just the previous, change the above code to the following:
That will cycle through the windows when you press
Alt+Tab, and in reverse order when you pressAlt+Shift+Tab. (The two lines beginning with--are comments, so they do not affect the outcome.)To cycle through every client on a tag, even minimized ones, you may find this function helpful:
Note that none of these solutions consider the history whatsoever, and instead will switch to the window that had focus least recently (i.e., does not consider the ordering in which windows had focus).