mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
18 lines
516 B
C++
18 lines
516 B
C++
#pragma once
|
|
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace icccm_util {
|
|
string get_wm_name(xcb_connection_t* c, xcb_window_t w);
|
|
string get_reply_string(xcb_icccm_get_text_property_reply_t* reply);
|
|
|
|
void set_wm_name(xcb_connection_t* c, xcb_window_t w, const char* wmname, size_t l, const char* wmclass, size_t l2);
|
|
void set_wm_protocols(xcb_connection_t* c, xcb_window_t w, vector<xcb_atom_t> flags);
|
|
bool get_wm_urgency(xcb_connection_t* c, xcb_window_t w);
|
|
}
|
|
|
|
POLYBAR_NS_END
|