mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
21 lines
548 B
C++
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
|