From 79d1c5fd9162ebfd9a9760f5d65b1a72598335fb Mon Sep 17 00:00:00 2001 From: jao Date: Mon, 1 Aug 2022 23:06:23 +0100 Subject: tracking: clear off demands_attention as needed --- lib/eos/jao-tracking.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/eos/jao-tracking.el b/lib/eos/jao-tracking.el index 95db95a..8436733 100644 --- a/lib/eos/jao-tracking.el +++ b/lib/eos/jao-tracking.el @@ -87,8 +87,9 @@ (defun jao-tracking-set-log (v) (when (member window-system '(x)) (x-change-window-property "_EMACS_LOG" v nil nil nil nil 0)) - (unless (equal "" v) - (shell-command-to-string "wmctrl -r emacs -b add,demands_attention"))) + (let* ((action (if (string-blank-p v) "remove" "add")) + (cmd (format "wmctrl -r emacs -b %s,demands_attention" action))) + (shell-command-to-string cmd))) (jao-tracking-set-log "") -- cgit v1.2.3