diff options
| author | Blista Kanjo | 2021-10-12 11:04:25 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2021-10-12 11:04:25 -0400 |
| commit | acb633306abfb0f86b8f68324078d627ba3811dc (patch) | |
| tree | 285e778c4712a348e85bb7f54c28e4e04abf46b4 /awesome | |
| parent | f59f2feccb513c60fbeadddb42f78b239ff379a3 (diff) | |
changed the always on top keybinding
Diffstat (limited to 'awesome')
| -rw-r--r-- | awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 73990fa..896cef7 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -389,7 +389,7 @@ clientkeys = gears.table.join( {description = "toggle floating", group = "client"}), -- Sticky Window and Always on top toggle - awful.key({"Control", }, "space", function(c) c.ontop = not c.ontop end, + awful.key({modkey, "Mod1" }, ".", function(c) c.ontop = not c.ontop end, {description = "toggle always on top", group = "client"}), awful.key({ modkey, "Mod1" }, "slash", function (c) c.sticky = not c.sticky end, {description = "toggle sticky", group = "client"}), |
