URL Scheme API
Open Action
Bring Statuz to the foreground or launch it from automations
Open Action
Use the open action when you simply need to launch Statuz or bring its window to the front before performing other automated steps.
Syntax
statuz://open
No parameters are required or accepted.
Examples
Basic Launch
open "statuz://open"
Ensure Statuz Is Running Before Another Command
open "statuz://open"
sleep 1
open "statuz://compose?text=Hello%20World"Use Inside Automation Scripts
#!/bin/bash
# guarantee Statuz is focused before showing the composer
open "statuz://open"
osascript -e 'display notification "Statuz is ready" with title "Automation"'