+at clock constructor: refresh_alarms()
+inotifywait -e close /usr/bin/at -> refresh_alarms() (shows when someone has just used at)
+ (can be skipped if we don't need to support non-zavai alarms)
+at alarm triggered through zavai: refresh_alarms()
+
+
+*/
+
+
+public class Alarm : Object
+{
+ // Notify of an alarm being triggered
+ //public static signal void trigger(string label);
+
+ // Schedule with at
+ public static void schedule(time_t deadline, string label);
+
+ // Get the label of the job with the given at ID
+ public static string getLabel(int atID);
+}
+