start new:
tmux
start new with session name:
tmux new -s myname
#!/bin/bash | |
# | |
# Small Pomodoro Timer | |
# Based on https://en.wikipedia.org/wiki/Pomodoro_Technique | |
# Requires terminal-notifier for OSX | |
# Author: [email protected] | |
# All times in minutes | |
work=30; | |
break_small=5; |