diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-07-31 16:05:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-31 16:05:07 -0400 |
commit | f59fb6bc761741fb2ed1abb6b4d4fb0509572dca (patch) | |
tree | 6c37414aae964cd387ae68314a8ada0214d9d7a3 /include | |
parent | 14eeeed7e0db3a427fc75318c9a56e12bbc4746c (diff) | |
parent | 23f11d7c45b25ec8752ab08cc7065b8a3e8b4399 (diff) |
Merge pull request #1294 from 4e554c4c/swaylock_size
Allow swaylock indicator size to be configurable
Diffstat (limited to 'include')
-rw-r--r-- | include/swaylock/swaylock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/swaylock/swaylock.h b/include/swaylock/swaylock.h index 06533108..eeed094e 100644 --- a/include/swaylock/swaylock.h +++ b/include/swaylock/swaylock.h @@ -56,6 +56,9 @@ struct lock_config { struct lock_colors validating; struct lock_colors invalid; } colors; + + int radius; + int thickness; }; void render(struct render_data* render_data, struct lock_config *config); |