mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
22 lines
398 B
C++
22 lines
398 B
C++
#pragma once
|
|
|
|
#include "settings.hpp"
|
|
|
|
#if WITH_XDAMAGE
|
|
#include "x11/extensions/damage.hpp"
|
|
#endif
|
|
#if WITH_XRENDER
|
|
#include "x11/extensions/render.hpp"
|
|
#endif
|
|
#if WITH_XRANDR
|
|
#include "x11/extensions/randr.hpp"
|
|
#endif
|
|
#if WITH_XSYNC
|
|
#include "x11/extensions/sync.hpp"
|
|
#endif
|
|
#if WITH_XCOMPOSITE
|
|
#include "x11/extensions/composite.hpp"
|
|
#endif
|
|
#if WITH_XKB
|
|
#include "x11/extensions/xkb.hpp"
|
|
#endif
|