Compare commits
No commits in common. "01e1b307f103a899a3a2fa370ab8925ba75a8961" and "de13fa6bcb8543a3db41c99126e11f8ffd19c5a1" have entirely different histories.
01e1b307f1
...
de13fa6bcb
|
@ -36,32 +36,6 @@ return gears.table.join(
|
|||
}
|
||||
),
|
||||
|
||||
|
||||
|
||||
|
||||
awful.key( {"Mod4"}, "Right",
|
||||
function ()
|
||||
awful.client.focus.byidx(1)
|
||||
end,
|
||||
{
|
||||
description = "Focus next",
|
||||
group = "Client"
|
||||
}
|
||||
),
|
||||
|
||||
awful.key( {"Mod4"}, "Left",
|
||||
function ()
|
||||
awful.client.focus.byidx(-1)
|
||||
end,
|
||||
{
|
||||
description = "Focus previous",
|
||||
group = "Client"
|
||||
}
|
||||
),
|
||||
|
||||
|
||||
|
||||
|
||||
awful.key( {"Mod4", "Shift"}, "c",
|
||||
function (c)
|
||||
c:kill()
|
||||
|
|
|
@ -158,6 +158,30 @@ return gears.table.join(
|
|||
}
|
||||
),
|
||||
|
||||
|
||||
|
||||
-- Clients
|
||||
awful.key( {"Mod4"}, "Left",
|
||||
function ()
|
||||
awful.client.focus.byidx( 1)
|
||||
end,
|
||||
{
|
||||
description = "Focus next",
|
||||
group = "Client"
|
||||
}
|
||||
),
|
||||
|
||||
awful.key( {"Mod4"}, "Right",
|
||||
function ()
|
||||
awful.client.focus.byidx(-1)
|
||||
end,
|
||||
{
|
||||
description = "Focus previous",
|
||||
group = "Client"
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
--[[
|
||||
awful.key( {"Mod4", "Shift"}, "j",
|
||||
function ()
|
||||
|
|
|
@ -129,14 +129,14 @@ config.core = {
|
|||
"firefox-developer-edition",
|
||||
"firefox_dev"
|
||||
},
|
||||
{
|
||||
"code",
|
||||
"code"
|
||||
},
|
||||
{
|
||||
"thunderbird",
|
||||
"thunderbird"
|
||||
},
|
||||
{
|
||||
"code",
|
||||
"code"
|
||||
},
|
||||
{
|
||||
"signal-desktop",
|
||||
"signal"
|
||||
|
|
Loading…
Reference in New Issue