somebar/src/common.hpp

17 lines
363 B
C++
Raw Normal View History

2021-10-20 20:20:27 +02:00
// somebar - dwl bar
// See LICENSE file for copyright and license details.
#pragma once
#include <wayland-client.h>
2021-10-22 15:42:42 +02:00
#include <QColor>
2021-10-20 20:20:27 +02:00
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
extern wl_display *display;
extern wl_compositor *compositor;
extern wl_shm *shm;
extern zwlr_layer_shell_v1 *wlrLayerShell;
2021-10-22 15:42:42 +02:00
struct ColorScheme {
QColor fg, bg;
};