#!/bin/sh TIME=0 # Work on the task (default: 25 min) WORK_TIME=25 BREAK_TIME=5 # Log informations LOG_DIR="${HOME}/.pomodoro" LOG_TASK_NAME=$(date +"week-%V-%Y.txt") LOG_TASK_PATH="${LOG_DIR}/${LOG_TASK_NAME}" # Task information (name, path, …) TASK_NAME="${1}" TASK_PATH="${LOG_DIR}/current.task" # Create the log dir if [ ! -f "${LOG_DIR}" ]; then mkdir -p -- "${LOG_DIR}" fi # Create the task file if [ ! -f "${TASK_PATH}" ]; then touch "${TASK_PATH}" fi # Create the task log file if [ ! -f "${LOG_TASK_PATH}" ]; then touch "${LOG_TASK_PATH}" fi # Start working startedTime=$(date +"%H:%M") printf '%b' "${TASK_NAME}\n${TIME}" > "${TASK_PATH}" # Tiny timer while [ "${TIME}" != "${WORK_TIME}" ]; do sleep 60 TIME=$((TIME+1)) printf '%b' "${TASK_NAME}\n${TIME}" > "${TASK_PATH}" done # Write logs printf '%b' "$(date +"%A (%F) $startedTime → %H:%M") $TASK_NAME" >> "${LOG_TASK_PATH}" # Start break printf '%b' "BREAK\n${BREAK_TIME}" > "${TASK_PATH}" while [ "${BREAK_TIME}" > 0 ]; do sleep 60 BREAK_TIME=$((BREAK_TIME-1)) printf '%b' "BREAK\n${BREAK_TIME}" > "${TASK_PATH}" done exit 0