Added Hyprland workaround to get current window title

This commit is contained in:
Andrew
2026-01-21 21:22:11 +03:00
committed by dec05eba
parent 9339d6760e
commit 23b1526092
5 changed files with 192 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include <string>
namespace gsr {
struct ActiveHyprlandWindow {
std::string window_id = "";
std::string title = "Game";
};
void start_hyprland_listener_thread();
std::string get_current_hyprland_window_title();
}