From 9fc495d9f8ddee648b92887da556cc2db796ff89 Mon Sep 17 00:00:00 2001 From: Christopher Rosset Date: Fri, 8 Dec 2023 20:39:44 -0500 Subject: [PATCH] Pass :id to `termux-notification` --- alert.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alert.el b/alert.el index 1b18cc6..e01ad06 100644 --- a/alert.el +++ b/alert.el @@ -1002,6 +1002,8 @@ INFO plist." (let ((args (nconc (when (plist-get info :title) (list "-t" (alert-encode-string (plist-get info :title)))) + (when (plist-get info :id) + (list "-i" (alert-encode-string (plist-get info :id)))) (list "-c" (alert-encode-string (plist-get info :message)))))) (apply #'call-process alert-termux-command nil (list (get-buffer-create " *termux-notification output*") t)