Sunrise 5:53am (JST), sunset 4:58pm (JST) at 35.7N, 139.8E (11:05 hrs daylight) japan/tokyo/tokyo at 09:00: 16 C, partly cloudy, 5.1 mps wind from N.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; 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) ) )