Merge pull request #2276 from skligys/fix_mpris_ui_spamming

Stop MPRIS module from updating every ~20ms
This commit is contained in:
Alexis Rouillard 2023-07-04 22:29:48 +02:00 committed by GitHub
commit 265b4edb2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -80,6 +80,7 @@ class Mpris : public ALabel {
std::string lastPlayer;
util::SleeperThread thread_;
std::chrono::time_point<std::chrono::system_clock> last_update_;
};
} // namespace waybar::modules::mpris

View File

@ -31,7 +31,8 @@ Mpris::Mpris(const std::string& id, const Json::Value& config)
ellipsis_("\u2026"),
player_("playerctld"),
manager(),
player() {
player(),
last_update_(std::chrono::system_clock::now() - interval_) {
if (config_["format-playing"].isString()) {
format_playing_ = config_["format-playing"].asString();
}
@ -559,6 +560,10 @@ bool Mpris::handleToggle(GdkEventButton* const& e) {
}
auto Mpris::update() -> void {
const auto now = std::chrono::system_clock::now();
if (now - last_update_ < interval_) return;
last_update_ = now;
auto opt = getPlayerInfo();
if (!opt) {
event_box_.set_visible(false);