pomo/config.def.h

23 lines
786 B
C
Raw Normal View History

2015-11-28 13:08:54 +00:00
/* See LICENSE file for copyright and license details. */
/* Notification */
2016-02-25 14:33:55 +00:00
static char *notifycmd = "libnotify"; /* Use libnotify or given command */
2015-11-28 13:08:54 +00:00
static char *notifyext = ""; /* Notify with extra command (eg. play an alarm) */
/*
* This is the array which defines all the timer that will be used.
* It will be repeated after all of it is executed.
*/
static Timers timers[] = {
/* timer(s) comment */
{ 1500, "Time to start working!"},
{ 300, "Time to start resting!"},
{ 1500, "Time to start working!"},
{ 300, "Time to start resting!"},
{ 1500, "Time to start working!"},
{ 300, "Time to start resting!"},
{ 1500, "Time to start working!"},
{ 300, "Time to start resting!"},
{ 900, "Time to take some nap!"},
2015-11-28 13:08:54 +00:00
};