aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-05-29 18:13:41 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-05-29 18:13:41 +0200
commit5b69ff97729b7953768e7c76f70ee37b8f9d0a1f (patch)
tree2dca63ffbea25a217f92bd134172b65d64ebf59a
parentStop adding copies of vcomponent to parent. (diff)
downloadcalp-5b69ff97729b7953768e7c76f70ee37b8f9d0a1f.tar.gz
calp-5b69ff97729b7953768e7c76f70ee37b8f9d0a1f.tar.xz
Add info output.
-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)))))
+
+