diff options
author | Peter Palfrader <peter@palfrader.org> | 2017-03-22 10:44:00 +0100 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2017-03-22 10:44:00 +0100 |
commit | 8c67217d1dd4514a654ee79021d9d897efbd3b85 (patch) | |
tree | b1f3fe44f28b5a7c894b8da2b1e133b1787cbe76 /config | |
parent | 25874f57453892c0d7c8c22f3af7ee4f54022862 (diff) |
add fair layout
Diffstat (limited to 'config')
-rw-r--r-- | config/awesome/rc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index cc1ce49..90f3bbf 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -68,7 +68,7 @@ local layouts = -- awful.layout.suit.tile.left, awful.layout.suit.tile.bottom, -- awful.layout.suit.tile.top, - -- awful.layout.suit.fair, + awful.layout.suit.fair, -- awful.layout.suit.fair.horizontal, -- awful.layout.suit.spiral, -- awful.layout.suit.spiral.dwindle, @@ -314,6 +314,7 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "F2", function () awful.layout.set(awful.layout.suit.tile) end), awful.key({ modkey, }, "F3", function () awful.layout.set(awful.layout.suit.tile.bottom) end), awful.key({ modkey, }, "F4", function () awful.layout.set(awful.layout.suit.max) end), + awful.key({ modkey, }, "F5", function () awful.layout.set(awful.layout.suit.fair) end), awful.key({ }, "XF86AudioRaiseVolume", function () awful.spawn("amixer -q -D default sset Master 5%+", false) end), |