From eb804bdcea123160dfd7db50d2f98b667e651f32 Mon Sep 17 00:00:00 2001 From: Phantop Date: Sat, 5 Oct 2019 20:03:32 -0400 Subject: [PATCH] Fish: better time; Nvim: update plug --- .config/fish/functions/timer.fish | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.config/fish/functions/timer.fish b/.config/fish/functions/timer.fish index bc4ce8e..f31dc45 100644 --- a/.config/fish/functions/timer.fish +++ b/.config/fish/functions/timer.fish @@ -1,10 +1,7 @@ -# Defined in /tmp/fish.99BpV1/timer.fish @ line 2 +# Defined in /tmp/fish.q2rjYH/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! + countdown 20m + zenity --info --text=Time end' end