aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaybg/main.c')
-rw-r--r--swaybg/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/swaybg/main.c b/swaybg/main.c
index 790eb66b..b4614ac0 100644
--- a/swaybg/main.c
+++ b/swaybg/main.c
@@ -21,7 +21,7 @@ int main(int argc, char **argv) {
21 state->width = output->width; 21 state->width = output->width;
22 state->height = output->height; 22 state->height = output->height;
23 23
24 uint8_t r = 100, g = 100, b = 100; 24 uint8_t r = 0, g = 0, b = 0;
25 25
26 do { 26 do {
27 if (client_prerender(state) && state->cairo) { 27 if (client_prerender(state) && state->cairo) {
@@ -31,7 +31,7 @@ int main(int argc, char **argv) {
31 31
32 client_render(state); 32 client_render(state);
33 33
34 r++; if (r == 0) { g++; if (g == 0) { b++; } } 34 r++; g += 2; b += 4;
35 } 35 }
36 } while (wl_display_dispatch(state->display) != -1); 36 } while (wl_display_dispatch(state->display) != -1);
37 37