feat: add win wsl

This commit is contained in:
小尛 2023-04-24 18:48:36 +08:00
parent 156e03306a
commit 24a838646d
2 changed files with 3 additions and 8 deletions

View File

@ -24,8 +24,10 @@ string.width = api.nvim_strwidth
local system = Trans.system local system = Trans.system
local f = local f =
vim.fn.has 'wsl' == 1 and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
system == 'mac' and 'say %q' or system == 'mac' and 'say %q' or
system == 'termux' and 'termux-tts-speak %q' or system == 'termux' and 'termux-tts-speak %q' or
system == 'win' and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
system == 'linux' and 'echo %q | festival --tts' or system == 'linux' and 'echo %q | festival --tts' or
'node ' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q' 'node ' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
-- 'python ' .. Trans.relative_path { 'pytts', 'say.py' } .. ' %q' -- 'python ' .. Trans.relative_path { 'pytts', 'say.py' } .. ' %q'

View File

@ -1,7 +0,0 @@
import pyttsx3
import sys
a = pyttsx3.init()
a.say(sys.argv[1])
a.runAndWait()