summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2021-04-06 11:33:23 +0200
committerache <ache@ache.one>2021-04-06 11:33:23 +0200
commitc3273cc4ff8775abd17a6b8d520657995e051f12 (patch)
tree6675969e90e15192e0feea19e45fe795458f7b84
parentBig update ! (diff)
Fix dvorak fr
-rw-r--r--rc.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/rc.lua b/rc.lua
index 17eb3a6..4f41aec 100644
--- a/rc.lua
+++ b/rc.lua
@@ -870,12 +870,20 @@ awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.ful
{description = "Maximize all clients", group = "awesome"}),
-- all minimized clients are restored
awful.key({ modkey, }, "b",
- function()
+ function(c)
+ --[[
for c in awful.client.iterate(function (x) x:raise()
return true
end) do
c.minimized=false
end
+ --]]
+ local A, B
+ A=mouse.coords()["x"]
+ B=mouse.coords()["y"]
+ mouse.coords({ x=0, y=0 })
+ c.minimized=true
+ mouse.coords({ x=A, y=B })
end),
awful.key({ modkey, }, "d",
function (c)