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

9 lines
228 B
Django/Jinja

#!/bin/sh
{% if notification == 'mako' %}
exec /usr/bin/makoctl dismiss --all
{% elif notification == 'dunst' %}
exec /usr/bin/dunstctl close-all
{% elif notification == 'fnott' %}
exec /usr/bin/fnottctl dismiss all
{% endif %}