From 1ff2d29f155c875b51b48430ce3666898512e947 Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Wed, 25 Jun 2025 22:29:51 +0200 Subject: [PATCH] mako: add notification daemon --- dot-config/mako/config | 71 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 dot-config/mako/config diff --git a/dot-config/mako/config b/dot-config/mako/config new file mode 100644 index 00000000..173f99ff --- /dev/null +++ b/dot-config/mako/config @@ -0,0 +1,71 @@ +## Mako configuration file + +# GLOBAL CONFIGURATION OPTIONS +max-history=100 +sort=-time + +# BINDING OPTIONS +on-button-left=dismiss +on-button-middle=none +on-button-right=dismiss-all +on-touch=dismiss +on-notify=exec mpv /usr/share/sounds/freedesktop/stereo/message.oga + +# STYLE OPTIONS +font=ZedMono NFM 15 +width=500 +height=132 +margin=10 +padding=15 +border-size=2 +border-radius=6 +icons=1 +max-icon-size=128 +icon-location=left +markup=1 +actions=1 +history=1 +text-alignment=left +default-timeout=5000 +ignore-timeout=0 +max-visible=5 +layer=overlay +anchor=top-right + +# Start flavours +## Base16 Default Dark +# Author: Chris Kempson (http://chriskempson.com) +# +# You can use these variables anywhere in the mako configuration file. + +background-color=#181818 +text-color=#d8d8d8 +border-color=#86c1b9 + +[urgency=low] +background-color=#181818 +text-color=#f7ca88 +border-color=#86c1b9 + +[urgency=high] +background-color=#181818 +text-color=#ab4642 +border-color=#86c1b9 +# End flavours + +[mode=do-not-disturb] +invisible=1 + +[app-name=wp-vol] +layer=overlay +history=0 +anchor=top-center +# Group all volume notifications together +group-by=app-name +# Hide the group-index +format=%s\n%b + +[app-name=volume group-index=0] +# Only show last notification +invisible=0 + -- 2.51.2