Add playerctl keybindings

This commit is contained in:
Santiago Lo Coco 2022-08-12 10:50:11 -03:00
parent 3a03d9b138
commit 5c1cf3318b
1 changed files with 3 additions and 0 deletions

View File

@ -236,6 +236,9 @@ static Key keys[] = {
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pulsemixer --change-volume -1; sigdwmblocks 2") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pulsemixer --change-volume +1; sigdwmblocks 2") },
{ 0, XF86XK_AudioMute, spawn, SHCMD("pulsemixer --toggle-mute; sigdwmblocks 2") },
{ 0, XF86XK_AudioPlay, spawn, SHCMD("$HOME/.local/bin/playerctl play-pause") },
{ 0, XF86XK_AudioNext, spawn, SHCMD("$HOME/.local/bin/playerctl next") },
{ 0, XF86XK_AudioPrev, spawn, SHCMD("$HOME/.local/bin/playerctl previous") },
#ifdef LAPTOP
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("xbacklight -dec 5") },
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("xbacklight -inc 5") },