Skip to main content

🔊 Play music while and after jobs complete

Project description

🔊 Play sounds while and after shell jobs complete

onhold is a command-line utility that allows you to play music while a long job completes.

ding is command-line utility that will play a sound after a long job completes.

Both utilities will take data that is piped into their standard inputs and pipe it to standard output. That is to say that data piped into onhold and ding will be piped right back out.

$ echo "Hello!" | onhold
Hello!

As a result, you can build pipelines with onhold and ding.

For example, you can download an ISO with http, visualize the progress with pv, play music with onhold while writing to /dev/null, and when it's finished, play a sound with ding.

$ export URL="https://releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso"
$ http "$URL" | pv | onhold | ding > /dev/null

onhold

You can either set the $ONHOLD environment variable to the song you'd like to play, or supply the song with the -s flag.

$ export ONHOLD="~/Music/song.mp3"
$ pv /dev/zero | onhold > /dev/null

This allows you to set $ONHOLD in your ~/.bashrc.

You can also specify it with a flag.

$ pv /dev/zero | onhold -s song.mp3 > /dev/null

onhold comes with a default song that will play if neither $ONHOLD or -s are set, and it will print a warning to standard error so that standard ouput is unchanged. This warning can be suppressed with the -i flag.

$ echo "Hello!" | onhold
Please set $ONHOLD or use the -s flag.
Hello!

ding

You can either set the $DING environment variable to the sound you'd like to play, or supply the sound with the -s flag.

# You can run ding after a command or as part of a pipeline
$ export DING="~/Music/ding.ogg"
$ sleep 5; ding
$ echo "Hello!" | ding
Hello!

This allows you to set $DING in your ~/.bashrc.

You can also specify it with a flag.

$ echo "Hello!" | ding -s ding.ogg
Hello!

ding comes with a default sound that will play if neither $DING or -s are set, and it will print a warning to standard error so that standard ouput is unchanged. This warning can be suppressed with the -i flag.

$ echo "Hello!" | ding
Please set $DING or use the -s flag.
Hello!

Installation

Dependencies

  • A Unix shell like Bash
  • Python 3.8+
  • requirements.txt

Linux

  • GStreamer

On Ubuntu, you will need to install gstreamer1.0-python3-plugin-loader and python3-gst-1.0.

sudo apt install gstreamer1.0-python3-plugin-loader python3-gst-1.0

PyPI

$ python3 -m pip install onhold

GitHub

$ python3 -m pip install -r requirements.txt
$ python3 setup.py install

Help

onhold

$ onhold --help
Usage: onhold [OPTIONS]

  Play the specified sound file while data is passed in through standard
  input and passed through standard output.

Options:
  -s, --sound_path PATH  Path to sound to play.
  -i, --ignore           Suppress warnings.
  --help                 Show this message and exit.

ding

$ ding --help
Usage: ding [OPTIONS]

  Play specified sound after job is complete.

Options:
  -s, --sound_path PATH  Path to sound to play.
  -i, --ignore           Suppress warnings.
  --help                 Show this message and exit.

License

See LICENSE. If you'd like to use this project with a different license, please get in touch.

Credit

Music

See CREDIT.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

onhold-0.3.4.tar.gz (7.5 MB view details)

Uploaded Source

Built Distribution

onhold-0.3.4-py36-none-any.whl (7.6 MB view details)

Uploaded Python 3.6

File details

Details for the file onhold-0.3.4.tar.gz.

File metadata

  • Download URL: onhold-0.3.4.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for onhold-0.3.4.tar.gz
Algorithm Hash digest
SHA256 f50064d85c42f25ee4fc8783b6a68d26663d49b24c310dd85955ec3f077863d5
MD5 b53d4b6441d126ed22c50440c11a2e61
BLAKE2b-256 d02aa9aa3ced40b72b989d7b7bc8a634e77eecccae4de6a93f2b9f591a7513ab

See more details on using hashes here.

File details

Details for the file onhold-0.3.4-py36-none-any.whl.

File metadata

  • Download URL: onhold-0.3.4-py36-none-any.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: Python 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.5

File hashes

Hashes for onhold-0.3.4-py36-none-any.whl
Algorithm Hash digest
SHA256 6b3d2ee649aee7a2b3e0fedc24a7bc6a92f1e3d5e4e8a88f4194a2be6007e21a
MD5 5682c7536b2427e859f20bb59f4e3cbe
BLAKE2b-256 3d7cc5a058279118f95afcf3bfea78240ab97bc6ca0d1be41f57956777ae1cf8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page