2024-12-18 09:40:11 +03:00
|
|
|
{ __findFile, pkgs, ... }:
|
2024-11-22 18:44:10 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +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
|
|
|
|
2024-12-18 09:40:11 +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
|
|
|
|
2024-12-18 09:40:11 +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
|
|
|
}
|