diff options
Diffstat (limited to 'rc.lua')
-rw-r--r-- | rc.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -476,7 +476,9 @@ clientkeys = gears.table.join( c:kill() end, {description = "close", group = "client"}), - awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , + awful.key({ modkey, "Control" }, "space", function (c) + c.floating = not c.floating + end, {description = "toggle floating", group = "client"}), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) @@ -616,7 +618,7 @@ awful.rules.rules = { "pinentry", }, class = { - "mpv", + --"mpv", "sphtop", "spterm", "sppmxr", |