diff options
author | Tim Keller <tjkeller.xyz> | 2025-04-12 20:35:43 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-04-12 20:35:43 -0500 |
commit | 90b9dcd2eddbbdee50f6ed3b974450706142f16a (patch) | |
tree | 952cd326994846200492c6ca1a2303cc1cbf3c4d /keybindings.lua | |
parent | 98060b5004fff8889d352667c130d89c21459f9f (diff) | |
download | awesome-90b9dcd2eddbbdee50f6ed3b974450706142f16a.tar.xz awesome-90b9dcd2eddbbdee50f6ed3b974450706142f16a.zip |
fix floating layout and classiclayout module
Diffstat (limited to 'keybindings.lua')
-rw-r--r-- | keybindings.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keybindings.lua b/keybindings.lua index b6bd76d..611e1ff 100644 --- a/keybindings.lua +++ b/keybindings.lua @@ -64,6 +64,7 @@ globalkeys = gears.table.join( key(w , "m", function () awful.layout.set(awful.layout.suit.max) end, { group = "layout" , description = "change to max layout" }), key(w , "t", function () awful.layout.set(awful.layout.suit.tile) end, { group = "layout" , description = "change to tile layout" }), key(w , "b", function () awful.layout.set(awful.layout.suit.tile.bottom) end, { group = "layout" , description = "change to tile bottom layout" }), + key(w , "f", function () awful.layout.set(awful.layout.suit.floating) end, { group = "layout" , description = "change to floating layout" }), key(w , "r", function () awful.screen.focused().mypromptbox:run() end, { group = "launcher", description = "run prompt" }), key(w , "p", function () menubar.show() end, { group = "launcher", description = "show the menubar" }), -- PC Controls |