From 31649f66f810111db2a24d05f1bab9fc9506ddcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Mon, 22 Apr 2024 08:27:27 +0200 Subject: [PATCH] minor path fixes --- config.def.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 5531203..44c0488 100644 --- a/config.def.h +++ b/config.def.h @@ -204,10 +204,10 @@ static char urgbgcolor[] = "#fb4934"; static char urgbordercolor[] = "#fb4934"; static char urgfloatcolor[] = "#fb4934"; -static const char *mutevol[] = {"/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL}; -static const char *downvol[] = {"/usr/bin/pactl", "set-sink-volume", "0", "-3%", NULL}; -static const char *upvol[] = {"/usr/bin/pactl", "set-sink-volume", "0", "+3%", NULL}; -static const char *mutemic[] = {"/usr/bin/pactl", "set-source-mute", "0", "toggle", NULL}; +static const char *mutevol[] = {"pactl", "set-sink-mute", "0", "toggle", NULL}; +static const char *downvol[] = {"pactl", "set-sink-volume", "0", "-3%", NULL}; +static const char *upvol[] = {"pactl", "set-sink-volume", "0", "+3%", NULL}; +static const char *mutemic[] = {"pactl", "set-source-mute", "0", "toggle", NULL}; static const char *downbrt[] = {"xbacklight", "-dec", "5", NULL}; static const char *upbrt[] = {"xbacklight", "-inc", "5", NULL}; static const char *displ[] = {"arandr", NULL};