mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
15 lines
357 B
Bash
Executable File
15 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mic=$(pactl get-source-mute @DEFAULT_SOURCE@ | awk '{print $2}')
|
|
|
|
if [ "$1" == "toggle" ]; then
|
|
pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
|
fi
|
|
|
|
mic=$(pactl get-source-mute @DEFAULT_SOURCE@ | awk '{print $2}')
|
|
|
|
if [ "$mic" == "yes" ]; then
|
|
echo '{"text":"","class":"mic-muted"}'
|
|
else
|
|
echo '{"text":"","class":"mic-unmuted"}'
|
|
fi |