mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
vm idle indicator
This commit is contained in:
@@ -36,15 +36,15 @@ const COL_HL_EXT = {
|
||||
}
|
||||
|
||||
const EXEC_FUNS = {
|
||||
"wav": (f) => _G.shell.execute(`playwav ${f} -i`),
|
||||
"adpcm": (f) => _G.shell.execute(`playwav ${f} -i`),
|
||||
"mp3": (f) => _G.shell.execute(`playmp3 ${f} -i`),
|
||||
"mp2": (f) => _G.shell.execute(`playmp2 ${f} -i`),
|
||||
"mov": (f) => _G.shell.execute(`playmov ${f} -i`),
|
||||
"pcm": (f) => _G.shell.execute(`playpcm ${f} -i`),
|
||||
"ipf1": (f) => _G.shell.execute(`decodeipf ${f} -i`),
|
||||
"ipf2": (f) => _G.shell.execute(`decodeipf ${f} -i`),
|
||||
"bas": (f) => _G.shell.execute(`basic ${f}`)
|
||||
"wav": (f) => _G.shell.execute(`playwav "${f}" -i`),
|
||||
"adpcm": (f) => _G.shell.execute(`playwav "${f}" -i`),
|
||||
"mp3": (f) => _G.shell.execute(`playmp3 "${f}" -i`),
|
||||
"mp2": (f) => _G.shell.execute(`playmp2 "${f}" -i`),
|
||||
"mov": (f) => _G.shell.execute(`playmov "${f}" -i`),
|
||||
"pcm": (f) => _G.shell.execute(`playpcm "${f}" -i`),
|
||||
"ipf1": (f) => _G.shell.execute(`decodeipf "${f}" -i`),
|
||||
"ipf2": (f) => _G.shell.execute(`decodeipf "${f}" -i`),
|
||||
"bas": (f) => _G.shell.execute(`basic "${f}"`)
|
||||
}
|
||||
|
||||
let windowMode = 0 // 0 == left, 1 == right
|
||||
|
||||
Reference in New Issue
Block a user