diff options
Diffstat (limited to '.local/bin/dunst_espeak.sh')
-rwxr-xr-x | .local/bin/dunst_espeak.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.local/bin/dunst_espeak.sh b/.local/bin/dunst_espeak.sh index 666aa22..8ad43fe 100755 --- a/.local/bin/dunst_espeak.sh +++ b/.local/bin/dunst_espeak.sh @@ -2,6 +2,9 @@ [ "$5" = "LOW" ] && exit [ "$3" ] || exit -words=$(printf "$3" | sed 's/<b>//g' | sed 's/<\/b>//g' | sed 's/[^a-zA-Z0-9?!.,% ]//g') -words=$(printf "%s\n" "$words" | awk '{for (i=1;i<11;i++)print $i }' | tr '\n' ' ') +words=$(printf "%s" "$3" | + sed 's/<b>//g' | + sed 's/<\/b>//g' | + sed 's/[^a-zA-Z0-9?!.,% ]//g') +words=$(printf "%s" "$words" | gsed 's/^[0-9]\+//g') espeak "$words" |