I’ve switched to another tiling window manager called awesome and it’s really like its name suggests. It’s more a window manager framework that can be programmed in lua to create a window manager that does exactly what you want it to do. Awesome has a lua library called naughty for displaying notifications. Now my idea [...]
Posts Tagged ‘org-mode’
Integrating Emacs’ org-mode with the Awesome window manager
Posted: March 4, 2009 in awesome, Emacs, GNU/LinuxTags: awesome, Emacs, org-mode
18
Calling org-remember from inside conkeror
Posted: November 14, 2008 in Applications, EmacsTags: Add new tag, conkeror, Emacs, org, org-mode, org-remember, remember
I use Carsten Dominik’s great emacs package org-mode for project planning, appointments and TODOs (org-mode homepage). One cool feature is that it integrates nicely with the remember package. So when an idea comes into my mind I need to remember for later, I hit M-x org-remember RET which presents me a buffer with a custom [...]
Some calendar and org-mode integration stuff
Posted: July 3, 2008 in EmacsTags: calendar, Emacs, org-mode
The following code binds RET in calendar mode to a function that opens an org agenda buffer for that day (or better that week). (defun th-calendar-open-agenda () (interactive) (let* ((calendar-date (or ;; the date at point in the calendar buffer (calendar-cursor-to-date) ;; if there’s none, use the curren date (calendar-current-date))) (day (time-to-days (encode-time 1 1 [...]