Configurable colors

This commit is contained in:
Raphael Robatsch 2021-10-22 15:42:42 +02:00
commit 120af1612f
4 changed files with 26 additions and 7 deletions

View file

@ -3,9 +3,14 @@
#pragma once
#include <wayland-client.h>
#include <QColor>
#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;
struct ColorScheme {
QColor fg, bg;
};