Files
doomemacs/modules/lang/org/contrib/pomodoro.el
Saúl Germán Gutiérrez Calderón 1b49964fc2 Add terminal-notifier support for org-pomodoro
2020-06-27 14:52:54 -05:00

18 lines
740 B
EmacsLisp

;;; lang/org/contrib/pomodoro.el -*- lexical-binding: t; -*-
;;;###if (featurep! +pomodoro)
(after! org-pomodoro
;; prefer PulseAudio to ALSA in $current_year
(setq org-pomodoro-audio-player (or (executable-find "paplay")
org-pomodoro-audio-player))
;; configure pomodoro alerts to use growl or libnotify
(alert-add-rule :category "org-pomodoro"
:style (cond (alert-growl-command
'growl)
(alert-notifier-command
'notifier)
(alert-libnotify-command
'libnotify)
(alert-default-style))))