1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-04 14:04:17 +00:00
dotfiles/.config/fish/functions/timer.fish

11 lines
277 B
Fish

# Defined in /tmp/fish.99BpV1/timer.fish @ line 2
function timer
tmux new-session -d 'while true
for i in (seq -w 1200 -1 0)
echo (math -s0 $i/60):(math $i%60)
sleep 1
end
zenity --info --text=Time to take a break!
end'
end