Changed the way default sounds work. to more accurately how real life clocks sound.

This commit is contained in:
Storm dragon
2016-01-26 11:46:13 -05:00
parent ca5ef8cec4
commit 7fa661deaf
12 changed files with 977 additions and 0 deletions

18
INSTALL Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
#To install using this script:
#chmod 700 INSTALL
#then run by typing ./INSTALL as root or with sudo.
# If you want to install by hand, just copy the commands below the word fi that ends the if statement below. Exclude the exit 0 statement.
if [[ $(whoami) != "root" ]] ; then
echo "Need to be root."
exit 1
fi
cp src/talking-clock /usr/bin/talking-clock
chmod 755 /usr/bin/talking-clock
mkdir -p /usr/share/talking-clock/
cp src/{bell,prepend,15,30,45}.ogg /usr/share/talking-clock/
cp README.md /usr/share/talking-clock/README.md
exit 0