2023-12-28 04:18:32 -05:00
|
|
|
-- Binds related to screens
|
|
|
|
|
|
|
|
globalkeys = Gears.table.join(
|
2024-01-09 20:38:24 -05:00
|
|
|
globalkeys,
|
2023-12-28 04:18:32 -05:00
|
|
|
|
2024-01-09 20:38:24 -05:00
|
|
|
Awful.key({ Modkey }, 'h', function()
|
|
|
|
Awful.screen.focus_relative(-1)
|
|
|
|
end, {
|
|
|
|
description = 'focus previous screen',
|
|
|
|
group = 'screen',
|
|
|
|
}),
|
2023-12-28 04:18:32 -05:00
|
|
|
|
2024-01-09 20:38:24 -05:00
|
|
|
Awful.key({ Modkey }, 'l', function()
|
|
|
|
Awful.screen.focus_relative(1)
|
|
|
|
end, {
|
|
|
|
description = 'focus next screen',
|
|
|
|
group = 'screen',
|
|
|
|
})
|
2023-12-28 04:18:32 -05:00
|
|
|
)
|