diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-07-31 02:04:18 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-07-31 03:23:32 +0200 |
commit | 45417bc6f0b6a38754bc707608c9b377d006cdfd (patch) | |
tree | 3afce6d731a33a60b6d82d207d5d18a0f87373f5 /src/calcurse.h | |
parent | 0884d62b2282b3ff5936f8d36f7f8d77c504938d (diff) | |
download | calcurse-45417bc6f0b6a38754bc707608c9b377d006cdfd.zip |
Add configuration option to notify all appointments
If "notify-all" is enabled, all non-flagged appointments will be
notified (instead of flagged ones). This is useful for users that want
to be notified of everything.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 1a63657..b1b8e75 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -466,6 +466,7 @@ struct nbar { char timefmt[BUFSIZ]; /* format for displaying time */ char cmd[BUFSIZ]; /* notification command */ char *shell; /* user shell to launch notif. cmd */ + unsigned notify_all; /* notify all appointments */ pthread_mutex_t mutex; }; |