mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
42 lines
734 B
C
42 lines
734 B
C
static int statussig;
|
|
pid_t statuspid = -1;
|
|
|
|
pid_t
|
|
getstatusbarpid()
|
|
{
|
|
char buf[32], *str = buf, *c;
|
|
FILE *fp;
|
|
|
|
if (statuspid > 0) {
|
|
snprintf(buf, sizeof(buf), "/proc/%u/cmdline", statuspid);
|
|
if ((fp = fopen(buf, "r"))) {
|
|
fgets(buf, sizeof(buf), fp);
|
|
while ((c = strchr(str, '/')))
|
|
str = c + 1;
|
|
fclose(fp);
|
|
if (!strcmp(str, STATUSBAR))
|
|
return statuspid;
|
|
}
|
|
}
|
|
if (!(fp = popen("pgrep -o "STATUSBAR, "r")))
|
|
return -1;
|
|
fgets(buf, sizeof(buf), fp);
|
|
pclose(fp);
|
|
return strtol(buf, NULL, 10);
|
|
}
|
|
|
|
void
|
|
sigstatusbar(const Arg *arg)
|
|
{
|
|
union sigval sv;
|
|
|
|
if (!statussig)
|
|
return;
|
|
if ((statuspid = getstatusbarpid()) <= 0)
|
|
return;
|
|
|
|
sv.sival_int = arg->i;
|
|
sigqueue(statuspid, SIGRTMIN+statussig, sv);
|
|
}
|
|
|