-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
868 lines (865 loc) · 46.7 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Waydroid | Android in a Linux container</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Waydroid - Android in a Linux container">
<meta name="description" content="Waydroid - Android in a Linux container">
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" type="image/png" href="./assets/images/favicon.png">
<!-- ===== All CSS files ===== -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/lineicons.css">
<link rel="stylesheet" href="assets/css/ud-styles.css">
<link rel="stylesheet" href="assets/css/default.min.css">
<link rel="stylesheet" href="assets/css/sharing.css">
<script src="assets/js/highlight.min.js"></script>
<script> hljs.initHighlightingOnLoad();
</script>
</head>
<body>
<!-- ====== Header Start ====== -->
<header class="ud-header sticky">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img class="w-75" src="assets/images/logo/waydroid_icon_sm.png" alt="Logo">
</a>
<button class="navbar-toggler">
<span class="toggler-icon"> </span>
<span class="toggler-icon"> </span>
<span class="toggler-icon"> </span>
</button>
<div class="navbar-collapse">
<ul id="nav" class="navbar-nav mx-auto" style="transform: translateX(20%)">
<li class="nav-item">
<a class="ud-menu-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="ud-menu-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="ud-menu-scroll active" href="#docs">Docs</a>
</li>
<li class="nav-item">
<a class="ud-menu-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<div class="navbar-btn d-sm-inline-block mr-3 pr-3">
<a class="ud-main-btn ud-white-btn" href="#install" style="margin-right: 1rem"> Install</a>
</div>
<div class="navbar-btn2 d-none d-sm-inline-block">
<a class="ud-main-btn navbar-btn2-link ud-white-btn" href="#wdlinux"> Waydroid-Linux Beta</a>
</div>
</nav>
</div>
</div>
</div>
</header>
<!-- ====== Header End ====== -->
<!-- ====== Hero Start ====== -->
<section class="ud-hero" id="home" style="
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.8),
rgba(0, 0, 0, 0)
),
url(assets/css/background/wd-night-city.svg);
background-position: top left, cover;
background-size: 100%, center;
background-repeat: repeat, repeat;
">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="ud-hero-content wow fadeInUp" data-wow-delay=".2s" style="
visibility: visible;
animation-delay: 0.2s;
animation-name: fadeInUp;
">
<img class="w-75" src="assets/images/hero/waydroid_white_tb.png">
<p class="ud-hero-desc"> A container-based approach to boot a full Android system on regular GNU/Linux systems running Wayland based desktop environments. </p>
<ul class="ud-hero-buttons">
<li>
<a href="#docs" rel="nofollow noopener" class="ud-main-btn ud-white-btn"> Documentation</a>
</li>
<li>
<a href="#about" rel="nofollow noopener" class="ud-main-btn ud-link-btn"> Learn More <i class="lni lni-chevron-right"></i>
</a>
</li>
</ul>
</div>
<div class="ud-hero-image wow fadeInUp" data-wow-delay=".25s" style="
visibility: visible;
animation-delay: 0.25s;
animation-name: fadeInUp;
">
<div id="carouselExampleCaptions" class="carousel slide carousel-fade rounded-3" data-bs-ride="carousel" style=" transform: translateY(32px) ;">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block img-fluid w-100 rounded-3" src="assets/images/hero/main_landing.jpeg">
<div class="carousel-caption d-none d-md-block blurme-dark rounded-3">
<h5>Full Integration Of Android on Linux</h5>
<p>Using Waydroid's Multi-Window Mode</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid w-100 rounded-3" src="assets/images/hero/Group 1.png">
<div class="carousel-caption d-none d-md-block blurme-dark rounded-3">
<h5>Mobile Linux Integrations</h5>
<p>Brought To Life With Waydroid</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid w-100 rounded-3" src="assets/images/hero/clean_desktop.jpeg">
<div class="carousel-caption d-none d-md-block blurme-dark rounded-3">
<h5>Bring Your Desktop To Life</h5>
<p>With Waydroids Fullscreen Mode For Desktops & Kiosks</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<img src="assets/images/hero/dotted-shape.svg" alt="shape" class="shape shape-1">
<img src="assets/images/hero/dotted-shape.svg" alt="shape" class="shape shape-2">
</div>
</div>
</div>
</div>
</section>
<!-- ====== Hero End ====== -->
<!-- ====== Features Start ====== -->
<section id="features" class="ud-features">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title">
<span>Features</span>
<h2>Main Features of Waydroid</h2>
<p> Waydroid uses Linux namespaces (user, pid, uts, net, mount, ipc) to run a full Android system in a container and provide Android applications on any GNU/Linux-based platform (arm, arm64, x86, x86_64). The Android system inside the container has direct access to needed hardware through LXC and the binder interface. </p>
</div>
</div>
</div>
<div class="row d-flex align-items-center justify-content-center">
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".1s" style="
visibility: visible;
animation-delay: 0.1s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-gift"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Free and Open-Source</h3>
<p class="ud-feature-desc"> The Project is completely free and open-source, currently our repo is hosted on <a target="BLANK" href="https://github.com/waydroid">Github.</a> </p>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".15s" style="
visibility: visible;
animation-delay: 0.15s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-move"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Full app integration</h3>
<p class="ud-feature-desc"> Waydroid integrated with Linux adding the Android apps to your linux applications folder. </p>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".2s" style="
visibility: visible;
animation-delay: 0.2s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-layout"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Multi-window mode</h3>
<p class="ud-feature-desc"> Waydroid expands on Android freeform window definition, adding a number of features. </p>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".25s" style="
visibility: visible;
animation-delay: 0.25s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-layers"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Full UI Mode</h3>
<p class="ud-feature-desc"> For gaming and full screen entertainment, Waydroid can also be run to show the full Android UI. </p>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".1s" style="
visibility: visible;
animation-delay: 0.1s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-rocket"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Near native performance</h3>
<p class="ud-feature-desc"> Get the best performance possible using wayland and AOSP mesa, taking things to the next level </p>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".1s" style="
visibility: visible;
animation-delay: 0.1s;
animation-name: fadeInUp;
">
<div class="ud-feature-icon">
<i class="lni lni-users"></i>
</div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Active community</h3>
<p class="ud-feature-desc"> Find out what all the buzz is about and explore all the possibilities Waydroid could bring </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Features End ====== -->
<!-- ====== About Start ====== -->
<section id="about" class="ud-about">
<div class="container">
<div class="ud-about-wrapper wow fadeInUp" data-wow-delay=".2s" style="
visibility: visible;
animation-delay: 0.2s;
animation-name: fadeInUp;
">
<div class="ud-about-content-wrapper">
<div class="ud-about-content">
<span class="tag">About Us</span>
<h2>Get your favourite Android Apps on Linux.</h2>
<p> Waydroid brings all the apps you love, right to your desktop, working side by side your Linux applications.<br> The Android inside the container has direct access to needed hardwares.<br> The Android runtime environment ships with a minimal customized Android system image based on <a href="https://lineageos.org/" target="blank">LineageOS</a>. The used image is currently based on Android 11 </p>
<a href="#install" class="ud-main-btn"> Install Instructions <i class="lni lni-chevron-right"></i>
</a>
</div>
</div>
<div class="ud-about-image m-3">
<img src="assets/images/hero/photo1628875295.jpeg" alt="about-image">
</div>
</div>
</div>
</section>
<!-- ====== About End ====== -->
<!-- ====== Docs Start ====== -->
<section id="docs" class="ud-pricing">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Docs</span>
<h2>Our Documentation</h2>
<p> Our documentation site can be found at <a target="BLANK" href="https://docs.waydro.id/"> docs.waydro.id</a>
</p>
<h2 class="my-5">Bugs & Reports</h2>
<p> Bug Reports can be filed on our repo <a target="BLANK" href="https://github.com/waydroid/waydroid/issues"> Github Repo</a>
</p>
<h2 class="my-5">Project Development</h2>
<p> Our development repositories are hosted on <a target="BLANK" href="https://github.com/waydroid/"> Github</a>
</p>
<h2 class="my-5">How to Install ?</h2>
<p> Please refer to our <a target="BLANK" href="https://docs.waydro.id/usage/install-on-desktops"> installation docs</a> for complete installation guide. </p>
<h2 class="my-5">Manual Image Download</h2>
<p>You can also manually download our images from</p>
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://sourceforge.net/projects/waydroid">
<img style="width: 2rem; padding-right:0.5rem;" src="./assets/images/logo/sf.png" alt="sourceforge logo"> SourceForge <i class="lni lni-angle-double-down"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Docs End ====== -->
<!-- ====== FAQ Start ====== -->
<section id="install" class="ud-faq">
<div class="shape">
<img src="assets/images/faq/shape.svg" alt="shape">
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<span>Instructions</span>
<h2>Quick install reference</h2>
<p>For systemd distributions</p>
</div>
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs" data-bs-tabs="tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="true" data-bs-toggle="tab" href="#cpus1">Supported CPUs</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#gpus1">Supported GPUs</a>
</li>
</ul>
</div>
<form class="card-body tab-content">
<div class="tab-pane active" id="cpus1">
<p class="card-text">Waydroid supports most common architectures (ARM, ARM64, x86 & x86_64 CPUs)</p>
</div>
<div class="tab-pane" id="gpus1">
<p class=" card-text">Waydroid uses Android's mesa integration for passthrough, and that enables support to most ARM/ARM64 SOCs on the mobile side, and Intel/AMD GPUs for the PC side. For Nvidia GPUs (except tegra) and VMs, we recommend using <a href="https://docs.waydro.id/faq/get-waydroid-to-work-through-a-vm">software-rendering</a> </p>
</div>
</form>
</div>
<div class="row">
<div class="col-md-12">
<p>Follow the install instructions for your linux distribution. You can find a list in our <a href="https://docs.waydro.id/usage/install-on-desktops">docs</a>.
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>After installing you should start the waydroid-container service, if it was not started automatically:</p>
</div>
<div class="col-md-12">
<figure class="highlight">
<pre><code class="hljs language-bash" data-lang="">sudo systemctl enable --now waydroid-container
</code></pre>
</figure>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>Then launch Waydroid from the applications menu and follow the first-launch wizard.</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>If prompted, use the following links for System OTA and Vendor OTA:</p>
</div>
<div class="col-md-6">
<pre><code class="hljs language-bash" data-lang=""><p>https://ota.waydro.id/system</p></code></pre>
</div>
<div class="col-md-6">
<pre><code class="hljs language-bash" data-lang=""><p>https://ota.waydro.id/vendor</p></code></pre>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>For further instructions, please visit the docs site <a target="BLANK" href="https://docs.waydro.id">here</a>
</p>
</div>
</div>
</div>
</section>
<!-- ====== FAQ End ====== -->
<section>
<div class="container-fluid">
<div class="row">
<!-- /.banner-child -->
<div class="py-5" id="wdlinux">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<span>Waydroid-Linux Beta</span>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 order-2 order-md-1 drop-shadow">
<img class="img-fluid d-block" src="assets/images/hero/Computer_wd.png">
</div>
<div class="px-md-5 col-md-6 d-flex flex-column align-items-start justify-content-center order-1 order-md-2">
<h1>Waydroid-Linux</h1>
<h3><span style="color: var(--primary-color);">Latest Beta </span><span style="color: var(--secondary-color); font-size-adjust:0.58!important; font-weight:0.42rem!important;"> 01.30.2023</span></h3>
<p class="mb-3"> We have started creating a few fully-integrated distros in order to demonstrate some of the possibilities that Waydroid can help achieve. <br> Each of the distros we produce will also showcase some of the work from our growing community of contributors. <br> Our initial alpha releases of this integration started with Ubuntu 20.04 (focal) and is now on Ubuntu 22.04 (jammy) as well as Debian 12 (bookworm), and includes many added tools and scripts to help open up what is possible. </p>
<div class="card mb-3">
<div class="card-header">
<h5 class="card-title">Information</h5>
<ul class="nav nav-tabs card-header-tabs" data-bs-tabs="tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="true" data-bs-toggle="tab" href="#cpus">Supported CPUs</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#gpus">Supported GPUs</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#sources">Sources</a>
</li>
</ul>
</div>
<form class="card-body tab-content">
<div class="tab-pane active" id="cpus">
<p class="card-text">Waydroid-Linux currently only supports x86_64 CPUs (Intel/AMD)</p>
</div>
<div class="tab-pane" id="gpus">
<p class=" card-text">Waydroid-Linux uses Android's mesa integration for passthrough, and that restricts support to Intel and AMD GPUs<br> For Nvidia GPUs and VMs, we recommend using <a href="https://docs.waydro.id/faq/get-waydroid-to-work-through-a-vm">software-rendering</a> </p>
</div>
<div class="tab-pane" id="sources">
<p class=" card-text">We have been working with a number of devs on Waydroid-Linux, and have been creating or contributing to a number of projects for it. <br> Here are just a few of the projects we've been using:</p>
<ol class="list-group list-group-numbered">
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Waydroid-Linux Tools</div> A few scripts, configs, and themes for the Waydroid-Linux builds <div>
<a href="https://github.com/waydroid/waydroid-linux_tools"><span class="badge bg-primary rounded-pill">Sources</span></a>
</div>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Waydroid-Settings</div> A GTK app written in Python to control Waydroid settings and expand with scripts (shell/py) <div>
<a href="https://github.com/axel358/Waydroid-Settings"><span class="badge bg-primary rounded-pill">Sources</span></a>
</div>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Penguins-Eggs</div> A tool used for packaging and installation of various Linux distros <div>
<a href="https://github.com/electrikjesus/penguins-eggs"><span class="badge bg-primary rounded-pill">Our Fork</span></a>
</div>
<div>
<a href="https://github.com/pieroproietti/penguins-eggs"><span class="badge bg-primary rounded-pill">Upstream</span></a>
</div>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Others worth mentioning:</div>
<div>
<a href="https://github.com/Quackdoc/waydroid-scripts"><span class="badge bg-primary rounded-pill">QuackDoc's Waydroid-Scripts</span></a>
</div>
<div>
<a href="https://github.com/electrikjesus/wd-scripts"><span class="badge bg-primary rounded-pill">electrikjesus's WD-Scripts</span></a>
</div>
<div>
<a href="https://github.com/electrikjesus/waydroid-10-11-switch-script"><span class="badge bg-primary rounded-pill">Waydroid 10/11 switch script</span></a>
</div>
</div>
</li>
</ol>
</div>
</form>
</div>
<!---------->
<details>
<summary>Live Mode Info</summary><br> Due to how Waydroid uses LXC and kernel modules for the binder, it will not work while running in live mode and must be installed before working properly. <br>Make sure to check the readme for the .iso, as it contains the specifics needed for each build.
</details>
<br>
<!-- Button trigger modal -->
<button type="button" class="btn ud-main-btn ud-link-btn" data-bs-toggle="modal" data-bs-target="#exampleModal"> Download Now </button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Share & Download</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h2 class="text-center">Thanks for Downloading</h2>
<p class="text-center">Please consider sharing our work as a way to help us spread the word.</p>
<div class="text-center modal-footer d-flex align-items-center justify-content-center ">
<!-- Sharingbutton Facebook -->
<a class="resp-sharing-button__link" href="https://facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwaydro.id" target="_blank" rel="noopener" aria-label="Facebook">
<div class="resp-sharing-button resp-sharing-button--facebook resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z"></path>
</svg></div>Facebook
</div>
</a>
<!-- Sharingbutton Twitter -->
<a class="resp-sharing-button__link" href="https://twitter.com/intent/tweet/?text=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!&url=https%3A%2F%2Fwaydro.id" target="_blank" rel="noopener" aria-label="Twitter">
<div class="resp-sharing-button resp-sharing-button--twitter resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z"></path>
</svg></div>Twitter
</div>
</a>
<!-- Sharingbutton LinkedIn -->
<a class="resp-sharing-button__link" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwaydro.id&title=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!&summary=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!&source=https%3A%2F%2Fwaydro.id" target="_blank" rel="noopener" aria-label="LinkedIn">
<div class="resp-sharing-button resp-sharing-button--linkedin resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z"></path>
</svg></div>LinkedIn
</div>
</a>
<!-- Sharingbutton Reddit -->
<a class="resp-sharing-button__link" href="https://reddit.com/submit/?url=https%3A%2F%2Fwaydro.id&resubmit=true&title=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!" target="_blank" rel="noopener" aria-label="Reddit">
<div class="resp-sharing-button resp-sharing-button--reddit resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z"></path>
</svg></div>Reddit
</div>
</a>
<!-- Sharingbutton Hacker News -->
<a class="resp-sharing-button__link" href="https://news.ycombinator.com/submitlink?u=https%3A%2F%2Fwaydro.id&t=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!" target="_blank" rel="noopener" aria-label="Hacker News">
<div class="resp-sharing-button resp-sharing-button--hackernews resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140">
<path fill-rule="evenodd" d="M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z"></path>
</svg></div>Hacker News
</div>
</a>
<!-- Sharingbutton Telegram -->
<a class="resp-sharing-button__link" href="https://telegram.me/share/url?text=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20Linux%20distro%20called%20%23waydroid_linux%20that%20integrates%20Android!&url=https%3A%2F%2Fwaydro.id" target="_blank" rel="noopener" aria-label="Telegram">
<div class="resp-sharing-button resp-sharing-button--telegram resp-sharing-button--medium">
<div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z"></path>
</svg></div>Telegram
</div>
</a>
</div>
</div>
<p class="text-center text-danger">Remember to check the README.md located in the download folder for release info</p>
<div class="modal-footer text-center d-flex flex-column align-items-center justify-content-center ">
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://sourceforge.net/projects/blissos-dev/files/waydroid/linux/beta/ubuntu/jammy/01-30-2023-plasma/">
<img style="width: 2rem; padding-right:0.5rem;" src="./assets/images/logo/sf.png" alt="sourceforge logo"> Ubuntu 22.04 [KDE-Plasma] (Lineage-18.1) <i class="lni lni-angle-double-down"></i>
</a>
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://mega.nz/folder/SoJEXCqT#lRB8Hr_Ofe_Tj135Larb8g">
<img style="width: 2rem; padding-right:0.5rem;" src="https://cms2.mega.nz/b41537c0eae056cfe5ab05902fca322b.png" alt="Mega.nz logo"> Ubuntu 22.04 [Gnome] (Lineage-18.1) <i class="lni lni-angle-double-down"></i>
</a>
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://sourceforge.net/projects/blissos-dev/files/waydroid/linux/beta/debian/bookworm/03-15-22/">
<img style="width: 2rem; padding-right:0.5rem;" src="./assets/images/logo/sf.png" alt="sourceforge logo"> Debian 12 Beta (Lineage-17.1 vanilla) <i class="lni lni-angle-double-down"></i>
</a>
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://sourceforge.net/projects/blissos-dev/files/waydroid/linux/beta/ubuntu/impish/03-05-22/">
<img style="width: 2rem; padding-right:0.5rem;" src="./assets/images/logo/sf.png" alt="sourceforge logo"> Ubuntu 21.10 Beta (Lineage-17.1 vanilla) <i class="lni lni-angle-double-down"></i>
</a>
<a class="ud-main-btn ud-link-btn my-3" target="BLANK" href="https://sourceforge.net/projects/blissos-dev/files/waydroid/linux/alpha/ubuntu/">
<img style="width: 2rem; padding-right:0.5rem;" src="./assets/images/logo/sf.png" alt="sourceforge logo"> Our Older Releases <i class="lni lni-angle-double-down"></i>
</a>
</div>
</div>
</div>
</div>
<!---------->
</div>
</div>
</div>
</div>
<!-- /.banner-child -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</section>
<!-- ====== Team Start ====== -->
<section id="team" class="ud-team">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Our Team</span>
<h2>Meet The Team</h2>
<p>Here are the members of our team</p>
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".1s" style="
visibility: visible;
animation-delay: 0.1s;
animation-name: fadeInUp;
">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="https://avatars.githubusercontent.com/u/7512922?v=4" alt="team">
</div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1">
<img src="assets/images/team/shape-2.svg" alt="shape" class="shape shape-2">
</div>
<div class="ud-team-info">
<h5>Erfan Abdi</h5>
<p4>@erfanoabdi</p4>
<h6 contenteditable="true">Lead Developer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a target="BLANK" href="https://github.com/erfanoabdi">
<i class="lni lni-github-original"></i>
</a>
</li>
<li>
<a target="BLANK" href="https://twitter.com/Khode_Erfan">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".15s" style="
visibility: visible;
animation-delay: 0.15s;
animation-name: fadeInUp;
">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="https://avatars.githubusercontent.com/u/8167495?v=4" alt="team">
</div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1">
<img src="assets/images/team/shape-2.svg" alt="shape" class="shape shape-2">
</div>
<div class="ud-team-info">
<h5>Alessandro Astone</h5>
<p4>@aleasto</p4>
<h6>Developer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a target="BLANK" href="https://github.com/aleasto">
<i class="lni lni-github-original"></i>
</a>
</li>
<li>
<a target="BLANK" href="https://twitter.com/aaleasto">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".15s" style="
visibility: visible;
animation-delay: 0.15s;
animation-name: fadeInUp;
">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="https://avatars.githubusercontent.com/u/8572619?v=4" alt="team">
</div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1">
<img src="assets/images/team/shape-2.svg" alt="shape" class="shape shape-2">
</div>
<div class="ud-team-info">
<h5>Jon West</h5>
<p4>@electrikjesus</p4>
<h6>Developer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a target="BLANK" href="https://github.com/electrikjesus">
<i class="lni lni-github-original"></i>
</a>
</li>
<li>
<a target="BLANK" href="https://twitter.com/electrikjesus">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".2s" style="
visibility: visible;
animation-delay: 0.2s;
animation-name: fadeInUp;
">
<div class="ud-team-image-wrapper">
<div class="ud-team-image">
<img src="https://avatars.githubusercontent.com/u/22264125" alt="team">
</div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1">
<img src="assets/images/team/shape-2.svg" alt="shape" class="shape shape-2">
</div>
<div class="ud-team-info">
<h5>Radek Błędowski</h5>
<p4>@RKBDI</p4>
<h6>Designer</h6>
</div>
<ul class="ud-team-socials">
<li>
<a target="BLANK" href="https://dribbble.com/rkbdi">
<i class="lni lni-dribbble"></i>
</a>
</li>
<li>
<a target="BLANK" href="https://twitter.com/RKBDI">
<i class="lni lni-twitter-filled"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="donate">
<div class="container-fluid">
<div class="row text-center py-5">
<div class="col-md-12" id="contact">
<h1>Get in Touch</h1>
<h4 class="text-body my-3"> If you want to get in contact with the developers, please feel free to join the WayDroid groups </h4>
<div class="row mt-5">
<div class="col-md-3"></div>
<div class="col-md-3">
<a target="BLANK" href="https://t.me/WayDroid" class="">
<div class="col-md-12">
<img class="img-fluid w-25" src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg">
<h3>Telegram</h3>
</div>
</a>
</div>
<div class="col-md-3">
<a target="BLANK" href="https://matrix.to/#/#waydroid:matrix.org">
<div class="col-md-12">
<img class="img-fluid w-25" src="https://upload.wikimedia.org/wikipedia/commons/7/7c/Matrix_icon.svg">
<h3> Matrix </h3>
</div>
</a>
</div>
<div class="col-md-3"></div>
</div>
<h3 class="display-3"> </h3>
<!-- /.animated scroll -->
</div>
</div>
<div class="row">
<div class="donate_bg py-5 text-center">
<h1>Help Us Grow</h1>
<br>
<h4> Waydroid is now on Open-Collective </h4>
<h4 class="pb-5"> We are now accepting donations and sponsorships through Open-Collective. </h4>
<div class="row">
<div>
<!-- <script class="text-center" width=40% style="width: 40%;" src='https://opencollective.com/waydroid/banner.js'></script> -->
<a href="https://opencollective.com/waydroid/donate" target="_blank">
<img class="img-fluid w-50" src="https://opencollective.com/webpack/donate/[email protected]?color=blue">
</a>
</div>
<!-- /.animated scroll -->
</div>
<!-- /.banner-child -->
<!-- /.banner-child -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</div>
</section>
<!-- ====== Team End ====== -->
<!-- ====== Contact Start ====== -->
<!-- ====== Contact End ====== -->
<!-- ====== Footer Start ====== -->
<footer class="ud-footer wow fadeInUp bg-dark" data-wow-delay=".15s" style="
visibility: visible;
animation-delay: 0.15s;
animation-name: fadeInUp;
">
<div class="ud-footer-bottom">
<div class="container">
<div class="row">
<div class="col-md-5">
<ul class="ud-footer-bottom-left">
<li>
<a href="https://github.com/waydroid">Source</a>
</li>
<li>
<a href="https://docs.waydro.id">Documentation</a>
</li>
</ul>
</div>
<div class="col-md-3">
<p class="ud-footer-bottom-center"> A <a href="https://blisslabs.org"> BlissLabs</a> Project </p>
</div>
<div class="col-md-4">
<p class="ud-footer-bottom-right"> Copyright © 2022 All rights reserved. </p>
</div>
</div>
</div>
</div>
</footer>
<!-- ====== Footer End ====== -->
<!-- ====== Back To Top Start ====== -->
<a href="javascript:void(0)" class="back-to-top" style="display: flex">
<i class="lni lni-chevron-up"> </i>
</a>
<!-- ====== Back To Top End ====== -->
<!-- ====== All Javascript Files ====== -->
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/main.js"></script>
<script>
// ==== for menu scroll
const pageLink = document.querySelectorAll(".ud-menu-scroll");
pageLink.forEach((elem) => {
elem.addEventListener("click", (e) => {
e.preventDefault();
document.querySelector(elem.getAttribute("href")).scrollIntoView({
behavior: "smooth",
offsetTop: 1 - 60,
});
});
});
// section menu active
function onScroll(event) {
const sections = document.querySelectorAll(".ud-menu-scroll");
const scrollPos = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
for (let i = 0; i < sections.length; i++) {
const currLink = sections[i];
const val = currLink.getAttribute("href");
const refElement = document.querySelector(val);
const scrollTopMinus = scrollPos + 73;
if (refElement.offsetTop <= scrollTopMinus && refElement.offsetTop + refElement.offsetHeight > scrollTopMinus) {
document.querySelector(".ud-menu-scroll").classList.remove("active");
currLink.classList.add("active");
} else {
currLink.classList.remove("active");
}
}
}
window.document.addEventListener("scroll", onScroll);
</script>
<script>
var myModal = document.getElementById('myModal')
var myInput = document.getElementById('myInput')
myModal.addEventListener('shown.bs.modal', function() {
myInput.focus()
})
</script>
</body>
</html>