khal icon indicating copy to clipboard operation
khal copied to clipboard

Alarm user on alarm

Open teto opened this issue 9 years ago • 51 comments

I had looked for a program like khal one year ago without success but I am very glad to have found it. My question is not directly related but might become. I am looking for a daemon able to read my calendar and warn me via popups when an event is closing in. Thunderbird does warn me but only when it's open. So I was wondering if anyone knew of such a tool and if not, would it make sense to divide khal into a daemon and a client application (as urxvt or powerline).

teto avatar Jan 29 '15 16:01 teto

Khal could use atd instead of launching its own daemon.

untitaker avatar Jan 29 '15 17:01 untitaker

Also I think @michaeladler wrote something like this for his own use?

untitaker avatar Jan 29 '15 17:01 untitaker

Without thinking too much about this, I'm not a fan of writing our own daemon here. Using either at or cron and any notification program comes to my mind.

Quoting Markus Unterwaditzer (2015-01-29 18:05:40)

Also I think @michaeladler wrote something like this for his own use?


Reply to this email directly or view it on GitHub: https://github.com/geier/khal/issues/148#issuecomment-72062660

geier avatar Jan 29 '15 17:01 geier

Somehow the workflow would be, write a cronjob that polls every X minutes from khal events within next X minutes events and pass those events to at ? This should be enough if X is low. Otherwise if the calendar changes (event removed, or close event added) during the next X minutes it may become complex to handle.

teto avatar Jan 29 '15 17:01 teto

@untitaker: Nope, I pretty much wrote the opposite: a tool that removes annoying alerts from ics-files :)

michaeladler avatar Feb 02 '15 21:02 michaeladler

@michaeladler I would like to be annoyed by such a tool, any name in mind ?

teto avatar Feb 03 '15 11:02 teto

I'm happy to support any such endeavor with any custom functions needed, but won't get to implement the tool itself for quite some time.

geier avatar Feb 03 '15 12:02 geier

@mbaldessari 's suggestion:

It would be extremely cool to have something (just thinking aloud here) like: khal alarms --script foo --delta 60min which will call foo for every event that will take place in the next 60 minutes (passing the subject of the event + time as args). That way it could be put in a cron job pretty easily.

geier avatar Feb 18 '15 14:02 geier

I think that's problematic. If the command you posted were to be executed every hour, it could miss events that are happening within 60 mins and were synced recently. If the user tries to mitigate this by calling that command more often, the given script would be executed multiple times for one event.

I think a better approach is a hook in the config file that is called whenever khal pleases to do so. But in that case, the next version of vdirsyncer will include such a hook, it will invoke a script for each new or updated ics file, thanks to @michaeladler.

untitaker avatar Feb 18 '15 15:02 untitaker

Commit susmentioned is this one I guess: https://github.com/untitaker/vdirsyncer/commit/208453408febdbd7e465004020f0716a4938f5c0 . Cool stuff. The easiest way would to go for the hook would be to remove all the previously registered cronjobs and recreate them.

teto avatar Feb 18 '15 16:02 teto

@teto In that case you might as well not rely on any hooks, and traverse the directories yourself.

I suppose we'll need another hook for deleting items?

untitaker avatar Feb 18 '15 19:02 untitaker

I was not sure if the hook would react on a delete but it is needed I guess. You say " traverse the directories yourself." but how often ? you can do it every every X min or when the hook triggers. This way you skip useless updates. Tracking changes on a 1 to 1 mapping looks harder to me then just reset cronjobs. I dunno if there is exists a ID/hash per event ?

teto avatar Feb 19 '15 00:02 teto

at is probably better than cron for this since:

  • It provides an id for each job, making cancellation easier.
  • It looks simpler to schedule things for a determined date/time than via cron (from the top of my head: cron has no way of adding something for 2016-04-20 without it executing on 2015-04-20 as well)
  • It's really designed for this sort of one-off thing.

I'm not sure if khal should really be invoking at though. I'd much rather see a command for output similar to khal agenda but with the date included on every line. Something else can then pick that up and manage at event addition/tracking/deletion. Anything more is honestly rather out-of-scope for khal, IMHO.

This external job/notification tracker can either:

  • Run daemonized, detecting changes to the vdir (remember: they're atomic :D ). Guarantees that no events slip past between syncs.
  • As a vdirsyncer hook.

I've no real strong preference.

WhyNotHugo avatar Apr 17 '15 09:04 WhyNotHugo

I think a daemon would be much easier to implement and get right. If you have a snooze on events, you'll need to react which means staying around until the user is "done" with the notification anyways, so you may as well just scan the ical files as needed and add timers to an internal event loop.

mathstuf avatar Aug 08 '15 05:08 mathstuf

It certainly gives us more flexibility for more sophisticated features.

Perhaps this daemon can also keep the database in memory, so the CLI has nicer startup performance (similar to evolution-data-server's role). Not sure how communication between daemon and client should look like.

On Fri, Aug 07, 2015 at 10:22:17PM -0700, Ben Boeckel wrote:

I think a daemon would be much easier to implement and get right. If you have a snooze on events, you'll need to react which means staying around until the user is "done" with the notification anyways, so you may as well just scan the ical files as needed and add timers to an internal event loop.


Reply to this email directly or view it on GitHub: https://github.com/geier/khal/issues/148#issuecomment-128919847

untitaker avatar Aug 08 '15 19:08 untitaker

As an alternative to the daemon solution gcalcli (https://github.com/insanum/gcalcli) proposes a remind command as a cronjob. Looks easier to implement ? (I like the way they output the week schedule too).

teto avatar Aug 20 '15 15:08 teto

IMO, you're going to want to run every 10 minutes or so anyways, so I see no reason not to just run as a daemon. No daemonization logic is needed either; use systemd --user, shell backgrounding, nohup, or other mechanisms to manage the process.

mathstuf avatar Aug 21 '15 01:08 mathstuf

I think the most low-hanging fruit for alarms would be to have khal interactive alert every so often. I don't know exactly how the UI is implemented, but it seems like that would be a reasonable approach.

My personal needs would be fine with that approach.

waynew avatar Sep 27 '16 23:09 waynew

feel free to send an PR :)

geier avatar Sep 28 '16 22:09 geier

I don't think it's much easier and also it would mean having the UI open at all times ? not very practical.

teto avatar Sep 28 '16 22:09 teto

If you use tmux (or screen) like I do then it's perfectly practical. Otherwise I'm not sure precisely what you'd use for notifications.

waynew avatar Sep 29 '16 00:09 waynew

Have it send a notification over D-Bus and if the required modules aren't available or the config disables it, output to stdout for processing by any tool.

mathstuf avatar Sep 29 '16 11:09 mathstuf

renamed, as we actually support editing VALARMs now.

geier avatar May 23 '17 16:05 geier

I wonder if khal is the right place, or if maybe a separate app could monitor alarms on a vdir and show a generic notification.

I'm thinking about todoman, and how the alarms are basically identical, and a daemon/app/whatever to notify about both might save up work (and help dedupe effort).

WhyNotHugo avatar May 24 '17 00:05 WhyNotHugo

IMO, Todo and calendar apps are completely different things. Calendars document things that happen while Todo lists document things to be done. They require different logic to handle properly. Personally I use taskwarrior since it supports more complex queries and attributes than iCal does. To that end, I don't think these things should be conflated just because they both need to notify a user. An alarm for an event is usually set in time for me to get to an event while a task for that event may require subtasks, a week of lead time, and resulting "products".

mathstuf avatar May 24 '17 10:05 mathstuf

@mathstuf I meant that the file format for both alarms is the same (quite literally, by the way, since it's exactly the same spec). So my idea is basically:

Some for of daemon that reads alarms from vdirs:

  • Set a timer up for the alarm.
  • When the timer fires, show a notification.

If you're using a different task management app/format that should be no problem; this proposal has no ties to todoman [nor khal, for that matter], just to vdir+icalendar, which is the format both use.

WhyNotHugo avatar May 24 '17 21:05 WhyNotHugo

Ah, that sounds suitable then.

mathstuf avatar May 24 '17 21:05 mathstuf

@geier @untitaker How do you feel about this idea? I can get a proof-of-concept at some point. :)

WhyNotHugo avatar May 25 '17 05:05 WhyNotHugo

Have at it if you want, I don't see myself using something like that at the moment, but who knows, I also thought colored days were useless and now I use them all the time.

geier avatar May 25 '17 14:05 geier

Hi all, can somebody tell me the status of notifications. Is currently somebody working on this topic?

vodan avatar Nov 02 '17 13:11 vodan