Skip to content

Commit 2243d10

Browse files
author
Risto Toijala
committed
Document custom-execs
1 parent 59181f2 commit 2243d10

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

man/waybar-custom.5.scd

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ waybar - custom module
99
The *custom* module displays either the output of a script or static text.
1010
To display static text, specify only the *format* field.
1111

12+
For sharing a subprocess between several custom modules, see the *custom-execs*
13+
field in waybar(5).
14+
1215
# CONFIGURATION
1316

1417
Addressed by *custom/<name>*

man/waybar.5.scd.in

+88
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ Also a minimal example configuration can be found on the at the bottom of this m
9191
Each file can contain a single object with any of the bar configuration options. In case of duplicate options, the first defined value takes precedence, i.e. including file -> first included file -> etc. Nested includes are permitted, but make sure to avoid circular imports.
9292
For a multi-bar config, the include directive affects only current bar configuration object.
9393

94+
*custom-execs* ++
95+
typeof: array ++
96+
Shared execs for custom modules.
97+
See the section SHARED EXECS FOR CUSTOM MODULES
98+
9499
# MODULE FORMAT
95100

96101
You can use PangoMarkupFormat (See https://developer.gnome.org/pango/stable/PangoMarkupFormat.html#PangoMarkupFormat).
@@ -199,6 +204,89 @@ When positioning Waybar on the left or right side of the screen, sometimes it's
199204

200205
Valid options for the "rotate" property are: 0, 90, 180 and 270.
201206

207+
# SHARED EXECS FOR CUSTOM MODULES
208+
209+
When several custom modules acquire data from the same or similar commands, it
210+
may be desirable to execute only a single instance of the command to minimize
211+
CPU usage. For such cases, the "custom-execs" configuration parameter of a bar
212+
can be used.
213+
214+
"custom-execs" is an array of configuration objects for executed commands. Each
215+
object may contain the following parameters:
216+
217+
*exec*: ++
218+
typeof: string ++
219+
The command to execute, passed as an argument to "sh -c".
220+
221+
*exec-if*: ++
222+
typeof: string ++
223+
The command to execute, which determines if the command in *exec* should be executed.
224+
*exec* will be executed if the exit code of *exec-if* equals 0.
225+
226+
*interval*: ++
227+
typeof: integer ++
228+
The interval (in seconds) in which the information gets polled.
229+
Use *once* if you want to execute the module only on startup.
230+
You can update it manually with a signal. If no *interval* is defined,
231+
it is assumed that the command loops itself.
232+
233+
*restart-interval*: ++
234+
typeof: integer ++
235+
The restart interval (in seconds).
236+
Can't be used with the *interval* option, so only with continuous scripts.
237+
Once the script exits, it'll be re-executed after the *restart-interval*.
238+
239+
*signal*: ++
240+
typeof: integer ++
241+
The signal number used to rerun the command.
242+
Can only be used with the *interval* option.
243+
The number is valid between 1 and N, where *SIGRTMIN+N* = *SIGRTMAX*.
244+
245+
246+
Configuration example with two shared subprocesses:
247+
248+
```
249+
"custom-execs": [
250+
{
251+
// Executed once, restarted after 5 seconds if it exits.
252+
"exec": "my-command arg1 arg2",
253+
"restart-interval": 5
254+
},
255+
{
256+
// foo is executed every 2 seconds, or when the signal SIGRTMIN+8 is received.
257+
// Each time, if foo exits with code 0, bar is executed.
258+
"exec-if": "foo",
259+
"exec": "bar",
260+
"interval": 2,
261+
"signal": 8
262+
}
263+
]
264+
```
265+
266+
The command specified in *exec* must provide a single line of JSON output.
267+
If the command is continuous (no *interval*), it should provide a single line
268+
of JSON output for each update. The JSON should contain an object with module
269+
names as keys and either strings (for raw output) or objects (for JSON output)
270+
as values. See waybar-custom(5) for a description of the formats.
271+
272+
Output example (spread over several lines for readability; the actual command
273+
should print it on one line):
274+
275+
```
276+
{
277+
"custom/xyz#abc": {
278+
"text": "some text to show",
279+
"alt": "some other text",
280+
"tooltip": "tooltip text",
281+
"percentage": 5,
282+
},
283+
"custom/qwerty": "asdf\\nzxcv\\nmyclass\\n"
284+
}
285+
```
286+
287+
The output may contain any number of modules. The modules do not have to stay
288+
constant between output lines. Each module in the output line will be updated.
289+
202290
# SUPPORTED MODULES
203291

204292
- *waybar-backlight(5)*

0 commit comments

Comments
 (0)