From 0193693a5a5377cbbe4f52e0fbb86fa8752fb3f2 Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Tue, 24 Mar 2020 11:50:29 +0100 Subject: [PATCH] Remove old comment from script --- mute_unmute_microphone.sh | 4 ---- 1 file changed, 4 deletions(-) mode change 100644 => 100755 mute_unmute_microphone.sh diff --git a/mute_unmute_microphone.sh b/mute_unmute_microphone.sh old mode 100644 new mode 100755 index bfbb7d1..d72f1b9 --- a/mute_unmute_microphone.sh +++ b/mute_unmute_microphone.sh @@ -2,10 +2,6 @@ # Function : Mute/Unmute Microphone # Depends : alsa-utils -# Copy this directly into the gnome shortcut manager: -# bash -c "notify-send \"Microphone\" \"The microphone is now `amixer set Capture toggle | grep \"Front\" | tail -n 1 | sed -e 's/.*\[\(.*\)\]/\1/'`.\" --hint int:transient:1 --icon=file:///usr/share/icons/Adwaita/scalable/devices/audio-input-microphone-symbolic.svg" - -# Or link in this script to also toggle the SCROLL-Lock LED. (on when muted) onoff=$(amixer set Capture toggle | grep 'Front' | tail -n 1 | sed -e 's/.*\[\(.*\)\]/\1/'); dash=$(if [ "$onoff" == 'on' ]; then echo -ne '-'; fi); xset ${dash}led;