All Projects → enisozgen → idle-org-agenda

enisozgen / idle-org-agenda

Licence: GPL-3.0 license
A package that shows your agenda when Emacs is idle

Programming Languages

emacs lisp
2029 projects

Projects that are alternatives of or similar to idle-org-agenda

agendash-v2
A modern, secure, and reliable dashboard for Agenda with search and pagination capabilities written in vue.js
Stars: ✭ 27 (-32.5%)
Mutual labels:  agenda
dotfiles
I showed you my source code, pls respond
Stars: ✭ 45 (+12.5%)
Mutual labels:  org-mode
org-table-sticky-header
Sticky header for org-mode tables
Stars: ✭ 31 (-22.5%)
Mutual labels:  org-mode
graceful
Gracefully exit server (Koa), database (Mongo/Mongoose), Redis clients, and job scheduler (Redis/Bull)
Stars: ✭ 37 (-7.5%)
Mutual labels:  agenda
trio
Datatype agnostic triple store & query engine API
Stars: ✭ 78 (+95%)
Mutual labels:  org-mode
emacs-ob-racket
Emacs Org-Mode Babel code block Racket support
Stars: ✭ 22 (-45%)
Mutual labels:  org-mode
Ob Async
Asynchronous src_block execution for org-babel
Stars: ✭ 249 (+522.5%)
Mutual labels:  org-mode
rdv-solidarites.fr
Prise de RDV pour les servics publics
Stars: ✭ 33 (-17.5%)
Mutual labels:  agenda
org-recent-headings
Go to recently used Org headings
Stars: ✭ 47 (+17.5%)
Mutual labels:  org-mode
agenda
Org agenda in the console
Stars: ✭ 112 (+180%)
Mutual labels:  org-mode
Dolibarr
Dolibarr ERP CRM is a modern software package to manage your company or foundation's activity (contacts, suppliers, invoices, orders, stocks, agenda, accounting, ...). It is open source software (written in PHP) and designed for small and medium businesses, foundations and freelancers. You can freely install, use and distribute it as a standalon…
Stars: ✭ 2,877 (+7092.5%)
Mutual labels:  agenda
org-preview-html
Automatically preview org-exported HTML files within Emacs.
Stars: ✭ 160 (+300%)
Mutual labels:  org-mode
my-emacs
My Emacs configuration
Stars: ✭ 35 (-12.5%)
Mutual labels:  org-mode
nativescript-calendar
📅 NativeScript plugin to Create, Delete and Find Events in the native Calendar
Stars: ✭ 44 (+10%)
Mutual labels:  agenda
eva
Emacs-based Virtual Assistant
Stars: ✭ 133 (+232.5%)
Mutual labels:  org-mode
kalend
React calendar component with support for multiple views and events
Stars: ✭ 135 (+237.5%)
Mutual labels:  agenda
dotfiles
My dotfiles - Emacs centric OSX Big Sur
Stars: ✭ 29 (-27.5%)
Mutual labels:  org-mode
PlanningSup
Planning universitaire réalisé en Nuxt.js
Stars: ✭ 16 (-60%)
Mutual labels:  agenda
uniorg
An accurate Org-mode parser
Stars: ✭ 190 (+375%)
Mutual labels:  org-mode
this-month-in-org
A monthly blog on developments with Org
Stars: ✭ 40 (+0%)
Mutual labels:  org-mode

License GPL 3 MELPA

idle-org-agenda

Basically, if you don't touch Emacs idle-org-agenda will display your org-agenda after certain time. That can be useful to remember tasks after come back to work.

This project comes from John Wiegley's mail at the gmane mailing list http://article.gmane.org/gmane.emacs.orgmode/23047

Installation

MELPA

Just install the idle-org-agenda package!

Manual

Put idle-org-agenda.el in your load-path, and eval (require 'idle-org-agenda').

use-package

Easy try with use-package

   (use-package idle-org-agenda
     :after org-agenda
     :ensure t
     :config (idle-org-agenda-mode))

How it works

Run idle-org-agenda-mode and don't touch the keyboard. :)

Additional Configuration

You can define different agendas by using org-agenda-custom-commands.

(setq org-agenda-custom-commands
   (quote
    (("c" . "Categories")
     ("ce" "Emacs" tags-todo "emacs" nil)
     ("cs" "School" tags-todo "school" nil)
     ("cw" "work" tags-todo "work" nil)
     ("cb" "BLOG" tags-todo "blog" nil)
     ("ci" "Important" tags-todo "important" nil)
     ("w" "Weekly agenda" agenda "You can write here your custom agenda"))))
(custom-set-variables
 '(idle-org-agenda-interval 600) ;; 10 x 60 seconds
 '(idle-org-agenda-key "cb")     ;; Choose your specific agenda
 '(idle-org-agenda-mode t))
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].