Skip to content

Instantly share code, notes, and snippets.

@paul-english
Created March 23, 2011 20:47
Show Gist options
  • Save paul-english/883929 to your computer and use it in GitHub Desktop.
Save paul-english/883929 to your computer and use it in GitHub Desktop.
Use org-mode & ttytter to post to twitter
(add-hook 'org-clock-in-hook
(lambda ()
(when (string-match "^tweet" org-clock-heading)
(message
(shell-command-to-string (concat
"ttytter -status='"
(replace-regexp-in-string "^tweet " "" org-clock-heading)
"'"))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment