Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/rougier/nano-calendar

An alternative calendar for Emacs
https://github.com/rougier/nano-calendar

calendar emacs emacs-lisp nano org-agenda org-mode

Last synced: 3 months ago
JSON representation

An alternative calendar for Emacs

Lists

README

        

* Nano calendar

This library offers an alternative to calendar. It's very similar and offer only a few options, like the possibility to color day according to the number of item in the org-agenda.

** Usage example

Using a regular buffer:

#+begin_src emacs-lisp
(require 'nano-calendar)
(nano-calendar)
(message (format-time-string "%A %d %B %Y") (nano-calendar-current))
#+end_src

Using minibuffer:

#+begin_src emacs-lisp
(require 'nano-calendar)
(let ((date (nano-calendar-prompt)))
(message (format-time-string "%A %d %B %Y") date))
#+end_src

** Screenshots

#+ATTR_ORG: :width 400
[[./nano-calendar.png]]

#+ATTR_ORG: :width 400
[[./nano-calendar-prompt.png]]