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