summaryrefslogtreecommitdiff
path: root/dwm/Scripts/mic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dwm/Scripts/mic.sh')
-rw-r--r--dwm/Scripts/mic.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/dwm/Scripts/mic.sh b/dwm/Scripts/mic.sh
deleted file mode 100644
index 78afaa8..0000000
--- a/dwm/Scripts/mic.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-PIDFILE=/tmp/statMic.pid
-STATUSFILE=/tmp/dsbAMic
-
-kill `cat $PIDFILE`
-if [ $? -eq 0 ]; then
- echo "Shutting down"
- rm $STATUSFILE
- exit
-fi
-
-echo $$ > $PIDFILE
-
-while true; do
-
- MIC=$(amixer get Capture | grep "Front Left:" | sed 's/.*\[\(.*\)\].*/\1/')
-
- echo "$MIC " > $STATUSFILE
- sleep 1
-done