Multiple external_script with py3status

I recently switched to py3status to populate my i3bar. I had several scripts I wanted to call that generate some output for the bar. Below is an example how this can be accomplished.
order += "external_script foo"
order += "external_script bar"
external_script foo {
format = "{output}"
script_path = "/path/to/foo tray"
cache_timeout = 15
}
external_script bar {
format = "{output}"
script_path = "/path/to/bar tray"
cache_timeout = 15
}
0 comments
Reply