diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-10 14:13:10 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-10 14:13:10 +0530 | 
| commit | 9d0f3ded5ef30d82a4bc115c0a49faa29dc223f0 (patch) | |
| tree | 9e7340cef4d7b4e54c072a5044217e589356f788 | |
| parent | e5286a33d026646920566c695caf0e49f0e737f1 (diff) | |
fix
| -rw-r--r-- | config.def.h | 10 | 
1 files 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 };  | 
