My dotfiles
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
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