diff options
| author | Luke Smith <[email protected]> | 2023-08-16 14:40:34 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-16 14:40:34 +0000 |
| commit | 6406d7e0cea8618376556411b8ad713a1a996d12 (patch) | |
| tree | da9d675c7469c5dcc82de453a1da8885190f560d | |
| parent | Merge branch 'speediegq-master' (diff) | |
| parent | final dirtyfix for fast fingers (diff) | |
| download | seiwm-6406d7e0cea8618376556411b8ad713a1a996d12.tar.xz seiwm-6406d7e0cea8618376556411b8ad713a1a996d12.zip | |
Merge pull request #239 from pony-montana/patch-1
final dirtyfix for fast fingers
| -rw-r--r-- | config.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -261,8 +261,8 @@ static const Key keys[] = { { MODKEY, XK_Scroll_Lock, spawn, SHCMD("killall screenkey || screenkey &") }, { 0, XF86XK_AudioMute, spawn, SHCMD("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle; kill -44 $(pidof dwmblocks)") }, - { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("wpctl set-volume @DEFAULT_AUDIO_SINK@ 3%+; kill -44 $(pidof dwmblocks)") }, - { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("wpctl set-volume @DEFAULT_AUDIO_SINK@ 3%-; kill -44 $(pidof dwmblocks)") }, + { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("wpctl set-volume @DEFAULT_AUDIO_SINK@ 0%- && wpctl set-volume @DEFAULT_AUDIO_SINK@ 3%+; kill -44 $(pidof dwmblocks)") }, + { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("wpctl set-volume @DEFAULT_AUDIO_SINK@ 0%+ && wpctl set-volume @DEFAULT_AUDIO_SINK@ 3%-; kill -44 $(pidof dwmblocks)") }, { 0, XF86XK_AudioPrev, spawn, {.v = (const char*[]){ "mpc", "prev", NULL } } }, { 0, XF86XK_AudioNext, spawn, {.v = (const char*[]){ "mpc", "next", NULL } } }, { 0, XF86XK_AudioPause, spawn, {.v = (const char*[]){ "mpc", "pause", NULL } } }, |