From b302149995e82a294d860daec0ec99713e229589 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Thu, 7 May 2020 16:59:37 +0200 Subject: [PATCH] mako: added config --- .config/mako/config | 55 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .config/mako/config diff --git a/.config/mako/config b/.config/mako/config new file mode 100644 index 0000000..98345c4 --- /dev/null +++ b/.config/mako/config @@ -0,0 +1,55 @@ +font=Hack 8 + +# Allow a small subset of html markup: +# bold +# italic +# strikethrough +# underline +# +# For a complete reference see +# . +# If markup is not allowed, those tags will be stripped out of the +# message. +markup=1 + +format=%s\n%b + +layer=overlay + +# Sort messages by urgency. +sort=-priority + +max-icon-size=64 + +# Padding between text and separator. +padding=8 + + +# Paths to default icons. +icon-path=/usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + +border-size=1 +border-color=#fdf6e3 + +[urgency="low"] +# Background is S_base03 +background-color=#002b36 +# Foreground is S_base0 +text-color=#839496 +default-timeout=10000 + +[urgency="normal"] +# Background is S_base0 +background-color=#839496 +# Foreground is S_base03 +text-color=#002b36 +default-timeout=10000 + +[urgency="high"] +# Background is S_red +background-color=#dc322f +# Foreground is S_base03 +text-color=#002b36 +default-timeout=0 + +# vim: ft=cfg