Fixed buggy bug UwU
This commit is contained in:
parent
2764b00062
commit
a359143e8b
1 changed files with 9 additions and 10 deletions
|
@ -278,14 +278,6 @@ globalkeys = gears.table.join(
|
|||
{description = "focus the previous screen", group = "screen"}),
|
||||
awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
|
||||
{description = "jump to urgent client", group = "client"}),
|
||||
awful.key({ modkey, }, "Tab",
|
||||
function (c)
|
||||
awful.client.focus.history.previous()
|
||||
if c.focus then
|
||||
c.focus:raise()
|
||||
end
|
||||
end,
|
||||
{description = "go back", group = "client"}),
|
||||
awful.key({modkey, "Control" }, "q", function () awful.spawn("systemctl suspend") end,
|
||||
{description = "suspend the session", group = "awesome"}),
|
||||
|
||||
|
@ -391,8 +383,15 @@ clientkeys = gears.table.join(
|
|||
function (c)
|
||||
awful.titlebar.toggle(c)
|
||||
end,
|
||||
{description = "toggle titlebar", group = "client"})
|
||||
|
||||
{description = "toggle titlebar", group = "client"}),
|
||||
awful.key({ modkey, }, "Tab",
|
||||
function (c)
|
||||
awful.client.focus.history.previous()
|
||||
if c.focus then
|
||||
c.focus:raise()
|
||||
end
|
||||
end,
|
||||
{description = "go back", group = "client"})
|
||||
)
|
||||
|
||||
-- Bind all key numbers to tags.
|
||||
|
|
Loading…
Reference in a new issue