mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
8afd5b71df
* Remove DEBUG_SHADED Was disabled by default AND behind an #if 0 * Make TimerHandle expose more libuv functions * Prepare for moving double clicks into eventloop * Make eventloop available to bar * Remove bar mutex Everything in the bar is now in the same thread * Move double-click handling to eventloop * Extract double click deferred function into method * Stop throttling clicks * Increase double click interval to 400 and add option double-click-interval in the bar section Closes #1441 * Implement dimming using timer handles * Remove taskqueue * Remove unused dependencies * Cleanup & Comments
75 lines
1.8 KiB
CMake
75 lines
1.8 KiB
CMake
#pragma once
|
|
|
|
#include <cstdio>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
extern const char* const APP_NAME;
|
|
extern const char* const APP_VERSION;
|
|
|
|
#cmakedefine01 ENABLE_ALSA
|
|
#cmakedefine01 ENABLE_MPD
|
|
#cmakedefine01 ENABLE_NETWORK
|
|
#cmakedefine01 WITH_LIBNL
|
|
#cmakedefine01 ENABLE_I3
|
|
#cmakedefine01 ENABLE_CURL
|
|
#cmakedefine01 ENABLE_PULSEAUDIO
|
|
|
|
#define WITH_XRANDR 1
|
|
#define WITH_XCOMPOSITE 1
|
|
#cmakedefine01 WITH_XKB
|
|
#cmakedefine01 WITH_XRM
|
|
#cmakedefine01 WITH_XCURSOR
|
|
|
|
#if WITH_XRANDR
|
|
#cmakedefine01 WITH_XRANDR_MONITORS
|
|
#else
|
|
#define WITH_XRANDR_MONITORS 0
|
|
#endif
|
|
|
|
#if WITH_XKB
|
|
#cmakedefine01 ENABLE_XKEYBOARD
|
|
#else
|
|
#define ENABLE_XKEYBOARD 0
|
|
#endif
|
|
|
|
#cmakedefine XPP_EXTENSION_LIST @XPP_EXTENSION_LIST@
|
|
|
|
#cmakedefine DEBUG_LOGGER
|
|
|
|
#if DEBUG
|
|
#cmakedefine DEBUG_LOGGER_VERBOSE
|
|
#cmakedefine DEBUG_HINTS
|
|
#cmakedefine DEBUG_WHITESPACE
|
|
#cmakedefine DEBUG_FONTCONFIG
|
|
#endif
|
|
|
|
static const int SIGN_PRIORITY_CONTROLLER{1};
|
|
static const int SIGN_PRIORITY_SCREEN{2};
|
|
static const int SIGN_PRIORITY_BAR{3};
|
|
static const int SIGN_PRIORITY_RENDERER{4};
|
|
static const int SIGN_PRIORITY_TRAY{5};
|
|
|
|
extern const int SINK_PRIORITY_BAR;
|
|
extern const int SINK_PRIORITY_SCREEN;
|
|
extern const int SINK_PRIORITY_TRAY;
|
|
extern const int SINK_PRIORITY_MODULE;
|
|
|
|
extern const char* const ALSA_SOUNDCARD;
|
|
extern const char* const BSPWM_SOCKET_PATH;
|
|
extern const char* const BSPWM_STATUS_PREFIX;
|
|
extern const char* const CONNECTION_TEST_IP;
|
|
extern const char* const PATH_ADAPTER;
|
|
extern const char* const PATH_BACKLIGHT;
|
|
extern const char* const PATH_BATTERY;
|
|
extern const char* const PATH_CPU_INFO;
|
|
extern const char* const PATH_MEMORY_INFO;
|
|
extern const char* const PATH_MESSAGING_FIFO;
|
|
extern const char* const PATH_TEMPERATURE_INFO;
|
|
extern const char* const WIRELESS_LIB;
|
|
|
|
bool version_details(const std::vector<std::string>& args);
|
|
|
|
void print_build_info(bool extended = false);
|
|
|
|
// vim:ft=cpp
|