a lightweight, interval-based utility to combat digital strain through "Ma" (intentional pauses) for the eyes and body.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: auto-focus password field with unlock click

+6 -1
+6 -1
ui/overlay.slint
··· 18 18 callback unlock-clicked(); 19 19 callback unlock-submit-clicked(string /* password */); 20 20 21 + changed unlock-input-visible => { 22 + if unlock-input-visible { pw-field.focus(); } 23 + } 24 + 21 25 background: is-dark ? #1a1a2e : #f5f5f0; 22 26 23 27 VerticalLayout { ··· 75 79 } 76 80 } 77 81 78 - if unlock-input-visible : VerticalLayout { 82 + VerticalLayout { 83 + visible: unlock-input-visible; 79 84 alignment: center; 80 85 spacing: 8px; 81 86