#!/bin/bash timeout=5000 # 5 seconds touchfile=/opt/clearscm/data/shh # This just toggles the creation of the /opt/clearscm/bin/shh file if [ -f $touchfile ]; then rm $touchfile cp ~/.icons/ShhOff.png ~/.icons/Shh.png else # Stop currently playing audio killall play # Stop any Google TTS kill -9 $(cat /tmp/simple_google_tts.pid) # Clean up tmp rm -rf /tmp/simple_google_tts.* # Touch shh file touch $touchfile # Change the icon cp ~/.icons/ShhOn.png ~/.icons/Shh.png fi