zenity/internal/zenutil/osascripts/dialog.gojs

21 lines
425 B
Plaintext
Raw Normal View History

2020-01-21 07:03:58 -05:00
var app = Application.currentApplication()
app.includeStandardAdditions = true
app.activate()
2022-05-05 08:03:53 -04:00
ObjC.import('stdio')
ObjC.import('stdlib')
var opts = {{json .Options}}
{{- if .IconPath}}
2022-05-05 08:03:53 -04:00
opts.withIcon = Path({{json .IconPath}})
{{- end}}
2022-05-05 08:03:53 -04:00
var res = app.{{.Operation}}({{json .Text}}, opts)
2020-01-28 07:46:43 -05:00
if (res.gaveUp) {
$.exit(5)
}
if (res.buttonReturned === {{json .Extra}}) {
2021-03-03 21:52:05 -05:00
$.puts(res.buttonReturned)
$.exit(1)
2021-03-04 21:01:59 -05:00
}
res.textReturned