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.
- Host: GitHub
- URL: https://github.com/tethik/beepr
- Owner: Tethik
- Created: 2016-05-12T20:39:57.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-02T11:01:24.000Z (over 8 years ago)
- Last Synced: 2025-04-07T15:55:19.327Z (about 1 year ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.