Skip to content

Instantly share code, notes, and snippets.

@doitian
doitian / org-pomodoro.el
Last active February 3, 2018 12:59
org-pomodoro: estimate using # pomodoro, see clocksum using # pomodoro, show timer in modelline TODO: make it a package
(defvar org-pomodoro-minutes 25)
(defvar org-pomodoro-cancelling nil)
(defvar org-pomodoro-command (locate-file "pomodoro" exec-path))
(defun org-pomodoro-on-org-load ()
(push (cons "p" org-pomodoro-minutes) org-effort-durations)
(push '("Effort_ALL" . "1p 2p 3p 4p 5p 6p 7p 8p") org-global-properties)
(define-key org-mode-map "\C-c\C-x'" 'org-pomodoro-columns)
(define-key org-agenda-mode-map "\C-c\C-x'" 'org-pomodoro-agenda-columns))
@erikh
erikh / hack.sh
Created March 31, 2012 07:02 — forked from DAddYE/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#