2019-10-11 14:07:06 +10:00
|
|
|
;;; lang/org/contrib/pomodoro.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###if (featurep! +pomodoro)
|
|
|
|
|
2019-10-20 13:29:29 -04:00
|
|
|
(after! org-pomodoro
|
2019-10-11 14:07:06 +10:00
|
|
|
;; 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-libnotify-command
|
|
|
|
'libnotify)
|
|
|
|
(alert-default-style))))
|