aboutsummaryrefslogtreecommitdiff
path: root/scripts/.local/bin/personal/bar/mute
blob: 7c987a23559b67859b3a77184f98336fdc757a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

SOURCE="alsa_input.usb-R__DE_Microphones_R__DE_NT-USB_Mini_610BAACA-00.mono-fallback"

SOURCE="$(pactl get-default-source)"
VOLUME="$(pactl get-source-volume "$SOURCE" | grep -o [0-9]*% | head -n 1)"

if [[ "$1" == "shortstatus" ]]; then
  if [[ "$VOLUME" == "0%" ]]; then
    echo "Muted"
  else
    echo ""
  fi

  exit
fi

if [[ "$1" == "status" ]]; then
  NAME="$(pactl list sources | grep -o Description:.* | sed -n 's/Description: //g;2p')"

  echo "$NAME ($VOLUME)"

  exit
fi

if [[ "$VOLUME" == "0%" ]]; then
  pactl set-source-volume "$SOURCE" 70%
  notify-send -u low "Unmuted" -r 110
else
  pactl set-source-volume "$SOURCE" 0%
  notify-send -u low "Muted" -r 110
fi