2024年第42週 (10/14 – 10/20)

2024-10-14 (Mon)

2024-10-15 (Tue)

2024-10-16 (Wed)

2024-10-17 (Thu)

2024-10-18 (Fri)

2024-10-19 (Sat)

2024-10-20 (Sun)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; my/mailcheck.el
;;
(defun my/mailcheck ()
  "show unread mails if any"
  (interactive)
  (shell-command-to-string "mbsync sakura")
  (shell-command-to-string "notmuch new")
  (setq mails (substring (shell-command-to-string "notmuch count tag:unread") 0 -1))
  (if (equal "0" mails)
      (message "No mail")
    (notmuch-search "tag:unread")
    (message "%s unread" mails)
    )
  )