dotfiles-ansible/roles/scripts/templates/notifymenu.j2

10 lines
314 B
Django/Jinja

#!/bin/sh
{% if notification == 'dunst' %}
exec /usr/bin/dunstctl context
{% elif notification == 'fnott' %}
exec /usr/bin/fnottctl actions
{% elif notification == 'mako' %}
exec /usr/bin/makoctl menu \
{{ launcher }} {{ dmenu_flag }} -p 'Notification{{ (launcher == 'fuzzel') | ternary(': ', '') }}'
{% endif %}