From 09b54cb6892506cb922bb7569e69731f32f11244 Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Mon, 2 Jan 2023 13:31:48 -0500 Subject: [PATCH] Add confirm_no to status annc --- packages/notify.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages/notify.yaml b/packages/notify.yaml index 0d9b6ee..bf952fd 100644 --- a/packages/notify.yaml +++ b/packages/notify.yaml @@ -914,6 +914,21 @@ script:

{% endmacro %} + {% macro confirm_no() %} +

+ {{ [ + 'Okay.', + 'Alright, I will not.', + 'Copy that, no action taken.', + 'Well, if you are sure.', + 'Why do I even ask?', + 'Okay, sitting on my hands. Wait, I do not have any hands.', + 'Your wish is my command. Your lack of wish is boring.', + 'I am so bored.' + ] | random }} +

+ {% endmacro %} + {% macro interuption() %}

{{ [ @@ -1143,6 +1158,10 @@ script: {{ confirmation() }} {% endif %} + {% if call_confirm_no == 1 %} + {{ confirm_no() }} + {% endif %} + {% if call_interuption == 1 %} {{ interuption() }} {% endif %}