diff options
author | jao <jao@gnu.org> | 2022-08-31 00:53:05 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-31 00:53:05 +0100 |
commit | d70fe9103df62c2788688f4d470d386c50ab2bfd (patch) | |
tree | c0d3cb6b9b526063ea780979db8e85d7d850ecbe /lib/eos/jao-tracking.el | |
parent | 5a505b096066e1e5a4049f2ca4ebf8df086e87c5 (diff) | |
download | elibs-d70fe9103df62c2788688f4d470d386c50ab2bfd.tar.gz elibs-d70fe9103df62c2788688f4d470d386c50ab2bfd.tar.bz2 |
wee tweaks
Diffstat (limited to 'lib/eos/jao-tracking.el')
-rw-r--r-- | lib/eos/jao-tracking.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/eos/jao-tracking.el b/lib/eos/jao-tracking.el index cf64c89..26404a4 100644 --- a/lib/eos/jao-tracking.el +++ b/lib/eos/jao-tracking.el @@ -88,9 +88,10 @@ (defun jao-tracking-set-log (v) (when (member window-system '(x)) (x-change-window-property "_EMACS_LOG" v nil nil nil nil 0)) - (let* ((action (if (string-blank-p v) "remove" "add")) - (cmd (format "wmctrl -r emacs -b %s,demands_attention" action))) - (shell-command-to-string cmd))) + (unless jao-wayland-enabled + (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 "") |