This commit is contained in:
Jacob 2023-06-26 16:44:10 +02:00
parent 370faf23f9
commit f63943c24d

View file

@ -236,10 +236,10 @@ static Key keys[] = {
{ KeyPress, MODIFIER1|CONTROL, -1, XK_x, incrgaps, {.i = -5 } },
/* Media buttons */
{ KeyPress, 0, -1, XF86XK_AudioMute, spawn, cmd( "speedwm-audioctrl -mute" ) },
{ KeyPress, 0, -1, XF86XK_AudioRaiseVolume, spawn, cmd( "speedwm-audioctrl -raise" ) },
{ KeyPress, 0, -1, XF86XK_AudioLowerVolume, spawn, cmd( "speedwm-audioctrl -lower" ) },
{ KeyPress, 0, -1, XF86XK_WWW, spawn, cmd( "qutebrowser" ) },
{ KeyPress, 0, -1, XF86XK_AudioMute, spawn, cmd( "pactl set-sink-mute @DEFAULT_SINK@ toggle" ) },
{ KeyPress, 0, -1, XF86XK_AudioRaiseVolume, spawn, cmd( "pactl set-sink-volume @DEFAULT_SINK@ +2%" ) },
{ KeyPress, 0, -1, XF86XK_AudioLowerVolume, spawn, cmd( "pactl set-sink-volume @DEFAULT_SINK@ -2%" ) },
{ KeyPress, 0, -1, XF86XK_WWW, spawn, cmd( "chromium" ) },
{ KeyPress, 0, -1, XF86XK_PowerOff, spawn, cmd( "speedwm-shutdown" ) },
{ KeyPress, 0, -1, XF86XK_Sleep, spawn, cmd( "slock" ) },
{ KeyPress, 0, -1, XF86XK_Mail, spawn, cmd( TERMINAL "neomutt" ) },