Last active
January 17, 2018 14:24
-
-
Save rbecheras/ac96fea0bfccd2540b96fe14b1d3dbaa to your computer and use it in GitHub Desktop.
Ringtone Beep on Ubuntu Gnome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BEEP=/usr/share/sounds/gnome/default/alerts/glass.ogg | |
VOL_MAX=35536 | |
CENT=100 | |
if [[ -z $1 ]] | |
then | |
CURSOR=100 | |
else | |
CURSOR=$1 | |
fi | |
VOL=$((VOL_MAX * CURSOR / CENT)) | |
echo "Play ringtone at $CURSOR% ($VOL/$VOL_MAX)" | |
paplay --volume="$VOL" "$BEEP" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install it:
Use it