Fixed keybinds

master
Mark 2022-04-24 19:02:47 -07:00
parent f9fb13ed40
commit 31860921fa
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
return gears.table.join(
awful.key( {}, "XF86MonBrightnessUp",
function ()
bck.backlight_up()
bck:backlight_up()
end,
{
description = "Raise brightness",
@ -11,7 +11,7 @@ return gears.table.join(
awful.key( {}, "XF86MonBrightnessDown",
function ()
bck.backlight_down()
bck:backlight_down()
end,
{
description = "Lower brightness",

View File

@ -1,7 +1,7 @@
return gears.table.join(
awful.key( {}, "XF86AudioRaiseVolume",
function ()
vol:up()
vol:volume_up()
end,
{
description = "Volume up",
@ -11,7 +11,7 @@ return gears.table.join(
awful.key( {}, "XF86AudioLowerVolume",
function ()
vol:down()
vol:volume_down()
end,
{
description = "Volume down",
@ -21,7 +21,7 @@ return gears.table.join(
awful.key( {}, "XF86AudioMute",
function ()
vol:togglemute()
vol:toggle_mute()
end,
{
description = "Mute",