diff options
author | ZachIR <zachir@librem.one> | 2025-08-09 06:59:51 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-08-09 06:59:51 -0500 |
commit | ca45025f95617e79a2c4a6dcb9d0d6f138c4958b (patch) | |
tree | dcc57148e0c8e03540098145e262f440e92daa3a | |
parent | cc844d78958ce7ca0e6dee9a71343409c3aff6f8 (diff) |
Fix sxhkdsig
It needs to pgrep -x -USR1 sxhkd, not just pgrep -USR1 sxhkd.
-rw-r--r-- | config.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }; */ |