From ca45025f95617e79a2c4a6dcb9d0d6f138c4958b Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sat, 9 Aug 2025 06:59:51 -0500 Subject: Fix sxhkdsig It needs to pgrep -x -USR1 sxhkd, not just pgrep -USR1 sxhkd. --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index 2da7a5f..58af618 100644 --- a/config.h +++ b/config.h @@ -141,7 +141,7 @@ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, /* static const char *passmenu[] = { "passmenu", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; */ static const char *termcmd[] = { "st", NULL }; /* static const char *termcmd[] = { "alacritty", NULL }; */ -static const char *sxhkdsig[] = { "pkill", "-USR1", "sxhkd", NULL }; +static const char *sxhkdsig[] = { "pkill", "-x", "-USR1", "sxhkd", NULL }; /* static const char *mpdtoggle[] = { "playerctl", "--player=mpd,mpv,%any", "play-pause", NULL }; */ /* static const char *mpdnext[] = { "playerctl", "--player=mpd,mpv,%any", "next", NULL }; */ /* static const char *mpdprev[] = { "playerctl", "--player=mpd,mpv,%any", "previous", NULL }; */ -- cgit v1.2.3