From 74d7430976e7c2b0ade2a6a557005c8ac7d5b6b4 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Sat, 12 Aug 2023 13:46:20 -0800 Subject: [PATCH] Green border and stack priority for the message box --- notibox.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/notibox.el b/notibox.el index 3dcf1fc..5c52c06 100644 --- a/notibox.el +++ b/notibox.el @@ -144,11 +144,14 @@ If FRAME is the root Emacs window, or some other symbol, hide all notiboxes." (defun notibox--tail-echoarea () "Show `current-message' in the notibox. If that does not exist, probably hide it." (if (current-message) - (notibox-alert `( - :title ,(format "%s" (current-buffer)) - :message ,(current-message))) + (let ((notibox-border-color "#0faa0f")) + (notibox-alert `( + :title ,(format "%s" (current-buffer)) + :message ,(current-message) + :depth 0))) (if notibox-current-posframes - (notibox-delete 'current)))) + (notibox-delete (car notibox-current-posframes)))) +) (defun notibox/setup-timer () "Start running notibox."