A friend told that at the trading company he worked at, traders set up distinct sounds for alerts.
I was hoping someone with a more direct source would comment in the thread but a quick Cmd-F doesn’t turn up anything!
271–280 of 336 posts
I was hoping someone with a more direct source would comment in the thread but a quick Cmd-F doesn’t turn up anything!
say done`stupidlylongrunningcommand | say 'stupdily long running command complete'` a lot.
Add this to your ~/.zshrc or ~/.bashrc
alias alertme='printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a'
I add this after longish tasks - eg:
python longtest.py; alertme
seeddb; alertme
I also commonly use a "say" command to just get notified when a long running command is done.