~make notify-send send a low priority notification

This commit is contained in:
2021-05-07 11:07:40 +01:00
parent 11be4c610e
commit 56e8e3e3f9

View File

@@ -162,6 +162,6 @@ printgaps(const Arg *arg)
if (!selmon)
return;
char *cmd = malloc(sizeof(*cmd) * 24);
sprintf(cmd, "notify-send \"Gaps=%d\"", selmon->gappx);
sprintf(cmd, "notify-send -u low \"Gaps=%d\"", selmon->gappx);
system(cmd);
}