Skip to content

Commit

Permalink
awesomerc: add Mod4+n to minimize
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Danjou <[email protected]>
  • Loading branch information
jd committed Aug 25, 2009
1 parent b91ebd1 commit f3e527e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion awesomerc.lua.in
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ clientkeys = awful.util.table.join(
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
awful.key({ modkey,}, "m",
awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
Expand Down
2 changes: 2 additions & 0 deletions manpages/awesome.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ Clients
Redraw the focused window.
*Mod4 \+ m*::
Maximize client.
*Mod4 + n*::
Minimize client.
*Mod4 \+ f*::
Set client fullscreen.
*Mod4 \+ Shift \+ c*::
Expand Down

0 comments on commit f3e527e

Please sign in to comment.