diff options
| author | Blista Kanjo | 2024-06-28 15:51:30 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2024-06-28 15:51:30 -0400 |
| commit | fc22e53690ff4988760d58f8f10da1da3ca28b84 (patch) | |
| tree | 1c3b3a1b12694c9a694888b4b0065969f204bfed /.config/awesome/rc.lua | |
| parent | c07fc469a4c02c6d75e06979fe5cdd16e8b49d6c (diff) | |
refactor: change some keybinds for `awesome`
Diffstat (limited to '.config/awesome/rc.lua')
| -rw-r--r-- | .config/awesome/rc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 1c274d2..d7dd92c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -626,7 +626,7 @@ end) client.connect_signal("request::default_keybindings", function() awful.keyboard.append_client_keybindings({ - awful.key({ modkey }, "f", + awful.key({ modkey, "Mod1" }, "f", function(c) c.fullscreen = not c.fullscreen c:raise() @@ -642,8 +642,8 @@ client.connect_signal("request::default_keybindings", function() { description = "close", group = "client" }), awful.key({ modkey }, "q", function(c) c:kill() end, { description = "close", group = "client" }), - awful.key({ modkey }, "a", awful.client.floating.toggle, - { description = "toggle client anchor", group = "client" }), + awful.key({ modkey }, "f", awful.client.floating.toggle, + { description = "toggle floating (client anchor)", group = "client" }), -- sticky window and always on top toggle awful.key({ modkey }, "t", function(c) c.ontop = not c.ontop end, |
