Compare commits

...

3 Commits

Author SHA1 Message Date
Mark 01e1b307f1
Merge branch 'master' of ssh://git.betalupi.com:33/Mark/awesomewm 2023-10-10 11:29:02 -07:00
Mark 392d75f182
Fixed keybinds 2023-10-10 11:27:45 -07:00
Mark 4427954ba0
Default config edits 2023-10-10 11:27:19 -07:00
3 changed files with 30 additions and 28 deletions

View File

@ -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()

View File

@ -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 ()

View File

@ -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"