summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-08-09 06:59:51 -0500
committerZachIR <zachir@librem.one>2025-08-09 06:59:51 -0500
commitca45025f95617e79a2c4a6dcb9d0d6f138c4958b (patch)
treedcc57148e0c8e03540098145e262f440e92daa3a /config.h
parentcc844d78958ce7ca0e6dee9a71343409c3aff6f8 (diff)
Fix sxhkdsig
It needs to pgrep -x -USR1 sxhkd, not just pgrep -USR1 sxhkd.
Diffstat (limited to 'config.h')
-rw-r--r--config.h2
1 files changed, 1 insertions, 1 deletions
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 }; */