I am trying to use beepr in my Rscripts to tell me when they are done.
But the beep never comes.
here is an example script saved as test.R:
#!/usr/bin/env Rscript
library(beepr)
beep(1)
cat('got here')
Then from the terminal I run
Rscript test.R
I get the printed output, but no sound!
I am running OSX with High Sierra.
If i run with alarm() instead of beep(), I do get a noise (but not the cool sounds beepr has)
Thanks.