Opened this issue 3 years ago · 1 comments
How do I make it update by milliseconds instead of seconds?
I think you can change sleep 1 to sleep 0.001. However, POSIX seems specify it should be a integer number. But GNU coreutils sleep and busybox sleep seems both can use a float number. You can also use busybox usleep which pause microseconds.
sleep 1
sleep 0.001
busybox sleep
busybox usleep
sbar/sbar
Line 70 in e4617f1