my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
922 B

3 years ago
  1. This plugin allows to display command's execution time in a very nonintrusive way.
  2. Timer can be tuned by these two variables:
  3. * `TIMER_PRECISION` allows to control number of decimal places (default `1`)
  4. * `TIMER_FORMAT` allows to adjust display format (default `'/%d'`)
  5. * `TIMER_THRESHOLD` allows to set the minimum execution time that causes the timer to be shown (default `0`)
  6. Sample session:
  7. me@here:~$ sleep 1 /1.0s
  8. me@here:~$ sleep 73 /1m13.0s
  9. me@here:~$ TIMER_FORMAT='[%d]'; TIMER_PRECISION=2 [0.00s]
  10. me@here:~$ head -c50 < /dev/urandom | hexdump
  11. 0000000 b2 16 20 f0 29 1f 61 2d 8a 29 20 8c 8c 39 5a ab
  12. 0000010 21 47 0e f9 ee a4 76 46 71 9e 4f 6b a4 c4 51 cb
  13. 0000020 f9 1f 7e b9 6f 2c ae dd cf 40 6d 64 a8 fb d3 db
  14. 0000030 09 37
  15. 0000032 [0.02s]