aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Robinhuett <5955614+Robinhuett@users.noreply.github.com>2019-01-10 20:14:54 +0100
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-01-10 16:14:18 -0500
commit33d9de88efa7642e20b37493ff60ad0e9689ea47 (patch)
tree25724f4ae562927cf69e4ec3976bc8b5556fc1bd /include
parentMerge pull request #3400 from ianyfan/config-brace (diff)
downloadsway-33d9de88efa7642e20b37493ff60ad0e9689ea47.tar.gz
sway-33d9de88efa7642e20b37493ff60ad0e9689ea47.tar.zst
sway-33d9de88efa7642e20b37493ff60ad0e9689ea47.zip
swaylock: Add caps lock state to indicator
Implements customization for the indicator as proposed in #2788 with comments from #3367 in mind. The default behaviour does not change exept for the caps lock text color.
Diffstat (limited to 'include')
-rw-r--r--include/swaylock/swaylock.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/swaylock/swaylock.h b/include/swaylock/swaylock.h
index 18af7ab4..516a56f4 100644
--- a/include/swaylock/swaylock.h
+++ b/include/swaylock/swaylock.h
@@ -22,6 +22,7 @@ enum auth_state {
22struct swaylock_colorset { 22struct swaylock_colorset {
23 uint32_t input; 23 uint32_t input;
24 uint32_t cleared; 24 uint32_t cleared;
25 uint32_t caps_lock;
25 uint32_t verifying; 26 uint32_t verifying;
26 uint32_t wrong; 27 uint32_t wrong;
27}; 28};
@@ -30,6 +31,8 @@ struct swaylock_colors {
30 uint32_t background; 31 uint32_t background;
31 uint32_t bs_highlight; 32 uint32_t bs_highlight;
32 uint32_t key_highlight; 33 uint32_t key_highlight;
34 uint32_t caps_lock_bs_highlight;
35 uint32_t caps_lock_key_highlight;
33 uint32_t separator; 36 uint32_t separator;
34 struct swaylock_colorset inside; 37 struct swaylock_colorset inside;
35 struct swaylock_colorset line; 38 struct swaylock_colorset line;
@@ -45,6 +48,8 @@ struct swaylock_args {
45 uint32_t thickness; 48 uint32_t thickness;
46 bool ignore_empty; 49 bool ignore_empty;
47 bool show_indicator; 50 bool show_indicator;
51 bool show_caps_lock_text;
52 bool show_caps_lock_indicator;
48 bool daemonize; 53 bool daemonize;
49}; 54};
50 55