zenity/internal/zenutil/osascripts/list.gojs
2022-05-09 15:50:25 +01:00

15 lines
325 B
Plaintext

var app = Application.currentApplication()
app.includeStandardAdditions = true
ObjC.import('stdio')
ObjC.import('stdlib')
try {
var res = app.chooseFromList({{json .Items}}, {{json .Options}})
} catch (e) {
$.dprintf(2, e)
$.exit(-1)
}
if (res === false) $.exit(1)
if (res.length !== 0) res.join({{json .Separator}})