Skip to content

Instantly share code, notes, and snippets.

@gwpl
Created February 21, 2025 16:01
Show Gist options
  • Save gwpl/ac327dcde01e3255e49a9cd2da936815 to your computer and use it in GitHub Desktop.
Save gwpl/ac327dcde01e3255e49a9cd2da936815 to your computer and use it in GitHub Desktop.
c_beep : C level beep sound from terminal

Productivity Hack of a day:

If you repeat builds that take time , copying files, partitions... just add c_beep after long running command!

long running command ; c_beep

Define c_beep as alias or function or just file in PATH:

alias c_beep='sox -n -r 44100 -c 2 /tmp/c_beep.wav synth 2 sine 440 && play /tmp/c_beep.wav'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment