General suggestions about styling "custom" stuff #31
JustSimplyKyle
started this conversation in
General
Replies: 1 comment 5 replies
-
CSS provides an Example: #sysinfo #item:nth-child(1) {
/* this is your cpu */
}
#sysinfo #item:nth-child(2) {
/* this is your memory */
} https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child You can even do some basic formulae with it, which I believe GTK supports. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sys-Info
https://github.com/JakeStanger/ironbar/wiki/Sys-Info
Currently, it's only possible to rice the whole part of sys-info, not individual sections of it.
For example, I have these three modules.
I can't style them individualy, only by the full class
#sysinfo #item
Scripts
You can only have one style.(according to the documentation, it's very much possible that I read this incorrectly)
https://github.com/JakeStanger/ironbar/wiki/script
Maybe a variable like
class
in custom would help?https://github.com/JakeStanger/ironbar/wiki/custom
Beta Was this translation helpful? Give feedback.
All reactions