1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/src/x11/icccm.cpp
2016-11-30 13:38:41 +01:00

24 lines
598 B
C++

#include "x11/icccm.hpp"
POLYBAR_NS
namespace icccm_util {
string get_wm_name(xcb_connection_t* conn, xcb_window_t win) {
xcb_icccm_get_text_property_reply_t reply;
if (xcb_icccm_get_wm_name_reply(conn, xcb_icccm_get_wm_name(conn, win), &reply, nullptr)) {
return get_reply_string(&reply);
}
return "";
}
string get_reply_string(xcb_icccm_get_text_property_reply_t* reply) {
if (reply->name == nullptr) {
return "";
}
string str(reply->name, reply->name_len);
xcb_icccm_get_text_property_reply_wipe(reply);
return str;
}
}
POLYBAR_NS_END