-
-
Save ayman/bb72a25e16af9e6f30bf to your computer and use it in GitHub Desktop.
Add native MacOS notifications to Emacs...simply.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Terminal notifier | |
;; requires 'sudo port install terminal-notifier' | |
;; stolen from erc-notifier | |
;; | |
;; (terminal-notifier-notify "Emacs notification" | |
;; "Something amusing happened") | |
(defvar terminal-notifier-command | |
(executable-find "terminal-notifier") | |
"The path to terminal-notifier.") | |
(defun terminal-notifier-notify (title message) | |
"Show a message with `terminal-notifier-command`." | |
(start-process "terminal-notifier" | |
"*terminal-notifier*" | |
terminal-notifier-command | |
"-title" title | |
"-message" message | |
"-activate" "org.gnu.Emacs" | |
"-sender" "org.gnu.Emacs")) | |
(defun timed-notification (time msg) | |
(interactive | |
"sNotification when (e.g: 2 minutes, 60 seconds, 3 days): \nsMessage: ") | |
(run-at-time time | |
nil | |
(lambda (msg) (terminal-notifier-notify "Emacs" msg)) | |
msg)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment