system_volume
Adjust macOS system volume to a specified level between 0 and 100 using AppleScript integration, enabling precise control for automated workflows or applications.
Instructions
[System control and information] Set system volume
Input Schema
Name | Required | Description | Default |
---|---|---|---|
level | Yes |
Input Schema (JSON Schema)
{
"properties": {
"level": {
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"level"
],
"type": "object"
}