diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-02-09 21:18:36 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-02-09 21:18:36 +0100 |
commit | 30e2b1988befb661380cef80d7b0249de669e9ec (patch) | |
tree | 5352059085e5289a4a89792b9248394058a99dbf | |
parent | 12ab9067bc8bf8093b8ba5992d9a55b29b3af482 (diff) | |
download | dotfiles-30e2b1988befb661380cef80d7b0249de669e9ec.tar.gz dotfiles-30e2b1988befb661380cef80d7b0249de669e9ec.tar.bz2 dotfiles-30e2b1988befb661380cef80d7b0249de669e9ec.zip |
awesome: Map super+shift+f as shortcut for floating layout
-rw-r--r-- | .config/awesome/awesome.lua | 1 |
1 files changed, 1 insertions, 0 deletions
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), |