Initial commit
This commit is contained in:
commit
c7497d689a
31 changed files with 2149 additions and 0 deletions
10
.speak
Executable file
10
.speak
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
# on teste si la lecture est en cours, pour l'arrêter le cas échéant
|
||||
if [ ! -z $(ps -A | grep espeak | awk '{ print $1 }' ) ]
|
||||
then
|
||||
# kill $(ps -A | grep espeak | awk '{ print $1 }' )
|
||||
killall espeak
|
||||
else
|
||||
xclip -o | espeak -v $1 | true
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue