pkgs: change-audio: 0.1.0 -> 0.1.1

Fix issue with not showing notification at 0% volume.
This commit is contained in:
Bruno BELANYI 2021-11-12 09:40:37 +01:00
parent cef430ed39
commit 7d31aa93db
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ else
fi
pamixer --allow-boost "$upDown" "$2"
newVolume="$(pamixer --get-volume)"
newVolume="$(pamixer --get-volume || true)"
notify-send -u low \
-h string:x-canonical-private-synchronous:change-audio \

View file

@ -1,7 +1,7 @@
{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "change-audio";
version = "0.1.0";
version = "0.1.1";
src = ./change-audio;