Compare commits
3 Commits
de13fa6bcb
...
01e1b307f1
Author | SHA1 | Date |
---|---|---|
Mark | 01e1b307f1 | |
Mark | 392d75f182 | |
Mark | 4427954ba0 |
|
@ -36,6 +36,32 @@ 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",
|
awful.key( {"Mod4", "Shift"}, "c",
|
||||||
function (c)
|
function (c)
|
||||||
c:kill()
|
c:kill()
|
||||||
|
|
|
@ -158,30 +158,6 @@ 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",
|
awful.key( {"Mod4", "Shift"}, "j",
|
||||||
function ()
|
function ()
|
||||||
|
|
|
@ -129,14 +129,14 @@ config.core = {
|
||||||
"firefox-developer-edition",
|
"firefox-developer-edition",
|
||||||
"firefox_dev"
|
"firefox_dev"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"thunderbird",
|
|
||||||
"thunderbird"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"code",
|
"code",
|
||||||
"code"
|
"code"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"thunderbird",
|
||||||
|
"thunderbird"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"signal-desktop",
|
"signal-desktop",
|
||||||
"signal"
|
"signal"
|
||||||
|
|
Loading…
Reference in New Issue