Translations:Awesome/61/pt-br

From Gentoo Wiki
Jump to:navigation Jump to:search
FILE ~/.config/awesome/rc.luaAlt-TAB key binding
-- {{{ Key bindings
globalkeys = awful.util.table.join(
...
    -- alt + tab
    awful.key({ "Mod1", }, "Tab",
        function ()
            awful.client.focus.history.previous()
            if client.focus then
                client.focus:raise()
            end
        end),
)
-- }}}