組織モードのイベントによってトリガーされるアラーム(オーディオ+ビジュアル)を設定するための良い方法は?


35

特定の時間(または開始時間)に関連付けられた組織モードのイベントに基づいてアラームをオフにしたいと思います。理想的には、これらはオーディオとビジュアルであり、ある程度カスタマイズできます。以前はを使用Sauronしていましたが、組織モードのイベント(またはメール通知)で動作させることはできません。他の良い方法は何ですか?

(私は、通知が通知デーモンを介して画面上に表示されるだけでなく、音声(テキスト読み上げ)も表示されることに特に興味があります。Linuxを使用しています。)



@Constantine-これはかなり違うようです。私はこれを作るためのツールを求めているのではなく、すでに存在する既成のソリューションを求めています。さらに、実際には、DEADLINEのアラームではなく、(開始)時間に関連するイベントに興味があります。
emacsomancer 14年

OK; コメントを編集しました。(あなたの質問は私がリンクした質問に関連していることに私たちは同意すると思います。)
コンスタンティン14年


2
組み込みのapptシステムを使用して、関数を使用して組織-agendaファイルから予定をインポートした場合org-agenda-to-appt。次にappt-disp-window-function、必要に応じて通知するようにカスタマイズできます(外部プログラムの呼び出しを含めることができます)。
イクバルアンサリ14年

回答:


15

私が使用しているシステムに非常に満足しています。これはまさにあなたが望んでいることだと思います。これには2つの部分があります。appt.elを使用してリマインダーをスケジュールするEmacsの部分と、ポップアップと音声通知を作成する小さなシェルプログラム(Linuxを使用しています)です。ここで、両方の部分のコードを共有します。

A)〜/ .emacs.d / init.elのコード

(require 'appt)
(appt-activate t)

(setq appt-message-warning-time 5) ; Show notification 5 minutes before event
(setq appt-display-interval appt-message-warning-time) ; Disable multiple reminders
(setq appt-display-mode-line nil)

; Use appointment data from org-mode
(defun my-org-agenda-to-appt ()
  (interactive)
  (setq appt-time-msg-list nil)
  (org-agenda-to-appt))

; Update alarms when...
; (1) ... Starting Emacs
(my-org-agenda-to-appt)

; (2) ... Everyday at 12:05am (useful in case you keep Emacs always on)
(run-at-time "12:05am" (* 24 3600) 'my-org-agenda-to-appt)

; (3) ... When TODO.txt is saved
(add-hook 'after-save-hook
          '(lambda ()
             (if (string= (buffer-file-name) (concat (getenv "HOME") "/ideas/TODO.txt"))
                 (my-org-agenda-to-appt))))

; Display appointments as a window manager notification
(setq appt-disp-window-function 'my-appt-display)
(setq appt-delete-window-function (lambda () t))

(setq my-appt-notification-app (concat (getenv "HOME") "/bin/appt-notification"))

(defun my-appt-display (min-to-app new-time msg)
  (if (atom min-to-app)
    (start-process "my-appt-notification-app" nil my-appt-notification-app min-to-app msg)
  (dolist (i (number-sequence 0 (1- (length min-to-app))))
    (start-process "my-appt-notification-app" nil my-appt-notification-app (nth i min-to-app) (nth i msg)))))

B)〜/ bin / appt-notificationのコード

#!/bin/sh

TIME="$1"
MSG="$2"

notify-send -t 0 "<br>Appointment in $TIME minutes:<br>$MSG<br>"
play "~/bin/alarm.wav"

音声通知を取得するには、最後の行(再生)を次の行に置き換えることができます。

espeak "Appointment in $TIME minutes: $MSG"

org-agendaを終了するときにapptを自動更新するケースを追加しました: ; (4) ... Quitting org-agenda. (advice-add 'org-agenda-quit :after #'hw-org-agenda-to-appt)
holocronweaver

注:深夜に更新するのは、org-agenda-to-appt当日のapptsのみを作成するため、夜更かしにとって重要です。
holocronweaver

+1これは素晴らしい。共有していただきありがとうございます。代わりにalert.elを使用するようにこれを少し変更しました。ただし、1つの質問:org "APPT_WARNTIME"プロパティを使用して各イベントのカスタム警告時間を設定することに成功したことはありますか?私はそれを動作させることができないようです。
ジョセフR.

11

Emacs> 24で通知を使用できます。

(require 'notifications)

(notifications-notify :title "Achtung!"
                      :body (format "You have an appointment in %d minutes" 10)
                      :app-name "Emacs: Org"
                      :sound-name "alarm-clock-elapsed")

13
これは非常に便利なようです。統合する方法を知っていorg-modeますか?
エリクスト

2

これが私が思いついたものです:

;;; org-to-appt

;; based on http://emacs-fu.blogspot.nl/2009/11/showing-pop-ups.html
(defun talky-popup (title msg &optional icon sound)  
  "Show a popup if we're on X, or echo it otherwise; TITLE is the title
of the message, MSG is the context. Optionally, you can provide an ICON and
a sound to be played"

  (interactive)
  ;;verbal warning



  (shell-command
   ;;  (concat "espeak -v mb-en1 -k5 -s125 " "'" title " " msg "'" " --stdout | paplay") ;; use local espeak
   (concat "echo " "'" title "'" " " "'" msg "'" " |text-to-speech en-gb")  ;; use remote Google voices
    ;; text-to-speech is from https://github.com/taylorchu/speech-to-text-text-to-speech
   )
  (if (eq window-system 'x)
    (shell-command (concat "notify-send -u critical -t 1800000  " 

                     (if icon (concat "-i " icon) "")
                     " '" title "' '" msg "'"))
    ;; text only version

    (message (concat title ": " msg))))

;; the appointment notification facility
(setq
  appt-message-warning-time 15 ;; warn 15 min in advance

  appt-display-mode-line t     ;; show in the modeline
  appt-display-format 'window) ;; use our func
(appt-activate 1)              ;; active appt (appointment notification)
(display-time)                 ;; time display is required for this...

 ;; update appt each time agenda opened

(add-hook 'org-finalize-agenda-hook 'org-agenda-to-appt)

;; our little façade-function for talky-popup
 (defun talky-appt-display (min-to-app new-time msg)
    (talky-popup (format "In %s minute(s):" min-to-app) msg 
  ;;    "/usr/share/icons/gnome/32x32/status/appointment-soon.png"   ;; optional icon

  ;;    "/usr/share/sounds/ubuntu/stereo/phone-incoming-call.ogg"    ;; optional sound

        ))
  (setq appt-disp-window-function (function talky-appt-display))

scaramoucheのセットアップと似ています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.