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
- Host: GitHub
- URL: https://github.com/rougier/nano-calendar
- Owner: rougier
- License: gpl-3.0
- Created: 2023-07-16T07:22:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-16T07:23:09.000Z (over 1 year ago)
- Last Synced: 2024-08-07T18:30:38.036Z (6 months ago)
- Topics: calendar, emacs, emacs-lisp, nano, org-agenda, org-mode
- Language: Emacs Lisp
- Homepage:
- Size: 1.17 MB
- Stars: 27
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE.txt
Awesome Lists containing this project
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_srcUsing 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]]