i3lock-color

The world's most popular non-default computer lockscreen.
Index Commits Files Refs README LICENSE
commit 393fb2ed553eb05c080036e79da9f988ed8f1b68
parent dfe167bcac6b1b03c8b227ce9be015a647a8f26a
Author: Ingo Bürk <admin@airblader.de>
Date:   Tue, 15 Jan 2019 17:32:37 +0100

Merge pull request #219 from MotoQuick/patch-1

Labels are now replaced with capital letters in the beginning
Diffstat:
Munlock_indicator.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/unlock_indicator.c b/unlock_indicator.c
@@ -207,20 +207,20 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
         cairo_set_font_size(ctx, 28.0);
         switch (auth_state) {
             case STATE_AUTH_VERIFY:
-                text = "verifying…";
+                text = "Verifying…";
                 break;
             case STATE_AUTH_LOCK:
-                text = "locking…";
+                text = "Locking…";
                 break;
             case STATE_AUTH_WRONG:
-                text = "wrong!";
+                text = "Wrong!";
                 break;
             case STATE_I3LOCK_LOCK_FAILED:
-                text = "lock failed!";
+                text = "Lock failed!";
                 break;
             default:
                 if (unlock_state == STATE_NOTHING_TO_DELETE) {
-                    text = "no input";
+                    text = "No input";
                 }
                 if (show_failed_attempts && failed_attempts > 0) {
                     if (failed_attempts > 999) {