diff --git a/home/wm/alacritty.nix b/home/wm/alacritty.nix index 3700c0e..20b106e 100644 --- a/home/wm/alacritty.nix +++ b/home/wm/alacritty.nix @@ -1,5 +1,20 @@ +{ lib, pkgs, ... }: { programs.alacritty = { enable = true; + + settings = { + + bell = + let + play = lib.getExe' pkgs.sox "play"; + in + { + "command" = { + program = "${play}"; + args = [ "${./src/win10notify.mp3}" ]; + }; + }; + }; }; } diff --git a/home/wm/src/win10notify.mp3 b/home/wm/src/win10notify.mp3 new file mode 100644 index 0000000..d40a0b3 Binary files /dev/null and b/home/wm/src/win10notify.mp3 differ