THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#685 - keyboard access to minimized windows
User who did this - Matthias Schroeder (murphy42)

----------
i fire up my client menu with the binding:

awful.key(modkey_appl,  "space", function () awful.menu.clients({ width= 250 }, 
{ keygrabber=true }) end),

this shows me all clients including minimized - and i can pick one with the 
cursorkeys.

I also sort the clients menu, for me its more readable:

diff --git a/lib/awful/menu.lua.in b/lib/awful/menu.lua.in
index 772f214..b9d9b04 100644
--- a/lib/awful/menu.lua.in
+++ b/lib/awful/menu.lua.in
@@ -288,6 +300,7 @@ function clients(menu, args)
                              c.icon }
    end

+    table.sort( cls_t, function (a,b) return (a[1]:lower():gsub("[^a-z ]", '') < 
b[1]:lower():gsub("[^a-z ]", '')) end )
    if not menu then
        menu = {}
    end
@@ -300,7 +313,7 @@ function clients(menu, args)
end

----------

More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=685#comment2266

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

--
To unsubscribe, send mail to [email protected].

Reply via email to