feat: add module class to the root elements of the modules

Previously, the only way to select all the module labels was with the
following kind of selector:
```css
.modules-left > widget > label,
.modules-center > widget > label,
.modules-right > widget > label {
    /* ... */
}
```
(and a matching block for the `box` containers).

Now, this can be expressed as
```css
label.module, box.module {
    /* ... */
}
```
This commit is contained in:
Aleksei Bavshin
2024-02-14 22:04:42 -08:00
parent 2f555a6936
commit d590d508ca
13 changed files with 20 additions and 5 deletions

View File

@ -11,6 +11,8 @@ namespace waybar {
class AModule : public IModule {
public:
static constexpr const char *MODULE_CLASS = "module";
virtual ~AModule();
auto update() -> void override;
virtual auto refresh(int) -> void{};