aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/output/info.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/output/info.scm b/module/output/info.scm
new file mode 100644
index 00000000..376b125f
--- /dev/null
+++ b/module/output/info.scm
@@ -0,0 +1,18 @@
+(define-module (output info)
+ :use-module (util))
+
+(use-modules (ice-9 getopt-long)
+ (vcomponent)
+ (vcomponent output)
+ (terminal util)
+ (srfi srfi-1))
+
+(define-public (info-main calendars events args)
+ (format #t "~%Found ~a calendars, named:~%~{ - [~4@a] ~a~a\x1b[m~%~}~%"
+ (length calendars)
+ (concatenate
+ (zip (map (lambda (c) (length (children c 'VEVENT))) calendars)
+ (map (compose color-escape (extract 'COLOR)) calendars)
+ (map (extract 'NAME) calendars)))))
+
+