antonmedv / countdown

Terminal countdown timer
MIT License
1.06k stars 108 forks source link

feature request: please beep on completion #24

Closed sneak closed 1 year ago

sneak commented 2 years ago

alternately, if you don't want to make it annoying by default, have it look at COUNTDOWN_ON_ZERO_COMMAND in the environment, so I can do:

export COUNTDOWN_ON_ZERO_COMMAND='echo -e "\a"'

in my .profile.

antonmedv commented 2 years ago

Try function () countdown $@ | beep

nnashwin commented 1 year ago

I do something similar to this.

I wrote a custom bash function that takes the input of the kitchen time and plays an OS-specific audio file when finished.

alias endSound="cmd_to_play_sound sound_file_to_play"

function cod () {
    countdown "$1" && endSound
}

I add this to .profile and use the function as follows:

$ cod $@

Playing audio in the different OSs is possible, but often requires you to install dependency libraries anyway.

It's probably better (and more customizable!) for you to create your own function and call that from your shell.

antonmedv commented 1 year ago

Solution for macOS

countdown 1s && say beep