Compare commits
2 commits
cef430ed39
...
6ebfa1a8cc
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 6ebfa1a8cc | ||
Bruno BELANYI | 7d31aa93db |
|
@ -118,6 +118,10 @@
|
||||||
nixpkgs-fmt = {
|
nixpkgs-fmt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
shellcheck = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -9,7 +9,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pamixer --allow-boost "$upDown" "$2"
|
pamixer --allow-boost "$upDown" "$2"
|
||||||
newVolume="$(pamixer --get-volume)"
|
newVolume="$(pamixer --get-volume || true)"
|
||||||
|
|
||||||
notify-send -u low \
|
notify-send -u low \
|
||||||
-h string:x-canonical-private-synchronous:change-audio \
|
-h string:x-canonical-private-synchronous:change-audio \
|
||||||
|
|
|
@ -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.0";
|
version = "0.1.1";
|
||||||
|
|
||||||
src = ./change-audio;
|
src = ./change-audio;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue