diff options
author | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
---|---|---|
committer | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
commit | 74a155389c20d4e546050c756b7fa94e445e1c1d (patch) | |
tree | a629f8a0c93eb1eaafcd361a79a30a68fc66d465 /src/wlclock.h | |
parent | 3a85053e4e72e7bd19790032e5851d2a6c785e9e (diff) | |
download | wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.gz wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.bz2 |
Implement all configuration options and signal handling
Diffstat (limited to '')
-rw-r--r-- | src/wlclock.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wlclock.h b/src/wlclock.h index 78b5c41..d051b7c 100644 --- a/src/wlclock.h +++ b/src/wlclock.h @@ -29,13 +29,13 @@ struct Wlclock int ret; enum zwlr_layer_shell_v1_layer layer; - uint32_t size; + int32_t size; char *namespace; int32_t exclusive_zone; - uint32_t border_top, border_right, border_bottom, border_left; - uint32_t margin_top, margin_right, margin_bottom, margin_left; - uint32_t radius_top_left, radius_top_right, radius_bottom_left, radius_bottom_right; - uint32_t anchor; + int32_t border_top, border_right, border_bottom, border_left; + int32_t margin_top, margin_right, margin_bottom, margin_left; + int32_t radius_top_left, radius_top_right, radius_bottom_left, radius_bottom_right; + int32_t anchor; bool input; struct Wlclock_colour background_colour; |