2022-07-01 10:46:28 +00:00
|
|
|
#include "modules/hyprland/window.hpp"
|
|
|
|
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
|
2022-08-17 20:03:49 +00:00
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
|
2022-07-01 10:46:28 +00:00
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
|
|
|
Window::Window(const std::string& id, const Bar& bar, const Json::Value& config)
|
|
|
|
: ALabel(config, "window", id, "{}", 0, true), bar_(bar) {
|
|
|
|
modulesReady = true;
|
|
|
|
|
|
|
|
if (!gIPC.get()) {
|
|
|
|
gIPC = std::make_unique<IPC>();
|
|
|
|
}
|
|
|
|
|
|
|
|
label_.hide();
|
|
|
|
ALabel::update();
|
|
|
|
|
|
|
|
// register for hyprland ipc
|
|
|
|
gIPC->registerForIPC("activewindow", [&](const std::string& ev) { this->onEvent(ev); });
|
|
|
|
}
|
|
|
|
|
2022-08-17 19:54:23 +00:00
|
|
|
auto Window::update() -> void {
|
|
|
|
// fix ampersands
|
|
|
|
std::lock_guard<std::mutex> lg(mutex_);
|
|
|
|
|
|
|
|
if (!format_.empty()) {
|
|
|
|
label_.show();
|
|
|
|
label_.set_markup(fmt::format(format_, lastView));
|
|
|
|
} else {
|
|
|
|
label_.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
ALabel::update();
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:46:28 +00:00
|
|
|
void Window::onEvent(const std::string& ev) {
|
2022-08-17 19:54:23 +00:00
|
|
|
std::lock_guard<std::mutex> lg(mutex_);
|
2022-07-01 10:46:28 +00:00
|
|
|
auto windowName = ev.substr(ev.find_first_of(',') + 1).substr(0, 256);
|
|
|
|
|
|
|
|
auto replaceAll = [](std::string str, const std::string& from,
|
|
|
|
const std::string& to) -> std::string {
|
|
|
|
size_t start_pos = 0;
|
|
|
|
while ((start_pos = str.find(from, start_pos)) != std::string::npos) {
|
|
|
|
str.replace(start_pos, from.length(), to);
|
|
|
|
start_pos += to.length();
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
};
|
|
|
|
|
|
|
|
windowName = replaceAll(windowName, "&", "&");
|
|
|
|
|
|
|
|
if (windowName == lastView) return;
|
|
|
|
|
|
|
|
lastView = windowName;
|
|
|
|
|
|
|
|
spdlog::debug("hyprland window onevent with {}", windowName);
|
|
|
|
|
2022-08-17 19:54:23 +00:00
|
|
|
dp.emit();
|
2022-07-01 10:46:28 +00:00
|
|
|
}
|
2022-08-17 20:03:49 +00:00
|
|
|
|
|
|
|
} // namespace waybar::modules::hyprland
|