mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
10 lines
213 B
Nix
10 lines
213 B
Nix
|
|
{
|
||
|
|
writers,
|
||
|
|
xclip,
|
||
|
|
curl,
|
||
|
|
mpv,
|
||
|
|
}:
|
||
|
|
writers.writeDashBin "ttspaste" ''
|
||
|
|
${xclip}/bin/xclip -selection clipboard -out | ${curl}/bin/curl -G http://tts.r/api/tts --data-urlencode 'text@-' | ${mpv}/bin/mpv -
|
||
|
|
''
|