make statusbar program accept notifications
This commit is contained in:
parent
275fa01164
commit
011925061d
|
@ -24,7 +24,7 @@ struct module mods[] = {
|
||||||
{mod_battstatus, "battstatus", "BAT0", { '\0' }},
|
{mod_battstatus, "battstatus", "BAT0", { '\0' }},
|
||||||
{mod_time, "time", "", { '\0' }},
|
{mod_time, "time", "", { '\0' }},
|
||||||
{mod_bspwm, "bspwm", "", { '\0' }},
|
{mod_bspwm, "bspwm", "", { '\0' }},
|
||||||
{mod_message, "message", "/home/usr/.cache/statusbar_notification", { '\0' }},
|
/* {mod_message, "message", "/home/usr/.cache/statusbar_notification", { '\0' }}, */
|
||||||
};
|
};
|
||||||
|
|
||||||
void create_module_proc(int index, char *pipename) {
|
void create_module_proc(int index, char *pipename) {
|
||||||
|
|
|
@ -17,7 +17,8 @@ int mod_message(char *config, char *name, char *pipename) {
|
||||||
|
|
||||||
for(;;) {
|
for(;;) {
|
||||||
int watchdesc = inotify_add_watch(fd, config, IN_MODIFY);
|
int watchdesc = inotify_add_watch(fd, config, IN_MODIFY);
|
||||||
read(fd, &buf, sizeof(struct inotify_event));
|
read:
|
||||||
|
int watchread = read(fd, &buf, sizeof(struct inotify_event));
|
||||||
|
|
||||||
/* the file's changed, so reread it */
|
/* the file's changed, so reread it */
|
||||||
int filefd = open(config, O_RDONLY, 0);
|
int filefd = open(config, O_RDONLY, 0);
|
||||||
|
|
Loading…
Reference in New Issue