hunterm <huntermcclai...@gmail.com> writes:

> Hello awesome users!
> I'm new to using awesome and I've never coded in Lua. Because of this,
> how can I set my rc.lua to respond to alt-tab and when it's pressed to
> cycle through the windows on the taskbar?

You should replace this:

awful.key({ modkey,           }, "j",
        function ()
            awful.client.focus.byidx( 1)
            if client.focus then client.focus:raise() end
        end),

    
with this:

awful.key({ "Mod1",           }, "Tab",
        function ()
            awful.client.focus.byidx( 1)
            if client.focus then client.focus:raise() end
        end),

Change keybindings is so simple :)

You should read the awesome wiki too:
http://awesome.naquadah.org/wiki/


-- 
Tomás Solar Castro
Be Free! http://FSFLA.org
GNU+Linux Registered User #383588
Public PGP Key: FB7590D2 (hkp://pgp.mit.edu:11371)
http://identi.ca/tsolar

Attachment: pgpD8T4iA74eE.pgp
Description: PGP signature

Reply via email to