Added scroll lock indication

This commit is contained in:
Markus Koch 2015-04-04 21:36:53 +02:00
parent acc0b51e1a
commit 57d480a936
1 changed files with 10 additions and 6 deletions

View File

@ -1,8 +1,12 @@
#!/bin/bash
# Copy this directly into the gnome shortcut manager.
# Depends: alsa-utils
#
# Name: Mute/Unmute Microphone
# Function : Mute/Unmute Microphone
# Depends : alsa-utils
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"
# 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;
notify-send "Microphone" "The microphone is now $onoff." --hint int:transient:1 --icon=file:///usr/share/icons/Adwaita/scalable/devices/audio-input-microphone-symbolic.svg