pkgs: change-audio: 0.1.2 -> 0.2.0
Allow muting microphone and speakers, with refactor to make it DRY.
This commit is contained in:
parent
2d7f01f035
commit
119504d0b5
|
@ -2,22 +2,61 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
if [ "$1" = "up" ]; then
|
NOTIFY=(
|
||||||
|
notify-send
|
||||||
|
-u low
|
||||||
|
-h string:x-canonical-private-synchronous:change-audio
|
||||||
|
)
|
||||||
|
|
||||||
|
do_change_volume() {
|
||||||
|
if [ "$1" = "up" ]; then
|
||||||
upDown="-i"
|
upDown="-i"
|
||||||
else
|
else
|
||||||
upDown="-d"
|
upDown="-d"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pamixer --allow-boost "$upDown" "$2"
|
pamixer --allow-boost "$upDown" "$2"
|
||||||
newVolume="$(pamixer --get-volume || true)"
|
newVolume="$(pamixer --get-volume || true)"
|
||||||
[ "$(pamixer --get-volume-human)" = "muted" ] && isMuted=true
|
[ "$(pamixer --get-volume-human)" = "muted" ] && isMuted=true
|
||||||
|
|
||||||
MSG="Set volume to $newVolume%"
|
MSG="Set volume to $newVolume%"
|
||||||
if [ "${isMuted:-false}" = true ]; then
|
if [ "${isMuted:-false}" = true ]; then
|
||||||
MSG="$MSG (muted)"
|
MSG="$MSG (muted)"
|
||||||
fi
|
fi
|
||||||
|
"${NOTIFY[@]}" \
|
||||||
notify-send -u low \
|
|
||||||
-h string:x-canonical-private-synchronous:change-audio \
|
|
||||||
-h "int:value:$newVolume" \
|
-h "int:value:$newVolume" \
|
||||||
-- "$MSG"
|
-- "$MSG"
|
||||||
|
}
|
||||||
|
|
||||||
|
do_toggle() {
|
||||||
|
args=()
|
||||||
|
if [ "${2:-audio}" = mic ]; then
|
||||||
|
args+=(--default-source)
|
||||||
|
MSG="Toggled microphone"
|
||||||
|
else
|
||||||
|
MSG="Toggled audio output"
|
||||||
|
fi
|
||||||
|
|
||||||
|
pamixer "${args[@]}" --toggle-mute
|
||||||
|
|
||||||
|
if [ "$(pamixer "${args[@]}" --get-mute)" = true ]; then
|
||||||
|
MSG="$MSG (muted)"
|
||||||
|
else
|
||||||
|
MSG="$MSG (unmuted)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
"${NOTIFY[@]}" -- "$MSG"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
up|down)
|
||||||
|
do_change_volume "$@"
|
||||||
|
;;
|
||||||
|
toggle)
|
||||||
|
do_toggle "$@"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "No suche option '$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
|
{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
|
||||||
stdenvNoCC.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "change-audio";
|
pname = "change-audio";
|
||||||
version = "0.1.2";
|
version = "0.2.0";
|
||||||
|
|
||||||
src = ./change-audio;
|
src = ./change-audio;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue