1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 08:58:52 +00:00
dotfiles/.config/fish/functions/timer.fish

15 lines
368 B
Fish
Raw Normal View History

2019-06-29 23:14:54 +00:00
# Defined in /tmp/fish.HpGyIZ/timer.fish @ line 2
function timer
if tty | grep 'not a tty'
qb / ":quickmark-load timer";
else
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
end