mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2026-03-23 05:55:12 +00:00
swap min/max keys
This commit is contained in:
parent
3d04f87baf
commit
f629c04b1d
|
|
@ -642,7 +642,7 @@ end, {
|
||||||
end, {
|
end, {
|
||||||
description = "min/max all windows",
|
description = "min/max all windows",
|
||||||
group = "client"
|
group = "client"
|
||||||
}), awful.key({altkey, "Control"}, "m", function()
|
}), awful.key({altkey, "Control"}, "n", function()
|
||||||
for _, cl in ipairs(mouse.screen.selected_tag:clients()) do
|
for _, cl in ipairs(mouse.screen.selected_tag:clients()) do
|
||||||
local c = cl
|
local c = cl
|
||||||
if c then
|
if c then
|
||||||
|
|
@ -652,7 +652,7 @@ end, {
|
||||||
end, {
|
end, {
|
||||||
description = "minimize all windows in current tag",
|
description = "minimize all windows in current tag",
|
||||||
group = "client"
|
group = "client"
|
||||||
}), awful.key({altkey, "Control"}, "n", function()
|
}), awful.key({altkey, "Control"}, "m", function()
|
||||||
for _, cl in ipairs(mouse.screen.selected_tag:clients()) do
|
for _, cl in ipairs(mouse.screen.selected_tag:clients()) do
|
||||||
local c = cl
|
local c = cl
|
||||||
if c then
|
if c then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue