mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
12 lines
391 B
Bash
Executable File
12 lines
391 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir_icons="/usr/local/bin/icons"
|
|
|
|
mute=$(pactl get-source-mute @DEFAULT_SOURCE@ | sed -n 's/^Mute: //p')
|
|
|
|
if [ "$mute" = "yes" ]; then
|
|
dunstify -a "Microphone" "Microphone" "Microphone is muted" -r 100 -i /usr/local/bin/icons/mic-off.svg
|
|
elif [ "$mute" = "no" ]; then
|
|
dunstify -a "Microphone" "Microphone" "Microphone is unmuted" -r 100 -i /usr/local/bin/icons/mic.svg
|
|
fi
|