disable Idle Inhibitor module if unsupported

This commit is contained in:
Andy Russell 2021-02-08 23:52:29 -05:00
parent c5f875dc5f
commit 95a6689077
No known key found for this signature in database
GPG Key ID: BE2221033EDBC374
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ waybar::modules::IdleInhibitor::IdleInhibitor(const std::string& id, const Bar&
bar_(bar),
idle_inhibitor_(nullptr),
pid_(-1) {
if (waybar::Client::inst()->idle_inhibit_manager == nullptr) {
throw std::runtime_error("idle-inhibit not available");
}
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
event_box_.signal_button_press_event().connect(
sigc::mem_fun(*this, &IdleInhibitor::handleToggle));