Tom Willemsen
0dbfba6a4d
Mod4-t: start an emacs instance to capture a new todo item Mod4-Shift-t: Show todo list
5 lines
225 B
Bash
Executable file
5 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
|
|
herbstclient rule pseudotile=on once
|
|
emacs -Q -l ~/.emacs.d/site-lisp/org-init.elc \
|
|
--execute "(progn (org-capture nil \"t\") (delete-other-windows) (add-hook 'org-capture-after-finalize-hook 'kill-emacs))"
|