diff options
author | fpi | 2020-08-01 18:12:30 +0200 |
---|---|---|
committer | fpi | 2020-08-01 18:27:50 +0200 |
commit | 7935118c35c5f4a6f7b9928556dd402e1a6380c7 (patch) | |
tree | c60ad8fe268b26cd619ff45d535a9add119d0f21 | |
parent | Fix some text (diff) |
Add notification upon finish async tangling
-rw-r--r-- | emacs-init.org | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index 94de490..84e3375 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -121,7 +121,9 @@ emacs-async library." `(async-start (lambda () (require 'org) + (require 'org-clock) (org-babel-tangle-file ,file) + (org-notify (format "Tangled %s" ,file)) 'ignore))))) #+END_SRC As I use =org-crypt= all =.org= files need to be decrypted before |