mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
23 lines
326 B
C++
23 lines
326 B
C++
#pragma once
|
|
|
|
#include "config.hpp"
|
|
|
|
#if not WITH_XCOMPOSITE
|
|
#error "X Composite extension is disabled..."
|
|
#endif
|
|
|
|
#include <xcb/composite.h>
|
|
#include <xpp/proto/composite.hpp>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
// fwd
|
|
class connection;
|
|
|
|
namespace composite_util {
|
|
void query_extension(connection& conn);
|
|
}
|
|
|
|
POLYBAR_NS_END
|