My dotfiles
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

14 líneas
449 B

  1. #!/bin/sh
  2. card=$(aplay -l | grep Analog | awk '{print $2}' | head -c-2)
  3. if [ "$(amixer -c"$card" get "Capture" | grep -c "\[on\]")" -gt 0 ]; then
  4. [ $# -ge 1 ] && amixer -c"$card" set 'Capture' nocap
  5. [ $# -ge 1 ] && notify-send -t 700 -i "mic-off" "Microphone Muted!"
  6. printf ""
  7. else
  8. [ $# -ge 1 ] && amixer -c"$card" set 'Capture' cap
  9. [ $# -ge 1 ] && notify-send -t 700 -i "mic-on" "Microphone Activated!"
  10. printf ""
  11. fi