zenity/internal/zenutil/osascripts/list.gojs
2022-06-02 00:00:08 +01:00

13 lines
269 B
Plaintext

{{template "common" .}}
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}})