aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome
diff options
context:
space:
mode:
authorBlista Kanjo2024-06-25 18:20:31 -0400
committerBlista Kanjo2024-06-25 18:20:31 -0400
commitf86288ad3e516da0a7e294eb52aefbd0a894ed5f (patch)
tree8318f055ee0f707137ce81d8c6a1b86a389dd0cf /.config/awesome
parent1f81664a4e34b5423d2bdb34ce408adc55ae247a (diff)
refactor: change floating anchor keybind
Diffstat (limited to '.config/awesome')
-rw-r--r--.config/awesome/rc-4.3-3.lua4
-rw-r--r--.config/awesome/rc.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/awesome/rc-4.3-3.lua b/.config/awesome/rc-4.3-3.lua
index cbe6a1a..e40a491 100644
--- a/.config/awesome/rc-4.3-3.lua
+++ b/.config/awesome/rc-4.3-3.lua
@@ -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 }, "w", awful.client.floating.toggle,
- { description = "toggle client warp (floating/tiling)", group = "client" }),
+ awful.key({ modkey }, "a", awful.client.floating.toggle,
+ { description = "toggle client anchor (floating/tiling)", group = "client" }),
-- sticky window and always on top toggle
awful.key({ modkey }, "t", function(c) c.ontop = not c.ontop end,
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index a4da707..a16050c 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -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 }, "w", awful.client.floating.toggle,
- { description = "toggle client warp (floating/tiling)", group = "client" }),
+ awful.key({ modkey }, "a", awful.client.floating.toggle,
+ { description = "toggle client anchor (floating/tiling)", group = "client" }),
-- sticky window and always on top toggle
awful.key({ modkey }, "t", function(c) c.ontop = not c.ontop end,