-
Notifications
You must be signed in to change notification settings - Fork 59
Controlling Ironbar
Ironbar includes a simple IPC server which can be used to control it programmatically at runtime.
It also includes a command line interface, which can be used for interacting with the IPC server.
This is shipped as part of the ironbar
binary. To view commands, you can use ironbar --help
.
You can also view help per-command, for example using ironbar set --help
.
Responses are handled by writing their type to stdout, followed by any value starting on the next line. Error responses are written to stderr in the same format.
Example:
$ ironbar set subject world
ok
$ ironbar get subject
ok
world
The server listens on a Unix socket.
This can usually be found at /run/user/$UID/ironbar-ipc.sock
.
Commands and responses are sent as JSON objects, denoted by their type
key.
The message buffer is currently limited to 1024
bytes.
Particularly large messages will be truncated or cause an error.
Sends a ping request to the IPC.
Responds with ok
.
{
"type": "ping"
}
Opens the GTK inspector window.
Responds with ok
.
{
"type": "inspect"
}
Restarts the bars, reloading the config in the process.
The IPC server and main GTK application are untouched.
Responds with ok
.
{
"type": "reload"
}
Gets an ironvar value.
Responds with ok_value
if the value exists, otherwise error
.
{
"type": "get",
"key": "foo"
}
Sets an ironvar value.
Responds with ok
.
{
"type": "set",
"key": "foo",
"value": "bar"
}
Loads an additional CSS stylesheet, with hot-reloading enabled.
Responds with ok
if the stylesheet exists, otherwise error
.
{
"type": "load_css",
"path": "/path/to/style.css"
}
Sets a bar's visibility.
Responds with ok
if the bar exists, otherwise error
.
{
"type": "set_visible",
"bar_name": "bar-123",
"visible": true
}
Gets a bar's visibility.
Responds with ok_value
and the visibility (true
/false
) if the bar exists, otherwise error
.
{
"type": "get_visible",
"bar_name": "bar-123"
}
Toggles the open/closed state for a module's popup. Since each bar only has a single popup, any open popup on the bar is closed.
Responds with ok
if the popup exists, otherwise error
.
{
"type": "toggle_popup",
"bar_name": "DP-2-13",
"name": "clock"
}
Sets a module's popup open, regardless of its current state. Since each bar only has a single popup, any open popup on the bar is closed.
Responds with ok
if the popup exists, otherwise error
.
{
"type": "open_popup",
"bar_name": "DP-2-13",
"name": "clock"
}
Sets the popup on a bar closed, regardless of which module it is open for.
Responds with ok
if the popup exists, otherwise error
.
{
"type": "toggle_popup",
"bar_name": "DP-2-13"
}
The operation completed successfully, with no response data.
{
"type": "ok"
}
The operation completed successfully, with response data.
{
"type": "ok_value",
"value": "lorem ipsum"
}
The operation failed.
Message is optional.
{
"type": "error",
"message": "lorem ipsum"
}