diff options
| author | Blista Kanjo | 2024-06-28 23:41:36 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2024-06-28 23:41:36 -0400 |
| commit | 7bbfb305867570c7d43302af4c13ca8f71320bf8 (patch) | |
| tree | c65caa2f46bb0f7ff5c5e88fb4fbe1d58eb18716 /.config/awesome/rc-4.3-3.lua | |
| parent | 58d51f5ef3fbecd96e2de3002e2485eb943312bb (diff) | |
refactor: change a few keybinds
Diffstat (limited to '.config/awesome/rc-4.3-3.lua')
| -rw-r--r-- | .config/awesome/rc-4.3-3.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/awesome/rc-4.3-3.lua b/.config/awesome/rc-4.3-3.lua index e0fa1ff..1083f8d 100644 --- a/.config/awesome/rc-4.3-3.lua +++ b/.config/awesome/rc-4.3-3.lua @@ -576,7 +576,7 @@ globalkeys = gears.table.join( ) clientkeys = gears.table.join( - awful.key({ modkey, "Mod1" }, "f", + awful.key({ modkey }, "f", function(c) c.fullscreen = not c.fullscreen c:raise() @@ -592,8 +592,8 @@ clientkeys = gears.table.join( { description = "close", group = "client" }), awful.key({ modkey }, "q", function(c) c:kill() end, { description = "close", group = "client" }), - awful.key({ modkey }, "f", awful.client.floating.toggle, - { description = "toggle floating (client anchor)", group = "client" }), + awful.key({ modkey }, "space", awful.client.floating.toggle, + { description = "toggle client anchor", group = "client" }), -- sticky window and always on top toggle awful.key({ modkey }, "t", function(c) c.ontop = not c.ontop end, |
