Harmonize keys
This commit is contained in:
parent
feb8e77534
commit
7c0e2f7a8b
1 changed files with 3 additions and 3 deletions
6
rc.lua
6
rc.lua
|
@ -238,7 +238,7 @@ globalkeys = gears.table.join(
|
|||
{ description = "view previous", group = "tag" }),
|
||||
awful.key({ modkey, "Shift" }, "Right", awful.tag.viewnext,
|
||||
{ description = "view next", group = "tag" }),
|
||||
awful.key({ modkey, }, "y", awful.tag.history.restore,
|
||||
awful.key({ modkey, }, "a", awful.tag.history.restore,
|
||||
{ description = "go back", group = "tag" }),
|
||||
|
||||
awful.key({ modkey, }, "j",
|
||||
|
@ -291,9 +291,9 @@ globalkeys = gears.table.join(
|
|||
{ description = "increase master width factor", group = "layout" }),
|
||||
awful.key({ modkey, }, "h", function() awful.tag.incmwfact(-0.05) end,
|
||||
{ description = "decrease master width factor", group = "layout" }),
|
||||
awful.key({ modkey, "Shift" }, "h", function() awful.tag.incnmaster(1, nil, true) end,
|
||||
awful.key({ modkey, }, "u", function() awful.tag.incnmaster(1, nil, true) end,
|
||||
{ description = "increase the number of master clients", group = "layout" }),
|
||||
awful.key({ modkey, "Shift" }, "l", function() awful.tag.incnmaster(-1, nil, true) end,
|
||||
awful.key({ modkey, }, "y", function() awful.tag.incnmaster(-1, nil, true) end,
|
||||
{ description = "decrease the number of master clients", group = "layout" }),
|
||||
awful.key({ modkey, "Control" }, "h", function() awful.tag.incncol(1, nil, true) end,
|
||||
{ description = "increase the number of columns", group = "layout" }),
|
||||
|
|
Loading…
Reference in a new issue