From 30e2b1988befb661380cef80d7b0249de669e9ec Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 9 Feb 2012 21:18:36 +0100 Subject: awesome: Map super+shift+f as shortcut for floating layout --- .config/awesome/awesome.lua | 1 + 1 file changed, 1 insertion(+) (limited to '.config/awesome') diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua index df18e89..4c6d6bd 100644 --- a/.config/awesome/awesome.lua +++ b/.config/awesome/awesome.lua @@ -249,6 +249,7 @@ globalkeys = awful.util.table.join( awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end), awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end), awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end), + awful.key({ modkey, "Shift" }, "f", function () awful.layout.set(layouts[1]) end), -- Prompt awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end), -- cgit