Change fullscreen shortcut

This commit is contained in:
Wilfried OLLIVIER 2024-07-02 09:40:29 +02:00
parent 506f2893f6
commit b0944fefb7

2
rc.lua
View file

@ -389,7 +389,7 @@ globalkeys = gears.table.join(
)
clientkeys = gears.table.join(
awful.key({ modkey }, "f", function(c)
awful.key({ mod4, modkey }, "f", function(c)
c.fullscreen = not c.fullscreen
c:raise()
end, { description = "toggle fullscreen", group = "client" }),