aboutsummaryrefslogtreecommitdiff
path: root/module/vulgar/components.scm
blob: 74420f185cf83f2a78131f41b8acb6f32590d11e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(define-module (vulgar components)
  :use-module (datetime)
  :use-module (hnh util)
  :export (display-calendar-header!))

(define (display-calendar-header! date)
  (let ((day   (number->string (day   date)))
        (month (number->string (month date)))
        (year  (number->string (year  date))))
    ;; BSD cal only supports setting highlighted day explicitly for
    ;; testing the functionality. This seems to at least give me
    ;; an (almost) working display, albeit ugly.
    (if (file-exists? "/usr/bin/ncal")
        (system* "ncal" "-3" "-H" (date->string date)
                 month year)
        (system* "cal" "-3" day month year))))