diff options
author | self <self@sateoki.xyz> | 2022-04-10 12:43:52 +0100 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-04-10 12:43:52 +0100 |
commit | 131bdd3813c481f01df2af16bfda5553c37ec3ed (patch) | |
tree | 28a9d4280256b3695008af39a98067a5c6598b28 /scripts/change-audio | |
parent | b660841140b7bc12f9147316515c62dc2ca95583 (diff) |
Removed tone from change-audio script
Diffstat (limited to 'scripts/change-audio')
-rwxr-xr-x | scripts/change-audio | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/change-audio b/scripts/change-audio new file mode 100755 index 0000000..229c47f --- /dev/null +++ b/scripts/change-audio @@ -0,0 +1,21 @@ +#!/bin/bash +# change-audio +# Shamelessly copied from the Arch Linux wiki. + +# Arbitrary but unique message tag +msgTag="myvolume" + +# Change the volume using alsa(might differ if you use pulseaudio) +amixer -c 0 set Master "$@" > /dev/null + +# Query amixer for the current volume and whether or not the speaker is muted +volume="$(amixer -c 0 get Master | tail -1 | awk '{print $4}' | sed 's/[^0-9]*//g')" +mute="$(amixer -c 0 get Master | tail -1 | awk '{print $6}' | sed 's/[^a-z]*//g')" +if [[ $volume == 0 || "$mute" == "off" ]]; then + # Show the sound muted notification + dunstify -a "changeVolume" -u low -i audio-volume-muted -h string:x-dunst-stack-tag:$msgTag "Volume muted" +else + # Show the volume notification + dunstify -a "changeVolume" -u low -i audio-volume-high -h string:x-dunst-stack-tag:$msgTag \ + -h int:value:"$volume" "Volume: ${volume}%" +fi |