Skip to content

Commit

Permalink
example.rc.lua: Fix bug in client keys table
Browse files Browse the repository at this point in the history
Signed-off-by: Perry Hargrave <resixian@gmail.com>
  • Loading branch information
Perry Hargrave committed Jan 9, 2012
1 parent ae5792e commit 79d2e2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example.rc.lua
Expand Up @@ -387,8 +387,7 @@ globalkeys = awful.util.table.join(

-- Client awful tagging: this is useful to tag some clients and then do stuff
-- like move to tag on them
clientkeys =
{
clientkeys = awful.util.table.join(
awful.key({modkey,}, "f", function(c) c.fullscreen = not c.fullscreen end),
awful.key({modkey, "Shift"}, "c", function(c) c:kill() end),
awful.key({modkey, "Control"}, "space", awful.client.floating.toggle),
Expand All @@ -401,8 +400,9 @@ clientkeys =
function(c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end),
}
end)
)

-- SHIFTY: assign client keys to shifty for use in
-- match() function(manage hook)
shifty.config.clientkeys = clientkeys
Expand Down

0 comments on commit 79d2e2b

Please sign in to comment.