#pragma once #include #include namespace gsr { enum class WindowCaptureType { FOCUSED, CURSOR }; Window get_focused_window(Display *dpy, WindowCaptureType cap_type); std::string get_focused_window_name(Display *dpy, WindowCaptureType window_capture_type); }