An open API service indexing awesome lists of open source software.

https://github.com/tethik/beepr

beepr binary to play a short notification sound. Experimenting with rust and linux packaging.
https://github.com/tethik/beepr

Last synced: 10 months ago
JSON representation

beepr binary to play a short notification sound. Experimenting with rust and linux packaging.

Awesome Lists containing this project

README

          

# beepr
beepr is a very simple program to play a single notification sound when run. This
project was just a way for me to learn how to package rust applications in linux.

Uses the [ears](https://crates.io/crates/ears) package to play sound. (It's also a copy of the example code).

Notification sound is taken from [https://www.freesound.org/people/morrisjm/sounds/268756/](https://www.freesound.org/people/morrisjm/sounds/268756/).

# usage
```
beepr
```

What I use it for is long running scripts to know when they've terminated.
```
download_all_of_the_internetz && beepr
```

# install
Arch Linux/Pacman users can download the [arch_pkg/PKGBUILD](arch_pkg/PKGBUILD) file and install it
using `makepkg` and `pacman -U .tar.xz`.

Other linux users can run `make && make install` which will install the files
into `/usr/bin` and `/usr/share/beepr`.