feat(shell): use windows 10 notification sound as bell

This commit is contained in:
etwas 2025-02-12 11:11:37 +01:00
parent 2ccbf79bb5
commit 7825c4add2
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
2 changed files with 15 additions and 0 deletions

View file

@ -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}" ];
};
};
};
};
}

BIN
home/wm/src/win10notify.mp3 Normal file

Binary file not shown.