]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - shell/reminders.in
zsh/rc: prepend "--" in X alias
[config/dotfiles.git] / shell / reminders.in
1 # remind reminder file.
2
3 # Copyright (C) 2012-2013  Simon Ruderich
4 #
5 # This file is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This file is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # FUNCTIONS
20
21 # Todo item. Prevents cluttering the calendar by displaying the entry only
22 # today. Thanks to http://wiki.43folders.com/index.php/Remind_FAQ (read on
23 # 2011-06-24). Additionally %"%" is used in todo items which omits them from
24 # the calendar view completely. Combined this way supports `rem -c` (no todo
25 # items) and `rem '*3'` (todo items only once).
26 FSET todo() trigger(realtoday())
27
28
29
30 # TODO LIST
31
32 # Header.
33 #REM [todo()] MSG %"%" TODO: %
34
35 #REM [todo()] MSG %"%" - Example todo entry. %
36
37 # Empty line.
38 #REM [todo()] MSG %"%" %
39
40
41
42 # REMINDERS
43
44 #REM 04 April 2012 +10 MSG Example reminder entry. %
45
46
47
48 # DAEMON REMINDERS
49
50 IF $Daemon > 0
51     #REM AT 00:00 MSG Example reminder.
52 ENDIF
53
54 # vim: ft=remind