summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index eca6fbe..e205ed2 100644
--- a/rc.lua
+++ b/rc.lua
@@ -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",