This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
# |