sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d94d46fe6969f4c0dfe7031b1a4b987a6cd04a51
parent f0b33df3848e46a013aaab184364a46d3c35e1c7
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 31 Mar 2016 07:59:21 -0400

Merge pull request #561 from fluxchief/swaylock

swaylock: improve graphical feedback
Diffstat:
Mswaylock/main.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/swaylock/main.c b/swaylock/main.c @@ -583,7 +583,8 @@ void render(struct render_data *render_data) { // Typing indicator: Highlight random part on keypress if (render_data->auth_state == AUTH_STATE_INPUT || render_data->auth_state == AUTH_STATE_BACKSPACE) { - double highlight_start = (rand() % (int)(2 * M_PI * 100)) / 100.0; + static double highlight_start = 0; + highlight_start += (rand() % (int)(M_PI * 100)) / 100.0 + M_PI * 0.5; cairo_arc(window->cairo, window->width/2, window->height/2, ARC_RADIUS, highlight_start, highlight_start + TYPE_INDICATOR_RANGE); if (render_data->auth_state == AUTH_STATE_INPUT) { cairo_set_source_rgb(window->cairo, 51.0 / 255, 219.0 / 255, 0);