From: Eshel Yaron Date: Wed, 25 May 2022 10:02:31 +0000 (+0300) Subject: Add last update time to esy.org X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=739d0ffa10731c610ebb354bcebc2c693a0d150b;p=dotfiles.git Add last update time to esy.org --- diff --git a/.emacs.d/esy.org b/.emacs.d/esy.org index be26cb6..cf4ec49 100644 --- a/.emacs.d/esy.org +++ b/.emacs.d/esy.org @@ -20,6 +20,13 @@ The source of this document is managed with Git in [[https://git.sr.ht/~eshel/do SourceHut]]. An [[https://eshelyaron.com/esy.html][online HTML version]] is also published on my website. See [[#exporting][settings for exporting and publishing]] below for more information regarding [[https://eshelyaron.com][my website]]. +#+begin_src emacs-lisp :exports results + (format-time-string + "Last updated at: %d-%m-%Y" + (file-attribute-modification-time + (file-attributes esy/source-path))) +#+end_src + * Fresh installation :PROPERTIES: :CUSTOM_ID: install @@ -1128,7 +1135,6 @@ does in the shell. (esy/ping-update proc nil) (message "Ping failed."))))) - (defun esy/ping-plot () "Plot ping RTT history with gnuplot." (interactive) @@ -1154,7 +1160,7 @@ does in the shell. "Keymap for modeline integration.") (define-minor-mode esy/ping-mode - "Toggle background ping checks." + "Toggle background pinging on and off." :global t :group 'mode-line (setq esy/ping-start-time (float-time)) (run-with-timer 0 esy/ping-interval #'esy/ping)