Skip to content

A simple tool that play a sound after each command

License

Notifications You must be signed in to change notification settings

JeremyLARDENOIS/kiku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Kiku

kiku is a very simple tool that play a sound when a command is finished.

The sound of notification is played by mpg123 command and is taken frome here.

Installation

These instructions need to be launched as root.

mkdir /usr/local/share/kiku
cp notif.mp3 /usr/local/share/kiku
cp main.sh /usr/local/share/kiku

These instructions need to be launched as a normal user.

KIKU_SOUND=/usr/local/share/kiku/notif.mp3
echo "KIKU_SOUND=$KIKU_SOUND" >> ~/.bashrc
alias kiku='source /usr/local/share/kiku/main.sh'
echo "alias kiku='source /usr/local/share/kiku/main.sh'" >> ~/.bashrc

You can now use kiku command. Try with sleep 3. To stop it, type stop.

Uninstallation

These instructions need to be launched as root.

rm -rf /usr/local/share/kiku

These instructions need to be launched as a normal user.

sed -i '/KIKU_SOUND/d' ~/.bashrc
sed -i '/alias kiku/d' ~/.bashrc

About

A simple tool that play a sound after each command

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages