format things better

This commit is contained in:
jjanzen 2025-03-10 14:35:44 -05:00
parent 92f79c78e1
commit 73093bdb22

View file

@ -1,61 +1,120 @@
;; -*- lexical-binding: t -*- ;; pomodoro-mode.el --- Introduces a pomodoro timer to your mode-line -*- lexical-binding: t -*-
;; Copyright (C) 2025 jjanzen
;; Author: j. janzen <jjanzen@jjanzen.ca>
;; Version: 0.1
;; Package-Requires: ()
;; Keywords: productivity, convenience
(defvar pomodoro-start-time 0) ;;; Commentary:
(defvar pomodoro-state 'working) ;; This package provides a minor mode to add a simple pomodoro timer to your mode-line.
(defconst pomodoro-work-time (* 25 60)) ;; To activate it, run `M-x pomodoro-global-mode`.
(defconst pomodoro-break-time (* 5 60)) ;; To turn it off, run `M-x pomodoro-global-mode` once again.
(defconst pomodoro-work-symbol "🍅")
(defconst pomodoro-break-symbol "🥫")
;;;###autoload
(defgroup pomodoro nil (defgroup pomodoro nil
"Pomodoro timer" "Pomodoro timer"
:group 'convenience) :group 'convenience)
(defun pomodoro-get-status-string () ;;;###autoload
(defvar pomodoro-curr-time) (defcustom pomodoro-start-time 0
(defvar pomodoro-symbol) "When the current pomodoro break/work session has begun"
(defvar pomodoro-delta) :type '(integer)
(defvar pomodoro-max-time) :group 'pomodoro)
(defvar pomodoro-minutes)
(defvar pomodoro-seconds)
(setq pomodoro-curr-time (floor (float-time))) ;;;###autoload
(setq pomodoro-delta (- pomodoro-curr-time pomodoro-start-time)) (defcustom pomodoro-state 'working
(cond ((equal pomodoro-state 'working) "The current pomodoro state"
(setq pomodoro-symbol pomodoro-work-symbol) :type '(working break)
(setq pomodoro-max-time pomodoro-work-time)) :group 'pomodoro)
((equal pomodoro-state 'break)
(setq pomodoro-symbol pomodoro-break-symbol)
(setq pomodoro-max-time pomodoro-break-time))
(t
(setq pomodoro-symbol "")
(setq pomodoro-max-time 0)))
(if (>= pomodoro-delta pomodoro-max-time)
(setq pomodoro-delta 0)
(setq pomodoro-delta (- pomodoro-max-time pomodoro-delta)))
(setq pomodoro-minutes (/ pomodoro-delta 60))
(setq pomodoro-seconds (% pomodoro-delta 60))
(if (= pomodoro-delta 0) ;;;###autoload
(progn (defcustom pomodoro-work-time (* 25 60)
"The length of a pomodoro work session in seconds"
:type '(integer)
:group 'pomodoro)
;;;###autoload
(defcustom pomodoro-break-time (* 5 60)
"The length of a pomodoro break session in seconds"
:type '(integer)
:group 'pomodoro)
;;;###autoload
(defcustom pomodoro-work-symbol "🍅"
"The symbol to display while in a work session"
:type '(string)
:group 'pomodoro)
;;;###autoload
(defcustom pomodoro-break-symbol "🥫"
"The symbol to display while in a break session"
:type '(string)
:group 'pomodoro)
;;;###autoload
(defun pomodoro-toggle-state ()
"Restart the pomodoro timer and switch to the other state."
(interactive)
(cond ((equal pomodoro-state 'working) (cond ((equal pomodoro-state 'working)
(setq pomodoro-state 'break)) (setq pomodoro-state 'break))
((equal pomodoro-state 'break) ((equal pomodoro-state 'break)
(setq pomodoro-state 'working)) (setq pomodoro-state 'working))
(t (message "should not occur"))) (t
(setq pomodoro-start-time (floor (float-time))))) (user-error "Invalid pomodoro state")))
(format " %s (%02d:%02d)" pomodoro-symbol pomodoro-minutes pomodoro-seconds)) (setq pomodoro-start-time (floor (float-time))))
(progn (defun pomodoro-get-status-string ()
(setq pomodoro-start-time (- (floor (float-time)) 100)) "Get the status string for the pomodoro timer. May update the state if necessary."
(pomodoro-get-status-string)) (let ((curr-time) ;; the current Unix time
(symbol) ;; the symbol to be displayed
(delta) ;; the difference in time
(max-time) ;; the maximum time that can be represented in the current state
(minutes) ;; the number of minutes to display
(seconds)) ;; the number of seconds to display
(define-minor-mode pomodoro-mode
"run a pomodoro timer" ;; check how far into the countdown we are
(setq curr-time (floor (float-time)))
(setq delta (- curr-time pomodoro-start-time))
(cond ((equal pomodoro-state 'working)
(setq symbol pomodoro-work-symbol)
(setq max-time pomodoro-work-time))
((equal pomodoro-state 'break)
(setq symbol pomodoro-break-symbol)
(setq max-time pomodoro-break-time))
(t
(setq symbol "")
(setq max-time 0)))
(if (>= delta max-time)
(setq delta max-time)
(setq delta (- max-time delta)))
;; Get the time in minutes and seconds
(setq minutes (/ delta 60))
(setq seconds (% delta 60))
;; Changing state here kinda violates the single-responsibility principle,
;; but this also prevents me from needing to work with timers which might
;; just be worse that a function that does more than one thing.
(if (<= delta 0)
(progn
(setq delta 0)
(pomodoro-toggle-state)))
(format " %s (%02d:%02d)" symbol minutes seconds)))
(define-minor-mode pomodoro-local-mode
"Run a pomodoro timer. Use pomodoro-mode instead of this."
:init-value nil :init-value nil
:group 'pomodoro
:lighter (:eval (pomodoro-get-status-string))) :lighter (:eval (pomodoro-get-status-string)))
(define-globalized-minor-mode global-pomodoro-mode ;;;###autoload
pomodoro-mode pomodoro-mode (define-globalized-minor-mode pomodoro-mode
pomodoro-local-mode pomodoro-local-mode
"Initialize pomodoro-mode in all buffers"
:group 'pomodoro
(setq pomodoro-state 'working) (setq pomodoro-state 'working)
(setq pomodoro-start-time (floor (float-time)))) (setq pomodoro-start-time (floor (float-time))))
(provide 'pomodoro-mode)