1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/x11/ewmh.hpp
2016-11-19 06:26:07 +01:00

21 lines
548 B
C++

#pragma once
#include <xcb/xcb_ewmh.h>
#include "common.hpp"
#include "x11/connection.hpp"
POLYBAR_NS
namespace ewmh_util {
bool setup(connection& conn, xcb_ewmh_connection_t* dst);
bool supports(xcb_ewmh_connection_t* ewmh, xcb_atom_t atom);
xcb_window_t get_active_window(xcb_ewmh_connection_t* conn);
string get_visible_name(xcb_ewmh_connection_t* conn, xcb_window_t win);
string get_icon_name(xcb_ewmh_connection_t* conn, xcb_window_t win);
string get_reply_string(xcb_ewmh_get_utf8_strings_reply_t* reply);
}
POLYBAR_NS_END