Merge pull request #2915 from haasn/cpu_style

Add style class for CPU state
This commit is contained in:
Alexis Rouillard 2024-02-19 22:58:21 +01:00 committed by GitHub
commit 70dc388dff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 0 deletions

View File

@ -22,6 +22,7 @@ class Cpu : public ALabel {
private:
std::vector<std::tuple<size_t, size_t>> prev_times_;
std::string prev_state_;
util::SleeperThread thread_;
};

View File

@ -121,3 +121,5 @@ CPU usage per core rendered as icons:
# STYLE
- *#cpu*
- *#cpu.<state>*
- *<state>* can be defined in the *config*. For more information see *states*.

View File

@ -36,6 +36,12 @@ auto waybar::modules::Cpu::update() -> void {
format = config_["format-" + state].asString();
}
if (!prev_state_.empty()) {
label_.get_style_context()->remove_class(prev_state_);
}
label_.get_style_context()->add_class(state);
prev_state_ = state;
if (format.empty()) {
event_box_.hide();
} else {