display_polybar_message
Send custom notifications to the polybar status bar for user alerts or operation status. Configure message content, duration, text color, and background color to fit specific needs.
Instructions
Display a message in polybar status bar. Useful for notifying the user when an operation is complete or when waiting for user input.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
background | No | Background color for the message (default: #333333) | |
color | No | Text color for the message (default: #ffffff) | |
duration | No | Duration in seconds to display the message (default: 5) | |
message | Yes | The message to display in polybar |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"background": {
"description": "Background color for the message (default: #333333)",
"type": "string"
},
"color": {
"description": "Text color for the message (default: #ffffff)",
"type": "string"
},
"duration": {
"description": "Duration in seconds to display the message (default: 5)",
"type": "number"
},
"message": {
"description": "The message to display in polybar",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}