aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-05-07 11:07:40 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-05-07 11:07:40 +0100
commit56e8e3e3f94294883367048e962db00a4a5f2658 (patch)
tree0c4040d342a47ced27ec3a0f045861aaf9dc7d93
parent11be4c610e46ff5997c8a6bcff7a66ed1bfc1292 (diff)
downloaddwm-56e8e3e3f94294883367048e962db00a4a5f2658.tar.gz
dwm-56e8e3e3f94294883367048e962db00a4a5f2658.tar.bz2
dwm-56e8e3e3f94294883367048e962db00a4a5f2658.zip
~make notify-send send a low priority notification
-rw-r--r--config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h b/config.h
index 1c93147..2758ebc 100644
--- a/config.h
+++ b/config.h
@@ -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);
}