20 lines
473 B
Nix
20 lines
473 B
Nix
{ __findFile, pkgs, ... }:
|
|
{
|
|
text = ''
|
|
function notify() {
|
|
[[ "''$(dndstate)" = "Y" ]] && return
|
|
${pkgs.pipewire}/bin/pw-cat -p ${<static/Notification.ogg>} &
|
|
}
|
|
|
|
function notify_short() {
|
|
[[ "''$(dndstate)" = "Y" ]] && return
|
|
${pkgs.pipewire}/bin/pw-cat -p ${<static/Short.ogg>} &
|
|
}
|
|
|
|
function notify_long() {
|
|
[[ "''$(dndstate)" = "Y" ]] && return
|
|
${pkgs.pipewire}/bin/pw-cat -p ${<static/Long.ogg>} &
|
|
}
|
|
'';
|
|
}
|