mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
608519363d
New module that uses the X keyboard extension to show keyboard layout and indicators. Ref #84, #200
22 lines
361 B
C++
22 lines
361 B
C++
#pragma once
|
|
|
|
#include "config.hpp"
|
|
|
|
#if ENABLE_DAMAGE_EXT
|
|
#include "x11/damage.hpp"
|
|
#endif
|
|
#if ENABLE_RENDER_EXT
|
|
#include "x11/render.hpp"
|
|
#endif
|
|
#if ENABLE_RANDR_EXT
|
|
#include "x11/randr.hpp"
|
|
#endif
|
|
#if ENABLE_SYNC_EXT
|
|
#include "x11/sync.hpp"
|
|
#endif
|
|
#if ENABLE_COMPOSITE_EXT
|
|
#include "x11/composite.hpp"
|
|
#endif
|
|
#if ENABLE_XKB_EXT
|
|
#include "x11/xkb.hpp"
|
|
#endif
|