From 9d0f3ded5ef30d82a4bc115c0a49faa29dc223f0 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Sun, 10 Mar 2024 14:13:10 +0530 Subject: fix --- config.def.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.def.h b/config.def.h index cfcf8f6..e3b851e 100644 --- a/config.def.h +++ b/config.def.h @@ -126,12 +126,12 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } /* commands */ -static const char *upvol[] = { "pamixer -i 5", NULL }; -static const char *downvol[] = { "pamixer -d 5", NULL }; -static const char *mute[] = { "pamixer -t", NULL }; +static const char *upvol[] = { "pamixer", "-i", "5", NULL }; +static const char *downvol[] = { "pamixer", "-d", "5", NULL }; +static const char *mute[] = { "pamixer", "-t", NULL }; -static const char *upbrightness[] = { "brightnessctl set +5%", NULL }; -static const char *downbrightness[] = { "brightnessctl set 5%-", NULL }; +static const char *upbrightness[] = { "brightnessctl", "set", "+5%", NULL }; +static const char *downbrightness[] = { "brightnessctl", "set", "5%-", NULL }; static const char *termcmd[] = { "alacritty", NULL }; static const char *menucmd[] = { "fuzzel", NULL }; -- cgit v1.2.3