Replies: 1 comment
-
|
I've got a couple things in the works that you can try already: Status IconsYou can use // Name: Testing Status
import "@johnlindquist/kit"
while (true) {
await arg({
placeholder: "Set status",
onChoiceFocus: (_, { focused }) => {
let status = focused.value
setStatus({
status,
message: `${status} message...`
})
}
}, [
"default",
"success",
"warn",
"busy",
"error",
"paused"
])
}Open testing-status in Script Kit MenuThe // Name: Menu Example
import "@johnlindquist/kit"
// Set the icon to 👍 and let's you select scripts
menu(`👍`, [
"app-launcher" //The name/id of the script you want to run
]) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to be able to write scripts that create a menu bar icon as a way of showing the status of a script / notifications to the user, for example:
Beta Was this translation helpful? Give feedback.
All reactions