diff options
author | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-24 18:50:50 +0200 |
---|---|---|
committer | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-24 18:50:50 +0200 |
commit | 3a85053e4e72e7bd19790032e5851d2a6c785e9e (patch) | |
tree | 685cb56f66eb3d979e73e2611ff8c59b065dc6dd /src/wlclock.h | |
parent | 76c39ec0b1b6e48f8aa527c481a03f9aa6bfe472 (diff) | |
download | wlclock-3a85053e4e72e7bd19790032e5851d2a6c785e9e.tar.gz wlclock-3a85053e4e72e7bd19790032e5851d2a6c785e9e.tar.bz2 |
Render background
Diffstat (limited to '')
-rw-r--r-- | src/wlclock.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wlclock.h b/src/wlclock.h index 684c4b3..78b5c41 100644 --- a/src/wlclock.h +++ b/src/wlclock.h @@ -8,6 +8,8 @@ #include"wlr-layer-shell-unstable-v1-protocol.h" +#include"colour.h" + struct Wlclock { struct wl_display *display; @@ -35,6 +37,10 @@ struct Wlclock uint32_t radius_top_left, radius_top_right, radius_bottom_left, radius_bottom_right; uint32_t anchor; bool input; + + struct Wlclock_colour background_colour; + struct Wlclock_colour border_colour; + struct Wlclock_colour clock_colour; }; #endif |