Merge pull request #24 from happysmile12321/main
add mac specify commit
This commit is contained in:
commit
5355d9c97e
@ -34,6 +34,9 @@ end
|
|||||||
string.play = fn.has('linux') == 1 and function(self)
|
string.play = fn.has('linux') == 1 and function(self)
|
||||||
local cmd = ([[echo "%s" | festival --tts]]):format(self)
|
local cmd = ([[echo "%s" | festival --tts]]):format(self)
|
||||||
fn.jobstart(cmd)
|
fn.jobstart(cmd)
|
||||||
|
end or fn.has('mac') == 1 and function (self)
|
||||||
|
local cmd = ([[say "%s"]]):format(self)
|
||||||
|
fn.jobstart(cmd)
|
||||||
end or function(self)
|
end or function(self)
|
||||||
local seperator = fn.has('unix') and '/' or '\\'
|
local seperator = fn.has('unix') and '/' or '\\'
|
||||||
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
|
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user