1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +02:00

docs(dynamic values): link to scripts/ironvars pages

Also adds a little bit of clarification around script syntax.
This commit is contained in:
Jake Stanger 2023-10-16 22:39:48 +01:00 committed by GitHub
parent f93a66f83a
commit 917c1bd52e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
In some configuration locations, Ironbar supports dynamic values, In some configuration locations, Ironbar supports dynamic values,
meaning you can inject content into the bar from an external source. meaning you can inject content into the bar from an external source.
Currently two dynamic content sources are supported - scripts and ironvars. Currently two dynamic content sources are supported - [scripts](scripts) (via shorthand syntax) and [ironvars](ironvars).
## Dynamic String ## Dynamic String
@ -36,4 +36,4 @@ Example:
```toml ```toml
show_if = "exit 0" # script show_if = "exit 0" # script
show_if = "#show_module" # variable show_if = "#show_module" # variable
``` ```