#!/bin/bash if [ -f /tmp/mute.lock ]; then aumix -v 70 rm -f /tmp/mute.lock else touch /tmp/mute.lock aumix -v 0 fi exit 0