From f63943c24de62e335b58f1aba56e0eaba97b86f2 Mon Sep 17 00:00:00 2001 From: speedie Date: Mon, 26 Jun 2023 16:44:10 +0200 Subject: [PATCH] keys --- keybinds.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/keybinds.h b/keybinds.h index 2898e55..1bdcb40 100755 --- a/keybinds.h +++ b/keybinds.h @@ -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" ) },