-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwallpapers.json
More file actions
1835 lines (1835 loc) · 55.9 KB
/
wallpapers.json
File metadata and controls
1835 lines (1835 loc) · 55.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"base_url": "https://raw.githubusercontent.com/CAPlayground/wallpapers/refs/heads/main/",
"wallpapers": [
{
"name": "11037 Case 1",
"id": 4013559,
"creator": "MakotoNaeg",
"description": "Danganronpa fan wallpapers with original sprites (also work ",
"file": "wallpapers/11037_Case_1.tendies",
"preview": "previews/gif/11037_Case_1.gif",
"date": 1767092919825,
"from": "website"
},
{
"name": "17e Black with AOD",
"id": 4115004,
"creator": "adnaan77",
"description": "17e wallpaper variants, with Always on Display",
"file": "wallpapers/17e_Black_with_AOD.tendies",
"preview": "previews/gif/17e_Black_with_AOD.gif",
"date": 1772891038891,
"from": "website"
},
{
"name": "17e Pink with AOD",
"id": 5638594,
"creator": "adnaan77",
"description": "17e wallpaper variants, with Always on Di",
"file": "wallpapers/17e_Pink_with_AOD.tendies",
"preview": "previews/gif/17e_Pink_with_AOD.gif",
"date": 1772891535392,
"from": "website"
},
{
"name": "17e Silver with AOD",
"id": 6001083,
"creator": "adnaan77",
"description": "17e wallpaper variants, with Always on Di",
"file": "wallpapers/17e_Silver_with_AOD.tendies",
"preview": "previews/gif/17e_Silver_with_AOD.gif",
"date": 1772891105287,
"from": "website"
},
{
"name": "A7X dark and light wallpaper",
"id": 6152530,
"creator": "pulse_ice",
"description": "change between light and dark mode to change the wallpaper",
"file": "wallpapers/A7X_dark_and_light_wallpaper.tendies",
"preview": "previews/gif/A7X_dark_and_light_wallpaper.gif",
"date": 1769638199349,
"from": "website"
},
{
"name": "AKANE-the-Angle",
"id": 5269445,
"creator": "Fan DoraXXX",
"description": "Original from game 'O.N.G.E.K.I' @SEGA\n",
"file": "wallpapers/AKANE_the_Angle.tendies",
"preview": "previews/gif/AKANE_the_Angle.gif",
"date": 1767091801723,
"from": "website"
},
{
"name": "ANIMATE GIRL",
"id": 7714750,
"creator": "Saki666",
"description": "wing fixed version",
"file": "wallpapers/ANIMATE_GIRL.tendies",
"preview": "previews/gif/ANIMATE_GIRL.gif",
"from": "website",
"date": 1766052000000
},
{
"name": "Apple Intelligence",
"id": 1389442,
"creator": "VtaUL",
"description": "Apple Intelligence",
"file": "wallpapers/Apple_Intelligence.tendies",
"preview": "previews/gif/Apple_Intelligence.gif",
"date": 1771961563043,
"from": "website"
},
{
"name": "Apple Park (Maps)",
"id": 2084169,
"creator": "enkei64",
"description": "Animated Apple Park maps wallpaper",
"file": "wallpapers/Apple_Park__Maps_.tendies",
"preview": "previews/gif/Apple_Park__Maps_.gif",
"date": 1769603612463,
"from": "website"
},
{
"name": "Arch 3D",
"id": 3645303,
"creator": "whitemcwizard",
"description": "The arch logo with gyro ",
"file": "wallpapers/Arch_3D.tendies",
"preview": "previews/gif/Arch_3D.gif",
"from": "website",
"date": 1767471906840
},
{
"name": "Ariana Grande Eternal Sunshine",
"id": 6042287,
"creator": "Kaysus1",
"description": "Always-On Display supported!",
"file": "wallpapers/Ariana_Grande_Eternal_Sunshine.tendies",
"preview": "previews/gif/Ariana_Grande_Eternal_Sunshine.gif",
"date": 1767698365569,
"from": "website"
},
{
"name": "Arima Kana",
"id": 9643841,
"creator": "cy8457",
"description": "Arima Kana\nWallpaper for ipad 9",
"file": "wallpapers/Arima_Kana.tendies",
"preview": "previews/gif/Arima_Kana.gif",
"date": 1771437524042,
"from": "website"
},
{
"name": "Arisu - the Day Dream Angel",
"id": 7919861,
"creator": "FANdoraxxx",
"description": "Original from game 'O.N.G.E.K.I' @SEGA",
"file": "wallpapers/Arisu___the_Day_Dream_Angel.tendies",
"preview": "previews/gif/Arisu___the_Day_Dream_Angel.gif",
"date": 1767753435246,
"from": "website"
},
{
"name": "Astolfo Comics",
"id": 8968602,
"creator": "ipastore1",
"description": "Astolfo",
"file": "wallpapers/Astolfo_Comics.tendies",
"preview": "previews/gif/Astolfo_Comics.gif",
"date": 1770462642610,
"from": "website"
},
{
"name": "Autumn City",
"creator": "gdnnpc",
"description": "Autumn themed wallpaper with falling leaves",
"file": "wallpapers/Autumn_City.tendies",
"preview": "previews/gif/Autumn_City.gif",
"from": "discord",
"id": 1633426,
"date": 1761192000000
},
{
"name": "B0Y and R4VEN",
"id": 8751348,
"creator": "Inazuma",
"description": "B0Y and R4VEN wiyh AOD",
"file": "wallpapers/B0Y_and_R4VEN.tendies",
"preview": "previews/gif/B0Y_and_R4VEN.gif",
"from": "website",
"date": 1766019600000
},
{
"name": "BLACK spidey",
"id": 8038185,
"creator": "Cranxy",
"description": "its uh, spidey with is black suit, and a sick bacground",
"file": "wallpapers/BLACK_spidey.tendies",
"preview": "previews/gif/BLACK_spidey.gif",
"date": 1769727108125,
"from": "website"
},
{
"name": "Batman",
"creator": "spy_g_was_silenced",
"description": "I am batman",
"file": "wallpapers/Batman.tendies",
"preview": "previews/gif/Batman.gif",
"from": "discord",
"id": 9695042,
"date": 1761163200000
},
{
"name": "Ben10-V1",
"creator": "alucard_93",
"description": "Ben10",
"file": "wallpapers/Ben10-V1.tendies",
"preview": "previews/gif/Ben10-V1.gif",
"from": "discord",
"id": 4189160,
"date": 1761231600000
},
{
"name": "Big Boss",
"id": 1729190,
"creator": "Dontie",
"description": "Big Boss from MGS3 saluting in the flower field",
"file": "wallpapers/Big_Boss.tendies",
"preview": "previews/gif/Big_Boss.gif",
"date": 1771868595842,
"from": "website"
},
{
"name": "Black Balls",
"creator": "spy_g_was_silenced",
"description": "Floating black balls",
"file": "wallpapers/Black_balls.tendies",
"preview": "previews/gif/Black_balls.gif",
"from": "discord",
"id": 1878216,
"date": 1761170400000
},
{
"name": "Blackwall",
"id": 7138845,
"creator": "Sz4bcsi",
"description": "A really simple wallpaper from the game Cyberpunk 2077",
"file": "wallpapers/Blackwall.tendies",
"preview": "previews/gif/Blackwall.gif",
"date": 1771768642454,
"from": "website"
},
{
"name": "Blasphemous ",
"id": 8732750,
"creator": "pulse_ice",
"description": "inspired by the mea culpa sword from blasphemous",
"file": "wallpapers/Blasphemous_.tendies",
"preview": "previews/gif/Blasphemous_.gif",
"date": 1769809621019,
"from": "website"
},
{
"name": "Blending Blur",
"creator": "enkei64",
"description": "Wallpaper with replicators and the new blending modes and filters",
"file": "wallpapers/Blending_Blur_Tail.tendies",
"preview": "previews/gif/Blending_Blur_Tail.gif",
"from": "discord",
"id": 1854992,
"date": 1761228000000
},
{
"name": "Blue Balls",
"id": 5525738,
"creator": "shadowflop",
"description": "simple wallpaper of blue balls :), inspired by red balls",
"file": "wallpapers/Blue_Balls.tendies",
"preview": "previews/gif/Blue_Balls.gif",
"date": 1770679734234,
"from": "website"
},
{
"name": "Bocchi the rock Dark",
"id": 4446369,
"creator": "FIREXDF",
"description": "Tested on iPhone 15.\nGot AOD",
"file": "wallpapers/Bocchi_the_rock_Dark.tendies",
"preview": "previews/gif/Bocchi_the_rock_Dark.gif",
"date": 1769626503987,
"from": "website"
},
{
"name": "Bowser Jr.",
"creator": "aperaine",
"description": "Comes with light and dark mode variations",
"file": "wallpapers/Bowser_Jr..tendies",
"preview": "previews/gif/Bowser_Jr..gif",
"from": "discord",
"id": 8081890,
"date": 1761238800000
},
{
"name": "Car in space",
"id": 8711925,
"creator": "spy_g",
"description": "Wroom",
"file": "wallpapers/Car_in_space.tendies",
"preview": "previews/gif/Car_in_space.gif",
"date": 1767559863153,
"from": "website"
},
{
"name": "Castle Crashers",
"creator": "dreigned",
"description": "A blast from the past! Simple but clean",
"file": "wallpapers/Castle_Crashers.tendies",
"preview": "previews/gif/Castle_Crashers.gif",
"from": "discord",
"id": 1953812,
"date": 1761202800000
},
{
"name": "Christmas stuff",
"creator": "spy_g_was_silenced",
"description": "Gingerbreak",
"file": "wallpapers/Christmas_stuff.tendies",
"preview": "previews/gif/Christmas_stuff.gif",
"from": "discord",
"id": 1126553,
"date": 1761224400000
},
{
"name": "City (spatial, se2020)",
"id": 9908226,
"creator": "zaharmony",
"description": "Spatial wallpaper",
"file": "wallpapers/City__spatial__se2020_.tendies",
"preview": "previews/gif/City__spatial__se2020_.gif",
"date": 1769062449135,
"from": "website"
},
{
"name": "Cloudzv2",
"creator": "dav18d1",
"description": "Fully animated with turning on animation aswell",
"file": "wallpapers/Cloudzv2.tendies",
"preview": "previews/gif/Cloudzv2.gif",
"from": "discord",
"id": 2556324,
"date": 1761235200000
},
{
"name": "Coloured Bubbles",
"creator": "gdnnpc",
"description": "Bubbles rising from the bottom of the screen",
"file": "wallpapers/Coloured_Bubbles.tendies",
"preview": "previews/gif/Coloured_Bubbles.gif",
"from": "discord",
"id": 2459295,
"date": 1761177600000
},
{
"name": "Colours that look like coffre",
"id": 4043835,
"creator": "spy_g",
"description": "Coffee",
"file": "wallpapers/Colours_that_look_like_coffre.tendies",
"preview": "previews/gif/Colours_that_look_like_coffre.gif",
"from": "website",
"date": 1766001600000
},
{
"name": "Cool shapes",
"id": 4983462,
"creator": "spy_g",
"description": "AOD support included. Follow my twitter spy_g_ Dont steal",
"file": "wallpapers/Cool_shapes.tendies",
"preview": "previews/gif/Cool_shapes.gif",
"from": "website",
"date": 1765990800000
},
{
"name": "Crushers",
"id": 7022126,
"creator": "stars",
"description": "skull crusher teeth ",
"file": "wallpapers/Crushers.tendies",
"preview": "previews/gif/Crushers.gif",
"date": 1767125830158,
"from": "website"
},
{
"name": "Danganronpa V3 Case 2",
"id": 7312167,
"creator": "MakotoNaeg",
"description": "Kirumi tojo😭",
"file": "wallpapers/Danganronpa_V3_Case_2.tendies",
"preview": "previews/gif/Danganronpa_V3_Case_2.gif",
"date": 1767541026063,
"from": "website"
},
{
"name": "Death Note ",
"id": 3763579,
"creator": "Dan",
"description": "Death Note L and Light with animamted elements",
"file": "wallpapers/Death_Note_.tendies",
"preview": "previews/gif/Death_Note_.gif",
"from": "website",
"date": 1766041200000
},
{
"name": "Death Star",
"id": 5630334,
"creator": "lev",
"description": "Death Star construction completion",
"file": "wallpapers/Death_Star.tendies",
"preview": "previews/gif/Death_Star.gif",
"date": 1767890323105,
"from": "website"
},
{
"name": "Deltarune and Undertale",
"id": 6113197,
"creator": "ValeNotPro328",
"description": "Cool Deltarune and Undertale wallpaper (i didn't draw)",
"file": "wallpapers/Deltarune_and_Undertale.tendies",
"preview": "previews/gif/Deltarune_and_Undertale.gif",
"date": 1766312245561,
"from": "website"
},
{
"name": "Divine touch 1.1",
"id": 9107929,
"creator": "flyingfish2050",
"description": "Fixed sleep state",
"file": "wallpapers/Divine_touch_1_1.tendies",
"preview": "previews/gif/Divine_touch_1_1.gif",
"date": 1770542781378,
"from": "website"
},
{
"name": "Doki Doki Literature Club!",
"id": 2750255,
"creator": "Okidoki",
"description": "DDLC",
"file": "wallpapers/Doki_Doki_Literature_Club__________.tendies",
"preview": "previews/gif/Doki_Doki_Literature_Club__________.gif",
"date": 1768576112377,
"from": "website"
},
{
"name": "Dragon Ball",
"id": 5733952,
"creator": "Tattoist",
"description": "Goku with the Flying Nimbus",
"file": "wallpapers/Dragon_Ball.tendies",
"preview": "previews/gif/Dragon_Ball.gif",
"from": "website",
"date": 1761282000000
},
{
"name": "Emoji 3D",
"id": 2859342,
"creator": "Xiaohui",
"description": "借鉴Tattoist魔方效果做出来的壁纸",
"file": "wallpapers/Emoji_3D.tendies",
"preview": "previews/gif/Emoji_3D.gif",
"date": 1768633971591,
"from": "website"
},
{
"name": "Ender Chest",
"creator": "tayvall",
"description": "The dark alternative to the casual chest",
"file": "wallpapers/Ender_Chest.tendies",
"preview": "previews/gif/Ender_Chest.gif",
"from": "discord",
"id": 1201758,
"date": 1761159600000
},
{
"name": "Erynox Mountains!",
"id": 1562130,
"creator": "Erynox",
"description": "I really love mountains a lot.",
"file": "wallpapers/Erynox_Mountains_.tendies",
"preview": "previews/gif/Erynox_Mountains_.gif",
"from": "website",
"date": 1767471906840
},
{
"name": "Fantastic Four",
"creator": "spy_g_was_silenced",
"description": "FF",
"file": "wallpapers/Fantastic_Four.tendies",
"preview": "previews/gif/Fantastic_Four.gif",
"from": "discord",
"id": 7941155,
"date": 1761220800000
},
{
"name": "Floating Spiderman with Gyro",
"id": 5511788,
"creator": "spy_g",
"description": "iOS 26+",
"file": "wallpapers/Floating_Spider_Man_with_gyro.tendies",
"preview": "previews/gif/Floating_Spider_Man_with_gyro.gif",
"from": "website",
"date": 1761253200000
},
{
"name": "Floating Spiderman",
"creator": "spy_g_was_silenced",
"description": "falling",
"file": "wallpapers/Floating_Spiderman.tendies",
"preview": "previews/gif/Floating_Spiderman.gif",
"from": "discord",
"id": 7689347,
"date": 1761246000000
},
{
"name": "French Lays Everywhere ",
"id": 1348652,
"creator": "Moyllo",
"description": "We love Lay's ! 100% French Lay's Wallpaper made by me human",
"file": "wallpapers/French_Lays_Everywhere_.tendies",
"preview": "previews/gif/French_Lays_Everywhere_.gif",
"date": 1770218846909,
"from": "website"
},
{
"name": "Frieren and snow man Himmel",
"id": 1449054,
"creator": "sageofperv",
"description": "Frieren and snow man Himmel fromFrieren Beyond Journey's End",
"file": "wallpapers/Frieren_and_snow_man_Himmel.tendies",
"preview": "previews/gif/Frieren_and_snow_man_Himmel.gif",
"date": 1766756132451,
"from": "website"
},
{
"name": "GBA Animated",
"id": "0000001",
"creator": "whoism4xi",
"description": "GBA with day and night cycle",
"file": "wallpapers/GBA_Animated.tendies",
"preview": "previews/gif/GBA_Animated.gif",
"from": "discord",
"date": 1761109100000
},
{
"name": "Geometry Dash",
"id": 9531199,
"creator": "Tattoist",
"description": "Green, red, blue and purple version with AOD",
"file": "wallpapers/Geometry_Dash.tendies",
"preview": "previews/gif/Geometry_Dash.gif",
"date": 1767544719112,
"from": "website"
},
{
"name": "GitHub",
"id": "0000002",
"creator": "enkei64",
"description": "GitHub",
"file": "wallpapers/GitHub.tendies",
"preview": "previews/gif/GitHub.gif",
"from": "Discord",
"date": 1761112800000
},
{
"name": "GlamRock Freddy FNaF 9",
"id": 5548714,
"creator": "TosterSKP!",
"description": "I made this wallpaper for those who are into FNAF.",
"file": "wallpapers/GlamRock_Freddy_FNaF_9.tendies",
"preview": "previews/gif/GlamRock_Freddy_FNaF_9.gif",
"from": "website",
"date": 1767471906840
},
{
"name": "Green Porche 911 GT3 RS",
"creator": "skylocker",
"description": "It's a Porche and it's green",
"file": "wallpapers/Green_Porche_911_GT3_RS.tendies",
"preview": "previews/gif/Green_Porche_911_GT3_RS.gif",
"from": "discord",
"id": 9612103,
"date": 1761213600000
},
{
"name": "Gucci",
"id": 9724613,
"creator": "CERCISE",
"description": "This is Gucci",
"file": "wallpapers/Gucci.tendies",
"preview": "previews/gif/Gucci.gif",
"date": 1771698854008,
"from": "website"
},
{
"name": "Gyro Parallax 3D",
"id": 8236023,
"creator": "Alpha Canis",
"description": "Simple but diffetent",
"file": "wallpapers/Gyro_Parallax_3D.tendies",
"preview": "previews/gif/Gyro_Parallax_3D.gif",
"from": "website",
"date": 1766012400000
},
{
"name": "HUAWEI",
"id": 9630365,
"creator": "marcobolo",
"description": "JIAYOUHUAWEI",
"file": "wallpapers/HUAWEI.tendies",
"preview": "previews/gif/HUAWEI.gif",
"date": 1767942779790,
"from": "website"
},
{
"name": "Hamster Playing Football",
"id": 5605723,
"creator": "YangJiii",
"description": "Make By YangJiii Original By Onerock",
"file": "wallpapers/Hamster_Playing_Football.tendies",
"preview": "previews/gif/Hamster_Playing_Football.gif",
"date": 1771743801899,
"from": "website"
},
{
"name": "Hamster playing tennis",
"id": 1553791,
"creator": "Onerock",
"description": "Tennis",
"file": "wallpapers/Hamster_playing_tennis.tendies",
"preview": "previews/gif/Hamster_playing_tennis.gif",
"date": 1767544356207,
"from": "website"
},
{
"name": "Hatsune Miku",
"id": 9372814,
"creator": "ysbz",
"description": "Hatsune Miku wallpaper",
"file": "wallpapers/Hatsune-Miku.tendies",
"preview": "previews/gif/hatsune-miku.gif",
"from": "website",
"date": 1761285600000
},
{
"name": "Hermès Paris",
"id": 7765909,
"creator": "CERCISE",
"description": "Hermes",
"file": "wallpapers/Herm_s_Paris.tendies",
"preview": "previews/gif/Herm_s_Paris.gif",
"date": 1766600441176,
"from": "website"
},
{
"name": "Hoshimachi Suisei 1.0",
"id": 3176491,
"creator": "Zeroming",
"description": "https://www.youtube.com/shorts/K9W85jQV9Lo",
"file": "wallpapers/Hoshimachi_Suisei_1_0.tendies",
"preview": "previews/gif/Hoshimachi_Suisei_1_0.gif",
"date": 1772010694870,
"from": "website"
},
{
"name": "Hoshimachi Suisei 2",
"id": 9659231,
"creator": "Zeroming",
"description": "Another Suichan Wallpaper ",
"file": "wallpapers/Hoshimachi_Suisei_2.tendies",
"preview": "previews/gif/Hoshimachi_Suisei_2.gif",
"date": 1772526387822,
"from": "website"
},
{
"name": "Huawei Palms",
"id": 1277508,
"creator": "sussy_tech",
"description": "Found in harmony os\n(better version coming soon???)",
"file": "wallpapers/Huawei_Palms.tendies",
"preview": "previews/gif/Huawei_Palms.gif",
"from": "website",
"date": 1766026800000
},
{
"name": "HyperOS Glass",
"id": 7670567,
"creator": "ItzOrvillee",
"description": "With Liquid Glass effect",
"file": "wallpapers/HyperOS_Glass.tendies",
"preview": "previews/gif/HyperOS_Glass.gif",
"from": "website",
"date": 1765976400000
},
{
"name": "I don't want to lose you",
"id": 7469903,
"creator": "YangFe",
"description": "不想失去你",
"file": "wallpapers/I_don_t_want_to_lose_you.tendies",
"preview": "previews/gif/I_don_t_want_to_lose_you.gif",
"from": "website",
"date": 1765969200000
},
{
"name": "Initial D Wallpaper",
"id": 1209537,
"creator": "saifziani",
"description": "Well Well Well finally a non-gooner Wallpaper here...",
"file": "wallpapers/Initial_D_Wallpaper.tendies",
"preview": "previews/gif/Initial_D_Wallpaper.gif",
"date": 1766949518299,
"from": "website"
},
{
"name": "Itachi",
"id": 5845826,
"creator": "Cranxy",
"description": "this sick dude from naruto",
"file": "wallpapers/Itachi.tendies",
"preview": "previews/gif/Itachi.gif",
"date": 1769779469006,
"from": "website"
},
{
"name": "Itsuki Nakano (TQQ)",
"id": 4575846,
"creator": "chokunplayz",
"description": "Itsuki Nakano wall featuring her manga panels and artworks",
"file": "wallpapers/Itsuki_Nakano__TQQ_.tendies",
"preview": "previews/gif/Itsuki_Nakano__TQQ_.gif",
"from": "website",
"date": 1766037600000
},
{
"name": "JieYuan from Arknights",
"id": 7993966,
"creator": "Alpha Canis",
"description": "Full Lock/Unlock/Sleep States available",
"file": "wallpapers/JieYuan_from_Arknights.tendies",
"preview": "previews/gif/JieYuan_from_Arknights.gif",
"from": "website",
"date": 1766008800000
},
{
"name": "JuiceWRLD",
"id": 9853030,
"creator": "sverre",
"description": "Juice WRLD Animated Wallpaper",
"file": "wallpapers/JuiceWRLD.tendies",
"preview": "previews/gif/JuiceWRLD.gif",
"date": 1770049106023,
"from": "website"
},
{
"name": "Kasaneteto",
"id": 2715656,
"creator": "akkarinn",
"description": "铁头",
"file": "wallpapers/Kasaneteto.tendies",
"preview": "previews/gif/Kasaneteto.gif",
"date": 1768137725696,
"from": "website"
},
{
"name": "Kira Killer queen ",
"id": 2229442,
"creator": "Dan",
"description": "JJBA Yoshikage Kira",
"file": "wallpapers/Kira_Killer_queen_.tendies",
"preview": "previews/gif/Kira_Killer_queen_.gif",
"date": 1769440618566,
"from": "website"
},
{
"name": "LBJ",
"id": 8238177,
"creator": "l01",
"description": "LeBron James,2018 Cavaliers,23",
"file": "wallpapers/LBJ.tendies",
"preview": "previews/gif/LBJ.gif",
"date": 1767097295157,
"from": "website"
},
{
"name": "LVpassportFR",
"id": 7135758,
"creator": "ttoff999",
"description": "Create with \n# https://caplayground.vercel.app/ By TTOFF999",
"file": "wallpapers/LVpassportFR.tendies",
"preview": "previews/gif/LVpassportFR.gif",
"date": 1766848421657,
"from": "website"
},
{
"name": "Layer Cake",
"id": 8479603,
"creator": "Ponderdev",
"description": "Interactive layer wallpaper",
"file": "wallpapers/Layer_Cake.tendies",
"preview": "previews/gif/Layer_Cake.gif",
"date": 1767212451178,
"from": "website"
},
{
"name": "Lightning McQueen",
"creator": "lordrezon",
"description": "Made with Cap, shows Lightning McQueen",
"file": "wallpapers/Lightning_McQueen.tendies",
"preview": "previews/gif/Lightning_McQueen.gif",
"from": "discord",
"id": 4618572,
"date": 1761217200000
},
{
"name": "Luffy Gear 5",
"creator": "enkei64",
"description": "Luffy Gear 5 (v2) Wallpaper with many effects!",
"file": "wallpapers/Luffy_Gear_5.tendies",
"preview": "previews/gif/Luffy_Gear_5.gif",
"from": "discord",
"id": 5883484,
"date": 1761166800000
},
{
"name": "Luo Tianyi",
"id": 1670583,
"creator": "meisitechen",
"description": "Luo Tianyi wallpaper",
"file": "wallpapers/Luo_Tianyi.tendies",
"preview": "previews/gif/Luo_Tianyi.gif",
"date": 1772210378625,
"from": "website"
},
{
"name": "MEIZU HINATA",
"id": 4606085,
"creator": "NguynV",
"description": "hiệu ứng mở khoá meizu",
"file": "wallpapers/MEIZU_HINATA.tendies",
"preview": "previews/gif/MEIZU_HINATA.gif",
"date": 1772375049826,
"from": "website"
},
{
"name": "MajdataPlay XXLB 小小蓝白",
"id": 5563166,
"creator": "Fan DoraXXX",
"description": "From game MajdataPlay LingFeng-bbben/MajdataPlay Ver1.1.0",
"file": "wallpapers/MajdataPlay_XXLB_____.tendies",
"preview": "previews/gif/MajdataPlay_XXLB_____.gif",
"from": "website",
"date": 1766418079828
},
{
"name": "Manhattan Cafe",
"id": 4036723,
"creator": "Moroshka239",
"description": "Simple wallpaper Manhattan Cafe from Umamusume",
"file": "wallpapers/Manhattan_Cafe.tendies",
"preview": "previews/gif/Manhattan_Cafe.gif",
"from": "website",
"date": 1766023200000
},
{
"name": "Manosaba Gyro",
"id": 1197274,
"creator": "IceOrange",
"description": "There's sleep transition, but screen recording can't record.",
"file": "wallpapers/Manosaba_Gyro.tendies",
"preview": "previews/gif/Manosaba_Gyro.gif",
"from": "website",
"date": 1761264000000
},
{
"name": "Marin Kitagawa",
"id": 3919633,
"creator": "Zerles",
"description": "Marin Kitagawa from anime My dress-up darling with AOD",
"file": "wallpapers/Marin_Kitagawa.tendies",
"preview": "previews/gif/Marin_Kitagawa.gif",
"date": 1770238908519,
"from": "website"
},
{
"name": "Megadeth",
"id": 7888823,
"creator": "lev",
"description": "rust in peace",
"file": "wallpapers/Megadeth.tendies",
"preview": "previews/gif/Megadeth.gif",
"date": 1769433021833,
"from": "website"
},
{
"name": "Meizu Wallpaper",
"id": 9021265,
"creator": "MnhCngNg",
"description": "IT REQUIRES AOD !!!\n~80% meizu wallpaper effect",
"file": "wallpapers/Meizu_Wallpaper.tendies",
"preview": "previews/gif/Meizu_Wallpaper.gif",
"date": 1769421659783,
"from": "website"
},
{
"name": "Meizu wallpaper effect",
"id": 1977653,
"creator": "MnhCngNg",
"description": "It's only about 80% like meizu's wallpaper effect",
"file": "wallpapers/Meizu_wallpaper_effect.tendies",
"preview": "previews/gif/Meizu_wallpaper_effect.gif",
"date": 1769256013001,
"from": "website"
},
{
"name": "Meowl Dancing",
"id": 3692461,
"creator": "enkei64",
"description": "Meowl gets the wide vibe ride",
"file": "wallpapers/Meowl_Dancing.tendies",
"preview": "previews/gif/Meowl_Dancing.gif",
"from": "website",
"date": 1761249600000
},
{
"name": "Miku Depth Effect",
"id": 3866671,
"creator": "wQx",
"description": "Picture source:@unnyo_8986 from X.",
"file": "wallpapers/Miku_Depth_Effect.tendies",
"preview": "previews/gif/Miku_Depth_Effect.gif",
"from": "website",
"date": 1767471906840
},
{
"name": "Minecraft Furina",
"id": 6726049,
"creator": "ymkee01",
"description": "Furina wallpaper from Genshin Impact with Minecraft",
"file": "wallpapers/Minecraft_Furina.tendies",
"preview": "previews/gif/Minecraft_Furina.gif",
"date": 1769086500969,
"from": "website"
},
{
"name": "Minecraft Liquid Glass (beta)",
"id": 8074740,
"creator": "XnightBE",
"description": "Just minecraft with liquid glass. Русским привет)",
"file": "wallpapers/Minecraft_Liquid_Glass__beta_.tendies",
"preview": "previews/gif/Minecraft_Liquid_Glass__beta_.gif",
"date": 1770914752667,
"from": "website"
},
{
"name": "Moe-Style Zenitsu",
"id": 5019028,
"creator": "ysbz",
"description": "Zenitsu Agatsuma from Demon Slayer in moe style",
"file": "wallpapers/Moe-Style-Zenitsu.tendies",
"preview": "previews/gif/moe-style-zenitsu.gif",
"from": "website",
"date": 1761296400000
},
{
"name": "Monster Mouth",
"creator": "tayvall",
"description": "scary mouth opening and closing",
"file": "wallpapers/Monster_Mouth.tendies",
"preview": "previews/gif/Monster_Mouth.gif",
"from": "discord",
"id": 9605235,
"date": 1761156000000
},
{
"name": "Moon Supper",
"id": 5624115,
"creator": "YangJiii",
"description": "The moon is inspired by the Xiaomi HyperOS wallpaper",
"file": "wallpapers/Moon_Supper.tendies",
"preview": "previews/gif/Moon_Supper.gif",
"date": 1770130420225,
"from": "website"
},
{
"name": "Mr Krabs drowning",
"creator": "spy_g_was_silenced",
"description": "MONEYYY",
"file": "wallpapers/Mr_krabs_drowning.tendies",
"preview": "previews/gif/Mr_krabs_drowning.gif",
"from": "discord",
"id": 3760245,
"date": 1761199200000
},
{
"name": "Nakano Nino (The Quintessential Quintuplet)",
"id": 5036701,
"creator": "ShogunRaiden",
"description": "Custom Wallpaper Nakano nino on Gotoubun no hanayome",
"file": "wallpapers/Nakano_Nino_The_Quintessential_Quintuplet_.tendies",
"preview": "previews/gif/Nakano_Nino_The_Quintessential_Quintuplet_.gif",
"from": "website",
"date": 1761260400000
},
{
"name": "Nazuna Nanakusa",
"id": 2363185,
"creator": "Skywin",
"description": "Nazuna Nanakusa/Call of the Night/Wallpaper",
"file": "wallpapers/Nazuna_Nanakusa.tendies",
"preview": "previews/gif/Nazuna_Nanakusa.gif",
"date": 1770792442908,
"from": "website"
},
{
"name": "Nezuko - Demon Slayer",
"id": 3619384,
"creator": "ysbz",
"description": "Nezuko Kamado from Demon Slayer",
"file": "wallpapers/Nezuko-DS.tendies",
"preview": "previews/gif/Nezuko-DS.gif",