nix/package/swayscript/script/Notify.nix

20 lines
473 B
Nix
Raw Normal View History

{ __findFile, pkgs, ... }:
2024-11-22 18:44:10 +03:00
{
text = ''
function notify() {
[[ "''$(dndstate)" = "Y" ]] && return
${pkgs.pipewire}/bin/pw-cat -p ${<static/Notification.ogg>} &
}
2024-11-22 18:44:10 +03:00
function notify_short() {
[[ "''$(dndstate)" = "Y" ]] && return
${pkgs.pipewire}/bin/pw-cat -p ${<static/Short.ogg>} &
}
2024-11-22 18:44:10 +03:00
function notify_long() {
[[ "''$(dndstate)" = "Y" ]] && return
${pkgs.pipewire}/bin/pw-cat -p ${<static/Long.ogg>} &
}
'';
2024-11-22 18:44:10 +03:00
}