-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdesktop1.html
More file actions
1652 lines (1466 loc) · 103 KB
/
desktop1.html
File metadata and controls
1652 lines (1466 loc) · 103 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
<!--System Update Code-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* Import IBM Plex Sans font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM Plex Sans:wght@300;400;500;700&display=swap');
/* Styling for the update alert box */
#updateAlert {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
background-color: #333;
color: #fff;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
width: 300px;
z-index: 1000;
}
#updateAlert h3 {
margin: 0 0 10px;
font-size: 1.2em;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 700; /* Bold style */
}
#updateAlert p {
margin: 5px 0;
font-size: 0.9em;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 600; /* Regular style */
}
#updateAlert button {
margin-top: 10px;
padding: 5px 10px;
font-size: 0.9em;
border: none;
cursor: pointer;
border-radius: 3px;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 500; /* Medium style */
}
#updateNowButton {
background-color: #28a745;
color: #fff;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 500; /* Medium style */
}
#dismissButton, #remindLaterButton {
background-color: #dc3545;
color: #fff;
margin-left: 10px;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 400; /* Regular style */
}
/* Styling for the Check for Update button */
#checkUpdateButton, #reminderButton {
margin: 20px;
padding: 10px 20px;
font-size: 1em;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
border-radius: 5px;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 500; /* Medium style */
}
/* Styling for reminder select */
#reminderSelect {
display: none;
margin: 20px;
font-family: "IBM Plex Sans", sans-serif;
font-weight: 400; /* Regular style */
}
</style>
</head>
<body>
<!-- Update Alert Box -->
<div id="updateAlert">
<h3>New Update Available!</h3>
<p id="updateVersion"></p>
<p id="updateNotes"></p>
<button id="updateNowButton" onclick="downloadUpdate()">Update Now</button>
<button id="dismissButton" onclick="dismissAlert()">Dismiss</button>
<button id="remindLaterButton" onclick="setReminderFromLocalStorage()">Remind Me Later</button>
</div>
<script>
const currentVersion = "4.7"; // Current version of BJH OS
let reminderInterval;
// Load reminder time from local storage
window.onload = function() {
const savedInterval = localStorage.getItem('reminderInterval');
if (savedInterval) {
setReminderInterval(savedInterval); // Set the reminder based on saved value
}
};
// Function to automatically check for updates periodically
function autoCheckForUpdates() {
fetchUpdateData(false);
}
// Function to manually check for updates when the button is clicked
function manualCheckForUpdates() {
fetchUpdateData(true);
}
// Core function to fetch update data and show alert if an update is available
function fetchUpdateData(showAlertIfUpToDate) {
fetch('https://raw.githubusercontent.com/Haris16-code/BJH-OS-Server/refs/heads/main/latestVersion.json')
.then(response => response.json())
.then(data => {
const latestVersion = data.version;
const updateNotes = data.updateNotes;
const downloadLink = data.downloadLink; // Retrieves the download link from JSON
if (currentVersion !== latestVersion) {
showUpdateAlert(latestVersion, updateNotes, downloadLink);
} else if (showAlertIfUpToDate) {
alert("BJH OS is already up-to-date!");
}
})
.catch(error => console.error('Error checking for updates:', error));
}
// Function to show the update alert
function showUpdateAlert(latestVersion, updateNotes, downloadLink) {
document.getElementById('updateVersion').textContent = `Version: ${latestVersion}`;
document.getElementById('updateNotes').textContent = updateNotes;
document.getElementById('updateNowButton').setAttribute("onclick", `window.location.href='${downloadLink}'`);
document.getElementById('updateAlert').style.display = 'block';
}
// Function to dismiss the update alert
function dismissAlert() {
document.getElementById('updateAlert').style.display = 'none';
}
// Toggle the display of the reminder selection dropdown
function toggleReminderSelect() {
const select = document.getElementById("reminderSelect");
select.style.display = select.style.display === "none" ? "block" : "none";
}
// Set the reminder interval based on user's selection and save it in local storage
function setReminderInterval(minutes) {
if (reminderInterval) clearInterval(reminderInterval);
if (minutes > 0) {
reminderInterval = setInterval(fetchUpdateData, minutes * 60 * 1000, true);
localStorage.setItem('reminderInterval', minutes); // Save to local storage
alert(`Reminder set for every ${minutes} minute(s).`);
} else {
localStorage.removeItem('reminderInterval'); // Clear reminder if 0 is selected
}
}
// Set a reminder based on the saved value in local storage
function setReminderFromLocalStorage() {
const savedInterval = localStorage.getItem('reminderInterval');
if (savedInterval) {
setReminderInterval(savedInterval); // Set reminder to the saved value
dismissAlert(); // Dismiss alert after setting reminder
} else {
alert("Please set a reminder time first.");
}
}
// Initial automatic check for updates
autoCheckForUpdates();
// Optional: Set an interval to check automatically every 24 hours
setInterval(autoCheckForUpdates, 24 * 60 * 60 * 1000); // Check every 24 hours
</script>
</body>
</html>
<!--System Update Code Ended Here-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<script>
// Check if Setup.html has been loaded before
if (!sessionStorage.getItem('setupLoaded')) {
// Set the flag to indicate that Setup.html has been loaded
sessionStorage.setItem('setupLoaded', 'true');
console.log('Setup.html loaded for the first time.');
} else {
console.log('Setup.html has already been loaded.');
}
</script>
</body>
</html>
<!--Recovery Keys Code-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
document.addEventListener('keydown', function(event) {
// Check if Ctrl + Alt + R is pressed
if (event.ctrlKey && event.altKey && event.key === 'r') {
// Open the recovery.html file
window.location.href = 'Root Directory/OS Files/recovery.html';
}
});
</script>
</head>
<body>
</body>
</html>
<!--Recovery Key Code Ended-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="og:title" property="og:title" content="Ripen OS" /><meta name="og:description" property="og:description" content="BJH OS 4.7 Official | BJH OS concept based on the Windows Operating System | An initiative of the BJH OS"/><meta name="description" content="Windows Ripen Official | BJH OS based on the Windows Operating System UI| An initiative of the BJH OS"/><meta content="Assets/BJH OS.png" property="og:image"/><meta property="og:type" content="website"/>
<title>BJH OS 4.7</title>
<head>
<meta charset="UTF-8">
<title>BJH OS</title>
<!-- Purpose: This tag is used solely to understand user engagement and behavior
on BJH OS, helping us improve the system and enhance user experience.
No personal or sensitive data is collected. Insights from this tag help
us identify potential features and boost overall performance. -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5E7LKX2KHP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5E7LKX2KHP');
</script>
<!-- Your other CSS & JS files -->
</head>
<link rel="shortcut icon" href="Assets/windows11-logo.png" type="image/x-icon">
<link rel="apple-touch-icon" href="Assets/windows11-logo.png" />
<link rel="manifest" href="manifest.json">
<!-- Linking the CSS stylesheet -->
<link rel="stylesheet" href="Styles/style.css">
<link rel="stylesheet" href="Styles/index.css">
<!-- Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
</head>
<body class="bg" onload="ShowDs(), startTime(), StartDate(), startTimeH(), StartDateH()">
<noscript>BJH OS represent a real full functioning Operating System.</noscript>
<div class="blank" id="myblank">
<p>First boot is taking a little time. Please wait...</p>
</div>
<div id="switchP">
<div class="Switch_Mobile">
<CENTER>
<div class="img-ph">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAABTUlEQVR4nO2ZsUrDUBSGz1NoOjv7Fg6NLU66qIuJo0uewNUtb6Kjg8U6dHDs2qEgOS7iYgl0uvDLJVBRbpeT9N5eew58EAIh58s5yT+ESEtL638WOBuA83dwjlZUGYOvUv8Clb3xn2Zmlw32+PUEeEl/Y885JfLKvwA7GikPGqanQEZupmdOie0QmAknsDUCLMe7gJn00CVRCSzHCRajBF9PP0QjsBwn+HxMUD3s4+1+b0U0AotR0/zH8yHM/ALBcsQIBey62Cdu5ucImiOmpUDwHDGbEPCZI2YTAj5zBCVBQn1H4FtC8ByBCvR0AkZXqNSXGPoVmgT6jEqvxxp2UKAgSKhvCHytAtAJIPoVGhIk1H0CH6kAdAIYEse+QqlEYiVQdAv5LhUodALtSpojWEPLdlQAMU6AO1uhAQX4SSjMETiaxzH1vQto7Up9A2vvUuwWfVjRAAAAAElFTkSuQmCC"> </div>
<h1>For Phone Coming soon!!</h1>
<a href="Phone UI/index.html"><button>Phone UI</button></a>
</CENTER>
</div>
</div>
<span id="DesktopVersion">
<!-- TASKBAR -->
<div class="taskbar" id="mytaskbar">
<div id="tbItems">
<div class="dockApps" id="myDockApps">
<!--Start button-->
<div class="startbutton" id="myStartBtn">
<img src="Assets/BJH OS Start Button.png" width="25px" id="nonSe">
<img src="Assets/BJH OS Start Button.png" width="25px" id="Se">
</div>
<!--Tab button-->
<div class="tabbutton" id="myTabBtn">
<img src="Assets/Windows11-tab-view-button.png" width="26px" id="nonSet">
<img src="Assets/Windows11-tab-view-button.png" width="26px" id="set">
</div>
<input type="text" placeholder="Search the web" class="searchT" style=" font-family: Arial, Helvetica, sans-serif; font-size: 13px; "
id="SearchInput" onclick="widgetSearchShow()" oninput="opacityMTb(), inWidgetSearch()">
<img src="Assets/windows11-search-button.png" alt="search" width="16px" id="SearchInput2" onclick="getVal()" title="Search in Google on new tab">
<script>
function openFileManager() {
if (window.openAppInWindow) {
window.openAppInWindow('Root Directory/OS Files/file manager.html', 'File Manager');
} else {
window.open('Root Directory/OS Files/file manager.html', '_blank');
}
}
function openBrowser() {
if (window.openAppInWindow) {
window.openAppInWindow('Root Directory/OS Files/flash_browser.html', 'Browser');
} else {
window.open('Root Directory/OS Files/flash_browser.html', '_blank');
}
}
function openPaint() {
if (window.openAppInWindow) {
window.openAppInWindow('Root Directory/OS Files/paint.html', 'Paint');
} else {
window.open('Root Directory/OS Files/Other Files/Paint/paint.html', '_blank');
}
}
</script>
<!-- Clickable File Manager -->
<div onclick="openFileManager()">
<div class="FIlesbutton" id="myP4">
<img src="Assets/Windows_11_Explorer.png" width="26px">
</div>
</div>
<!-- Clickable Browser -->
<div onclick="openBrowser()">
<div class="Edgebutton" id="myP5">
<img src="Root Directory/OS Files/ICONS/browser icon.png" width="25px">
</div>
</div>
<!-- Clickable Paint -->
<div onclick="openPaint()">
<div class="Edgebutton" id="myP5">
<img src="Root Directory/OS Files/ICONS/paint icon.png" width="25px">
</div>
</div>
<!-- Clickable additional content -->
<div onclick="showMessage()">
<div class="Edgebutton" id="myP5">
<img src="Root Directory/OS Files/ICONS/paint icon.png" width="25px" id="seB">
</div>
</div>
<!--Widget button-->
<div class="widgetbutton" onclick="widgetShow()" id="widgetbtn">
<span class="widgetB-shorten">
<img width="35px" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEoElEQVR4nO2Yb2wTZRzHS7DFVyTgC4G9myaOdSNqSCTqiAY1xigxvgFCjPICBUk0IIkayRQT1OBWtwEGfWMCKNKtY252G2u7dexvq4vKNvBvHMZsWdu7i2wvpPc8z9e096ft3dFx12sJSX/JN2lyS+/z+d1zz/NbHY5ylatc5botCnPf1GDe24TYuSnEWhcRa0M6cR8Qbwfi5+V0APFv5XSCJbrAEt/J8YMlusESPXJ6wRIXQLk+EK5vkST6pigXaAI3UGMf+JTXhdi5E5j3UsRaISUFr4C3Z4F3aMC7NODdGvALaXjKBUC5oJwQSKKfUK7/GOB1FQ4/7w0h5tWA36jrnZqu+/N2nebAh+T0g3IDoFwYhAsHgSnrEunOq+DF7TpVwQdA+DAIPwjCX4TIDbZYg5/z1WC+lRTe9V5N1wOarvfndj0NLsETfggiN0yuc0Nu8wLzbc1F6Xq8F3T2NOiMB+z3d8Auvwo2/Qrob2+DxLpkcAme8MMg/AhEfsRjQcA3na/rLGHUdT/Y3FdgfzeD/XEI7PIesJ9fAPu+DhitAsKrgcAyIOAwTuhO0KseGVyCJ/woCD82aV4g3r6Q23V5a4ydB5v5COzXfcDkdmBiCzC2ARhcCwSdN4a7ybDhe2RwCV4UxpAUxq9ZEDDo+uwXwMWKgiHzJrhc6XoaXhTGIQoRWBDQH0iIbCwufEBKNriUqBUB/UuaWqOlERhXwZVYENCPAaWAR1ogF96SgNHWWDqBqB0C+uHrNhPo1h1ICN9VfIHBNXYJ6McANrmtuPBBF8jVJrsEjMcAljq87H4S4dVgE0+CzH5tCG9RwNrwZTAGGO7rZuMwW2ZGXu3wlT0GSOD6fb0EAgFd19lZD7B2PeC42zjrqkG9x9Wu086XgHon8K5DSr0TtHOXChXe/zIaXU4cdTjSSX0OH9hll4D2P6QBYF0eeCUVbrXrOfBK3nOpUI1Z8KrECpddApm1riyXJeHlKMtFBy9HgTqqgVdik4DykmbW+s0LSDdln1ToBY6sUq97Vrh08A13LLdHIAOe2WHMCpA/20D9u0F920DPPgd25mmQSyfV6yP1r6Fl1cocAf+LW+0SyN4apR3GrICZLM6EsPBXyL5dyGhrNCvQ8OFBbKh144H7a7G5bhOefWYLWs80Zp7QPz2gE82gPx4HvfQ5yJVTEGODdgkMaQ6kUWBlpSmBqqr7UFlZmZPammr1Ovx7Ad/OnLC+/XYJ6A8kevgtYNmavPDs3gfVm2rhlagCvp2GsUVA5Eev5Z6m8hgw3QPi/QzUcxj04Otg23eAPfpEGpxt3AwSOK3etO6Rh3Tw7ur1pgWSQvRf8wLC6HShY8CViXYcef8N7N29A89vfQqPP/Ywvjz5QWab7dmnF+gwOokj5n9WEfmxTwudX5bMXBD0pxOg4x+DhQ+BBd4E+eWU/u/4aINpgetcxJ3ko6SoAsLSSTH8lxivNi2QfgpC5NitFhCFSJPDaqV+2k7y0eCt634kAPzgtCygSIhCtKWUyynJR8VU5wuG174TIh/xpHaEpBBZsB1aSH1nZFLko42W13y5ylWucjlKXf8DXjjS26sMD2MAAAAASUVORK5CYII=">
</span>
<span class="widgetB-expand">
<h6 style="font-size: 12px;">No Music Played</h6>
<img src="https://img.icons8.com/fluency-systems-regular/344/skip-to-start.png" >
<img src="https://img.icons8.com/fluency-systems-regular/452/play--v1.png">
<img src="https://img.icons8.com/fluency-systems-regular/344/end--v1.png">
</span>
</div>
</div>
<!--Calendar button-->
<div class="calbutton" onclick="calendarSH()" id="Calbtn">
<img src="Assets/noty.png" width="23px" class="notybutton">
<div id="txt" class="tD"></div>
<div id="txtdty"class="tY"></div>
</div>
<div class="DesktopShow" id="TaskIconsTB">
<!--Volume button-->
<div class="actionbutton" id="myP7">
<img src="Assets/windows11-actions - Volume.png" width="19.5px" id="nonSeA" >
<img src="Assets/windows11-actions - Volume.png" width="19.5px" id="seA" >
</div>
<!--Network button-->
<div class="actionbutton2" style="right: 152px;" id="myP8">
<img src="Assets/windows11-actions - wifi.png" width="19.5px" id="nonSeA2" >
<img src="Assets/windows11-actions - wifi.png" width="19.5px" id="seA2" >
</div>
<!--Battery button-->
<div class="actionbutton3" style="right: 185px;" id="myP9">
<img src="Assets/windows11-actions - battery.png" width="19.5px" id="nonSeA3" >
<img src="Assets/windows11-actions - battery.png" width="19.5px" id="seA3" >
</div>
<!-- At a glance -->
<div class="actionbutton4" style="right: 220px;" id="myP10">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAABH0lEQVR4nO2WUQ6CMBBEuZG00fufA/QGQjzCmCYkmlrS0s4uqPsSP4zt7gydynadYRiGYfwyAByAG4ArAK/Qzy/9wse1FusBTHjxAHChqZXslygmagLMfkts5rcic+K7J8dmzvRzLcd4looTmP3WimV+rzYBZr+V2LjCdZ4UG1erq1v+JosyV1yUtB+f68fUonGLoFoTiX1TRa8htSjOG90ESfwUtK4tPgG4b7mkpRctd2FT1OwRMaEmXsKEuvgoe4w7IZd5pZPQffKCcdIXT4hTeLcMuQiAGRvmSRTW7cWevLQJaIqPTDRPpLuIZ43Vu4pvNXEI8bUmDiVeY5hTQ2KYU4c5zO1G4TDHfcOyaRnmDsNXxYYxzBmGYRjG3/IE1anyuW/e8W0AAAAASUVORK5CYII=" width="18.5px" id="seA4" >
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAABJklEQVR4nO2X7Q3CMAxEsxEUwf5zUNgAECM8hMqXoBGJ7aSJ5PeriNS+S67UhOA4juM4zi/ABjgCB2AIPQGsgTNvrsAudCq+HxNMsbm8JE/X35+HnmKz7SJORMT/+b4NE//EN22CRPFNmiBTfFMmEIpvwgRK8YuawEj8IiYwFl/VBDDkvlE/hrljwtqh2BtbsvOSXaXESRiJX8YE8tiohjks4mQYG9Ewh+YkLMVrBCExUUJ8NRPIMp91T9EeTH++NYXPKQ+bkYlxbtGo2Mkk8VIT/K7fp+RttqhWfK4J5vutY0VXwCn20NQe5pD0i5moPcyh6ReJkzo2mXG6JMUm4yRMdz5zhtpKi87FyVz8kyIxfRS9/8Tus49RHqexVj/HcRzHCUtyA55c8sCxbpgNAAAAAElFTkSuQmCC" width="18.5px" id="nonSeA4" >
</div>
</div>
</div>
<div class="dockbar" id="dock"></div>
</div>
<!--START MENU-->
<div class="startmenu" id="myStartmenu">
<div class="darktheme" id="themeS">
<CENTER>
<div style="float: left; margin-top: -30px;">
<!--Profile-->
<img src="https://img.icons8.com/fluency/452/user-male-circle.png" width="65px" id="startPfp">
<CENTER>
<p id="greetings" style="color: white;font-family:Arial, Helvetica, sans-serif; margin-left: 20px;"></p>
<h5 style="color: white;">BJH OS V4.7 | Official Stable Release</h5>
</CENTER>
<!--App Search box-->
<input type="text" placeholder="Search apps" class="searchS" id="mySearch" onkeyup="FunctionAppS()" title="App Search"><br><br>
<!--
<img src="Assets/AppsIco.png" width="17px" style="margin-left: -160px; margin-top: -22.5px;-webkit-transform: translate(0px, -33.5px); transform: translate(0px, -33.5px);">
-->
<!--Apps-->
<div class="darkthemeComp" id="themeSA"
style="height: 372px; overflow-y: hidden; margin-top: -20px;padding-top: 5px;">
<div class="startApps">
<h3 style="margin-left: 10px; margin-bottom: 12px;">All Apps</h3>
<hr width="85%" style="border-bottom: 1px solid black; border-radius: 5px;"><br>
<div class="tab">
<!--B-->
<ul id="myMenu" style="margin-left: -15px;">
<li ><button class="startAppsbuttonH"><b>B</b></button></li>
<li > <a href="Root Directory/OS Files/bjh-os-antivirus.html" target="_blank" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/bjh-os-antivirus.png" alt="">
BJH OS Antivirus</button></a></li>
<div style="margin-left: 15px;">
<li > <a href="Root Directory/OS Files/BJHOS_AI.html" target="_blank" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/BJHOS_AI_Icon.png" alt="">
BJH OS AI</button></a></li>
<div style="margin-left: 15px;">
<li > <a href="https://bjh-os-latest-news.blogspot.com" target="_blank" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/latest news icon.png" alt="">
BJH OS Latest News And Updates</button></a></li>
<div style="margin-left: 15px;">
<li > <a href="Root Directory/OS Files/flash_browser.html" target="_blank" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/browser icon.png" alt="">
Flash Browser</button></a></li>
<!--C-->
<li ><button class="startAppsbuttonH"><b>C</b></button></li>
<!-- <li > <a href="https://bjh-os-customization-market.blogspot.com/" target="_blank"target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/customization market icon.png" alt="">
Customization Market</button></a></li> -->
<div style="margin-left: 15px;">
<li>
<a href="Root Directory/OS Files/calculator.html" target="_blank"target="_blank">
<button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/calculator icon.png" alt="">
Calculator
</button>
</a>
</li>
<li > <a href="Root Directory/OS Files/calendar.html" target="_blank"target="_blank"> <button class="startAppsbutton">
<img src="https://img.icons8.com/fluency/52/null/calendar.png" alt="">
Calendar</button></a></li>
<li > <a href="Root Directory/OS Files/command prompt.html" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/cmd icon.png" alt="">
Command Prompt</button></a></li>
<li > <a href="Root Directory/OS Files/color picker.html" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/color picker icon.png" alt="">
Colour Picker</button></a></li>
<li ><a href="Root Directory/OS Files/Other Files/Camera App/index.html" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/camera icon.png" alt="">
Camera</button></a></li>
<li ><a href="Root Directory/OS Files/clock.html" target="_blank"> <button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/clock icon.png" alt="">
Clock</button></a></li>
</div>
<!--D-->
<li ><button class="startAppsbuttonH"><b>D</b></a></li>
<div style="margin-left: 15px;">
<li ><a href="https://discord.gg/SdDSUtCbX8"target="_blank"> <button class="startAppsbutton">
<img style="width: 17.5px; margin-bottom: -5px;" src="https://assets-global.website-files.com/6257adef93867e50d84d30e2/636e0a6a49cf127bf92de1e2_icon_clyde_blurple_RGB.png" alt="">
Discord Server BJH OS
</button></a></li>
</div>
<!--F-->
<li ><button class="startAppsbuttonH"><b>F</b></button></li>
<div style="margin-left: 15px;">
<li><a href="Root Directory/OS Files/file manager.html" target="_blank"><button class="startAppsbutton" onclick="FileExplr()">
<img style="width: 17.5px; margin-bottom: -5px;" src="Assets/Windows_11_Explorer.png" alt="">
Files</button></a></li>
</div>
<!--G-->
<li ><button class="startAppsbuttonH"><b>G</b></a></li>
<div style="margin-left: 15px;">
<li ><a href="https://google.com/"target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/google icon.png" alt="">
Google</button></a></li>
</div>
<div style="margin-left: 15px;">
<li ><a href="Root Directory/OS Files/Games Center/index.html"target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/bjh os game center.png" alt="Game Center">
Game Center</button></a></li>
</div>
<!--I--> <!--
<li ><button class="startAppsbuttonH"><b>I</b></button></li>
-->
<!--I ENDED HERE-->
<!--M-->
<li ><button class="startAppsbuttonH"><b>M</b></a></li>
<div style="margin-left: 15px;">
<li ><a href="https://mail.google.com/"target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/mail.png" alt="">
Mail</button></a></li>
<li ><a href="Root Directory/OS Files/media player.html" target="_blank"><button class="startAppsbutton">
<img src="https://blogs.windows.com/wp-content/uploads/prod/sites/44/2021/11/Logo.png" alt="">
Media Player</button></a></li>
</div>
<!--N-->
<li ><a href="Root Directory/OS Files/notepad.html" target="_blank"><button class="startAppsbuttonH"><b>N</b></button></li>
<div style="margin-left: 15px;">
<li ><button class="startAppsbutton">
<img src="https://img.icons8.com/fluency/52/null/notepad.png" alt="">
Notepad</button></a></li>
</div>
<!--O-->
<li ><button class="startAppsbuttonH"><b>O</b></button></li>
<div style="margin-left: 15px;">
<li ><a href="Root Directory/OS Files//Other Files/Word Office/index.html" target="_blank"><button class="startAppsbutton">
<img src="https://img.icons8.com/fluency/452/microsoft-office-2019.png" alt="">
Office</button></a>
</div>
<!--P-->
<li ><button class="startAppsbuttonH"><b>P</b></button></li>
<div style="margin-left: 15px;">
<li ><a href="Root Directory/OS Files/Paint/paint.html" target="_blank"><button class="startAppsbutton" onclick="Paint()">
<img src="Root Directory/OS Files/ICONS/paint icon.png" alt="">
Paint</button></a></li>
<li ><a href="Root Directory/OS Files/Other Files/Camera App/gallery.html" target="_blank"><button class="startAppsbutton">
<img src="https://img.icons8.com/fluency/52/null/photos.png" alt="">
Photos</button></li>
</div>
<!--S-->
<li ><button class="startAppsbuttonH"><b>S</b></button></li>
<div style="margin-left: 15px;">
<li ><a href="Root Directory/OS Files/screen recorder.html" target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/screen recorder icon.png" alt="">
Screen Recorder</button></li>
<li ><a href="Root Directory/OS Files/settings.html" target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/settings icon.png" alt="">
Settings</button></li>
<li ><a href="Root Directory/OS Files/software update.html" target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/system update.png" alt="">
System Update</button></li>
</div>
<!--W-->
<li ><button class="startAppsbuttonH"><b>W</b></button></li>
<div style="margin-left: 15px;">
<li ><a href="Root Directory/OS Files/weather.html" target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/weather icon.png" alt="">
Weather</button></a></li>
</div>
<!--X-->
<!-- <li ><a href="https://www.xbox.com/"target="_blank"><button class="startAppsbuttonH"><b>X</b></button></li>
<div style="margin-left: 15px;">
<li ><button class="startAppsbutton">
<img src="https://img.icons8.com/fluency/52/null/xbox.png" alt="">
Xbox</button></a></li>
</div> -->
<!--Y-->
<!-- <li ><button class="startAppsbuttonH"><b>Y</b></button></li>
<div style="margin-left: 15px;">
<li ><a href="https://www.youtube.com"target="_blank"><button class="startAppsbutton">
<img src="Root Directory/OS Files/ICONS/youtube icon.png" alt="">
Youtube</button></a></li>
</div> -->
</ul>
<script>
function FunctionAppS() {
//Asigning values.
var input, filter, ul, li, a, i, b;
input = document.getElementById("mySearch");
filter = input.value.toUpperCase();
ul = document.getElementById("myMenu");
li = ul.getElementsByTagName("li");
//For Loop for app search
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("button")[0];
if (a.innerHTML.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
</script>
</div>
</div>
</div>
</div>
<div style="float: right; margin-top: 10px;">
<!--Pinned Apps-->
<b><p>Pinned</p></b>
<div class="Start-moreMenu">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAPUlEQVR4nO3NsQkAIAxE0YxncP8Font8EbSxDhbhXvsPzkxEigE6MIEBeEZ7D/bgioz2/cDPOICW0USkggUiPrQWJTWBOQAAAABJRU5ErkJggg==">
</div>
<br>
<div class="StartPinned" style="margin-bottom: 10px;">
<div class="wrapper2">
<div class="iconP"><i id="left" class="fa-solid fa-angle-left"></i></div>
<ul class="tabs-box">
<li class="tab"><a href="https://bjhos.unaux.com/BJH OS Messenger" target="_blank"><img src="Root Directory/OS Files/ICONS/bjh os messenger.png" width="31px"></a></br><p>BJH OS Messeneger</p></li>
<li class="tab"><a href="https://bjh-os.alwaysdata.net/Apps-Market"target="_blank"><img src="Root Directory/OS Files/ICONS/apps market icon.png" width="32px" style="margin-bottom: -2px;"></a><br><p>Apps Market</p></li>
<li class="tab"><a href="Root Directory/OS Files/settings.html" target="_blank"><img src="Root Directory/OS Files/ICONS/settings icon.png" width="32px" style="margin-bottom: -2px;"></a><br><p>Settings</p></li>
<li class="tab"><a href="https://mail.google.com/"><img src="https://winaero.com/blog/wp-content/uploads/2020/02/Colorful-Mail-Fuent-big-icon-2020.png" width="33px" style="margin-bottom: -2px;"></a><br><p>Mail</p></li>
<li class="tab"><a href="Root Directory/OS Files/paint.html" target="_blank"><img src="Root Directory/OS Files/ICONS/paint icon.png" width="33px" style="margin-bottom: -2px;"></a><br><p>Paint</p></li>
</ul>
<div class="iconP"><i id="right" class="fa-solid fa-angle-right"></i></div>
</div>
</div>
<!--Recommended Files/Apps-->
<b><p>Recommended</p></b>
<b><p class="MoreBtn" style="font-size: 12px; float: right; margin-top: -17.5px;margin-right: 30px;">more ›</p></b><br>
<div class="StartPinned" style="margin-bottom: 10px;" id="Recommended">
<div class="StartPinnedApps-r" id="r1" onclick="rec1()">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB2klEQVR4nO3Z3StDYRwH8MfrNPNa2pHVzA3lZkoiy7hQkz+ArCWUhWJttHIhbvwFXi+UK7mbl5RcKBz5C/YPeP0XNs9zzlcbEZK9PHuc6fnW9/759Pud53Q6hMjIyPz/0GvrIL1S7plaj2wbX3Cr4gFXyh2PwydKhzziEYzT4ZMAb28SQcM9N3kJYKOd4hGMJ2DCKR7BOAI0f4t4BOMJmGkUj2AcAfqcIh7BeAJC1eIRjCMAy+ZfEfHFbtW4z0CkVjyC8bxG0yiRgLfICahyhbKLXCH1y1Ua9QHxJyD+CC3qzb9bKHHw98QeJED4BBJrk5xC7AFadMQgEzi3gS534XnUg+d5N+iJI4/exOcNoAEX6HD/R8f7QI8a8wBwZgMNdID6XN/r7wI9toNdWKHvm4DdQmjHlQYCnNrAAk6wsfafO9UGfdsC7JD36hGLAQCnNrBgC9hk6++daQbWTGkjSC4BWtABbbop9c7ZgfWStBAkp4DZDBq0AuvFKSNILgF6qCazhquAjaLPiEOLeEDisxDhssy6aAI2Cz4hxK/QQR301QroS+WZdcUMbBW+TmCv9I9fZDkqkYC3yAmocoWM84sp1VJVueUJGBCJoKpySy8VDzeAjIwMMWxeAHYX2+Y7NomIAAAAAElFTkSuQmCC" width="31px" >
<br><p style="font-size: 13px;">BJHOS.png</p>
</div>
<div class="StartPinnedApps-r" id="r2" onclick="rec2()">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAACVklEQVR4nO2Zz0sbQRTH91g1F71k41EQqhdL8eSxIFgKK+SooEGlhUJFPUQRioe0R7Uo2D9A8NKjkKjBH5iIRg/GUxISUKtkRZMaelEzL30yawxaY7vJzs6usg++x10+n533dmZZQbDKKquef5EN+zsSEI8h6ECtyX2rCPIXCIhHLOBp/rgr+UsAI3hFYKhGkcCpF5tPUiDXX8tfAlgKfKzjLwEMBeB9I38JYCnQ85q/BDAUIF0t/CWApUDHG/4SwFKgt/W/ErlpxvsE0xmYbeAvASwFSohgCTz3Fch2SJh1OrWlUyo+7AEeAp36CJCAA38tihiSuke22l2HIamnWRcBPULy8Psbbgx/mdgOtbtwS3Kda5LgDh8cwkQiQXMV/jq5QyVCUveBuWbgr9Yht/BrXRiPx+/mctczvk3byVwzcEeA5OFlrw1TqzZMhH9gLBYrJBKJjJYN/y8Blm0je22YXhGUpFYrMb47h9FolOazJng9BUgePumrKsDf5mzFhtG9+QHN8HrNwJXTiSlJwqSn/gE8jeytMu8+UIAfe/koPF0Z3QVY9Xy6CDyXnVhPeDDbWUht25A8PB8BlTNQDjyY5Xug1LYBMwlogQczCGT8Isq+mrLgwWiB7LoDT/xNeB4ZLgsejBa4WHOgvPkBM5nMPQm18GC0wO9lEWfGB5UD2Y2EG5ML1arhwWiBU58dBz714feJQWUlTvyvlJlQCw9GCihvnyURzxbsykrQdqIzUep9BCN/MZXypKHY9UHxJ0uBtyz/k6mBJ+tiGzMBq6yySjBtXQNECAXqig7xVAAAAABJRU5ErkJggg==" width="32px" >
<br><p style="font-size: 13px;">README</p>
</div>
<div class="StartPinnedApps-r" id="r2" onclick="easterEgg1()">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAACW0lEQVR4nO3ZTU8TURQG4K4MkhCjqB0pqNAi1m+pqFhBqCA23QO1X5R+t2ClGHFp4sKwMUTj2oUrTTQmxo0blY7xf6C/oufceU2n1W3b9GY6NfMmd3+eO/fce5Kx2axYsfL/h37YA1RWfrN6DO0usbNfNR5QVn7JKL66tEe9xiNYUvE6oHRIR+BFz8+uBIj7A8YjWCYgP2I8giUCOH3GeATLBKyOG49giQCK3jAewTIB93zGI1gmIDHfECFeSn4npPbAG7fxCJYJaGHZLEA91hdQrSPUXprdQe3ZPmjPe8Ff7N3ZxNjq0a9A7XEfxOvD4HKXAbSHfdA2D0ArHYS20Q/x5CjEJ6WLAKV+aBtHoD2wQytWZ38HRNEB8WoQvNsNgKKiv6ZifRBi7ThE4WTthc25wFsuiI9D5gaItSGIwgmI/DBEzgmRHYXIjIHTbnDqLDh1Hrx9CvxtwKSAvBMiNwqRHYPIuMHpetHJi+DEZfCqBxyfAK97wO9GTAjInNYHM06dAycvgBOXasNa/Ap45So4dl0f4ChyE5T0mg/QsOjwNCg0A856wW9dJgTEPeCVCXDsGjg6CYp4QeEpUOgWKDQLCvnATz3grw5z9gDHJkFRLygyBQpXi56pzf3BOVB+Gvy+8a5zJwF/j8i/opfvgIILoG0P+HtzNw93FBC8DVqeBy0tgBb9qBR84A/OlgvnjgGW/KgsBlAJBkA74+By67vOnQRUsnOobM6CPg+3VTh3rIklL5sFqMf6Aqp1hMzzi6npK1lV9mQC/EYiSFX2aFe5Kw1gxYoVm2nzB9Ci1z/Ke1QLAAAAAElFTkSuQmCC" width="32px" >
<br><p style="font-size: 13px;">SURPRISE.mp4</p>
</div>
</div>
<script>
function rec1(){
window.open("Assets/screenshot1.PNG", "_blank");
}
function rec2(){
window.open("README.md", "_blank");
}
</script>
<div class="StartPinnedA">
<div class="btn-Stc">
<img src="settings icon.png" width="19px">
<a href="Root Directory/OS Files/settings.html" target="_blank"><p>Settings</p>
</a>
</div>
<div class="btn-Stc">
<img src="https://img.icons8.com/fluency-systems-regular/452/shutdown.png" width="19px" >
<p>Power</p>
</div>
</div>
<div class="StartPinnedW3">
<CENTER>
<div id="ww_2706ca9d41a60" v='1.3' loc='auto' class="weather-start"
a='{"t":"horizontal","lang":"en","sl_lpl":1,"ids":[],"font":"Arial","sl_ics":"one_a","sl_sot":"celsius","cl_bkg":"#FFFFFF00","cl_font":"rgba(255,255,255,1)","cl_cloud":"#d4d4d4","cl_persp":"#2196F3","cl_sun":"#FFC107","cl_moon":"#FFC107","cl_thund":"#FF5722","el_phw":3,"el_whr":3}'
style=" width: 210px; left: 50%; top: 50%;-webkit-transform: translate(-50%, -60%) scale(0.80); transform: translate(-50%, -60%) scale(0.75);
height: 123px; position: absolute;">
<a href="https://weatherwidget.org/tr/" id="ww_2706ca9d41a60_u" target="_blank">Web Sitesi için Ücretsiz HTML Hava Durumu Widget</a>
</div>
<script async src="https://app1.weatherwidget.org/js/?id=ww_2706ca9d41a60"></script>
</CENTER>
</div>
<div class="StartPinnedW">
<div class="musicThumbNailD">🎵</div>
<h6 style="font-size: 12px; margin-bottom: 7.5px;translate: 0 10px;">No Music Playing</h6>
<h6 id="musicW-start-no">00:00</h6>
<h6 id="musicW-end-no">--:--</h6>
<div style="translate: -25px 10px; scale: 0.85;">
<img src="https://img.icons8.com/fluency-systems-regular/344/end--v1.png" width="15px"
style="filter: invert(100%); cursor: pointer; float: right; " >
<img src="https://img.icons8.com/fluency-systems-regular/452/play--v1.png" width="15px"
style="filter: invert(100%); cursor: pointer; float: right; " >
<img src="https://img.icons8.com/fluency-systems-regular/344/skip-to-start.png" width="15px"
style="filter: invert(100%); cursor: pointer; float: right; " >
</div><br>
<input type="range" min="1" max="100" value="0" class="slider" style="translate: 0px 25px;">
</div>
<div class="StartPinnedW2" >
<b><p>Quick note</p></b>
<input type="text" class="SearchQ" placeholder="Add a Quick Note" title="Quick note">
<img src="https://img.icons8.com/fluency-systems-regular/344/save.png" alt="save" width="20px" class="Savebtn">
</div>
</div>
</CENTER>
</div>
</div>
<!--TAB VIEW-->
<div class="tabmenu" >
<div class="tabview"></div>
<div class="desktops">
<div class="desktop1">
<p>Desktop 1</p>
<img src="Customize BJH OS/Background Wallpaper/RipenWaves2.png" width="195px" height="105px" id="dstp1Img">
</div>
<div class="newD">
<span>+</span>
</div>
</div>
</div>
<!--Context Menu on right click-->
<div id="context-menu" oncontextmenu="return false;">
<div class="darktheme" id="themeCM" style="padding: 7px;">
<div class="item" onclick="ExpandContextView()" id="view-contx">
<img src="Assets/view.png" width="27px">
<p>View</p>
<span id="view-more">
<img src="Assets/cMarrow.png" width="16px" id="view-more-img"/>
</span>
<div id="view-optionsCt">
<p
onclick="
document.getElementById('bin').style.scale= '0.77';
document.getElementById('myPc').style.scale= '0.77';
contextMenu.classList.remove('visible');
">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAr0lEQVR4nO3WMQ6DMBBEUZ+E3P8IQA4WV4OQ3CE7gy1YF/+VSLPSboEnJQCYkqSPpK+krKvz2y5pichYytB/toiMpXKRy4UiMhaZIjIWFmgYPZSlZ/BsC2Rj7i8iYyn/37u/xFcylvLAbI0HZq08So9ngDeIMldFmbPIFJGxsEDD6KEsPYNnWyAbcylzoswBz6DM1VHmLDJFZCws0DB6KEvP4NkWyMZcypwocwCQAh1zfc4uBDH75wAAAABJRU5ErkJggg==">
Small icons
</p>
<p
onclick="
document.getElementById('bin').style.scale= '1';
document.getElementById('myPc').style.scale= '1';
contextMenu.classList.remove('visible');
">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAABTUlEQVR4nO2XPU7DQBCFXfEbzuMDJNDCiRLBBdJSBs4SxB0gRYAGOpTa0ocWRsKySDzZ3SEsmq+xIo3e+M3azryqchzH+bMAR8AVsAAaNtNI3SVwaKmlQhreE8ddu3FOLTUyrRQmFlpq5AhTeLTQUqN4TvtoLLTUkAELLTUbtJbAEDgGRsBTaQaGnbrT0gwMOnUnpRkYlX4CS7npAXBW4jugZtcGmtL/BxaJTR8stNTIJpjC2EJLTdgAZROMYQ4cWGhthTSehGVKucOHuvFPDXNqOcWAR8ovPFLikbLMVSIZpdYKmMm1VyuXgTDR677JKrTegVpqavn9KwamUjNNMBAm/nnzrbp63UnkNPAcYmQrTr5EGpit6XtjbeC8U3dR0gm8Anudun3gLcJAYGfvgAql1gq4tfgKeaSsvofhkbKKeIQ8UrbxSOk4zv/kAwWI9yqKJbc6AAAAAElFTkSuQmCC">
Medium icons
</p>
<p
onclick="
document.getElementById('bin').style.scale= '1.2';
document.getElementById('myPc').style.scale= '1.2';
contextMenu.classList.remove('visible');
">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAABz0lEQVR4nO2ZPUvDQBiA48emTu5W/QHi6KCISB3cRLAgblYU8S+4CtLBT1qrox+bqzg5OdlBcNWh1U1xaAcdjD5ycKWlpCG5kNyJ90CW5r33vae95j7iOBaLxWI0wCBQBF4Al/hxZa0jUTtq52eAGvqoAWnVzg9p7nydKpBSERDDxhQKKgJiHJpCRUUgiT9sUFwVAaNwrEB4boEdYA+45w/9Aq/AlEe++SiPZSchgW9g3CfnnOkCpwHyXpsmUAW2gUmgN2DuFLAClHULPClN840afUBJl8APMKra+aY6w8CXDoGbADn6xRUg7kqHQM6nbTdw0RR7Lj7zic/pENj1abvuEb/mE5/XIVDyaXviEV9sE9sBPOoQEMy2aZv1iF1uE7sapFBcAu/AiEfbLuBYLslduTnq9IibAD50CggOfHL0iMvn/kbQInEKbIZO3qiRMUFgK4JA1gSBuwgClyYICBYU8k/L5YgRAp/Aonimt+QYA5aaZ2H53M+E3dw4MQvUeQAOgf2WVeabHC5nQSYtnQKx4fxHAZc/frD1jDmUVQTE+bwp5FVfbJhyvD4QWkBKpGUCnZ1PK3W+5QikII64E3zFVJG7NLVv3mKxWJyk+AUom7DM5XAZpQAAAABJRU5ErkJggg==">
Large Icons
</p>
<hr>
<p
onclick="
document.getElementById('bin').style.top= 'auto';
document.getElementById('myPc').style.top= '135px';
document.getElementById('bin').style.left= 'auto';
document.getElementById('myPc').style.left= 'auto';
contextMenu.classList.remove('visible');
">Auto Arrange icons</p>
<hr>
<p onclick="ShowDeskIcoCtx(),contextMenu.classList.remove('visible');" id="ToggleDeskIcoDisplay">
<i class="fa fa-check" id="HideDSK"></i>
Hide desktop icons
</p>
<p onclick="ShowDeskWidgetCtx(),contextMenu.classList.remove('visible');" id="ToggleDeskWidDisplay">
<i class="fa fa-check" id="HideDSKW"></i>
Hide desktop widgets
</p>
</div>
</div>
<div class="item" onclick="ExpandContextSort()" id="sort-contx">
<img src="Assets/sort.png" width="27px">
<p>Sort by</p>
<span id="sort-more">
<img src="Assets/cMarrow.png" width="16px" id="sort-more-img"/>
</span>
<br>
<div id="sort-optionsCt">
<p onclick="contextMenu.classList.remove('visible');">Name</p>
<p onclick="contextMenu.classList.remove('visible');">Size</p>
<p onclick="contextMenu.classList.remove('visible');">Item Type</p>
<p onclick="contextMenu.classList.remove('visible');">Date modified</p>
</div>
</div>
<div class="item"
onclick="
document.getElementById('DeskIcons').style.opacity = '0';
document.getElementById('desk-widget').style.opacity = '0';
document.getElementById('refreshImg').classList.add('refreshImg');
setTimeout(() => {
document.getElementById('DeskIcons').style.opacity = '1';
document.getElementById('desk-widget').style.opacity = '1';
document.getElementById('refreshP').innerHTML = 'Refreshed';
document.getElementById('refreshImg').classList.remove('refreshImg');
}, 250);
setTimeout(() => {
document.getElementById('refreshP').innerHTML = 'Refresh';
contextMenu.classList.remove('visible');
}, 1000);
">
<img src="Assets/refresh.png" width="23px" id="refreshImg">
<p id="refreshP">Refresh</p>
</div>
<center>
<hr style="border:1px solid rgba(204, 204, 204, 0.35); width: 95%; ">
</center>
<div class="item" id="new-contx" onclick="ExpandContextNew()">
<img src="Assets/new.png" width="23px">
<p>New</p>
<span id="new-more">
<img src="Assets/cMarrow.png" width="16px" id="new-more-img"/>
</span>
<div id="new-optionsCt">
<p>Shortcut</p>
<p>Presentation</p>
<p>Bitmap image</p>
<p>Spreadsheet</p>
<p>Rich Document</p>
<p>Text document</p>
</div>
</div>
<div class="item" onclick="contextMenu.classList.remove('visible');">
<img src="Assets/newFolder.png" width="21px">
<p>New Folder</p>
</div>
<center>
<hr style="border:1px solid rgba(204, 204, 204, 0.35); width: 95%; ">
</center>
<div class="item" onclick="contextMenu.classList.remove('visible');">
<img src="Assets/displaySettings.png" width="23px">
<p>Display settings</p>
</div>
<div class="item" onclick="contextMenu.classList.remove('visible');">
<img src="Assets/personalize.png" width="23px">
<p>Personalize</p>
</div>
<center>
<hr style="border:1px solid rgba(204, 204, 204, 0.35); width: 95%; ">
</center>
<div class="item" id="cnt-page" onclick="contextMenu.classList.remove('visible');"><p>New Page</p></div>
<div class="item" id="cnt-cmd" onclick="contextMenu.classList.remove('visible');"><a href="Root Directory/OS Files/command prompt.html" target="_blank"><p>Open in cmd</p></a></div>
</div>
</div>
<!-- TB right click -->
<div id="context-menuTB">
<div class="darktheme" style="padding: 7px; z-index: 1;" id="tbStyleCT" onmouseover="tbStyleCTS()" onmouseleave="tbStyleCTH()">
<div class="item" onclick="TBFlyout(),document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-check" id="checkFly"></i>
<p>Flyout</p>
</div>
<div class="item" onclick="TBAttached(),document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-check" id="checkAtt"></i>
<p>Attached</p>
</div>
<div class="item" onclick="TBDocked(),document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-check" id="checkDocked"></i>
<p>Docked</p>
</div>
</div>
<style>#checkAtt{display: none;}#checkDocked{display: none;}</style>
<div class="darktheme" style="padding: 7px;z-index: 20; position: relative;">
<div class="item" >
<i class="fa fa-external-link-square"></i>
<p>Shortcuts</p>
<span>
<i class="fa fa-angle-right"></i>
</span>
</div>
<hr>
<div class="item" >
<i class="fa fa-search" id="HideDSK"></i>
<p>Search button Style</p>
<span>
<i class="fa fa-angle-right"></i>
</span>
</div>
<div class="item" onmouseover="tbStyleCTS()" onmouseleave="tbStyleCTH()">
<i class="fa fa-paint-brush"></i>
<p>Taskbar Style</p>
<span>
<i class="fa fa-angle-right"></i>
</span>
</div>
<hr>
<div class="item" onclick="document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-desktop"></i>
<p>Show Desktop</p>
</div>
<hr>
<div class="item" onclick="document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-tachometer"></i>
<p>Task Manager</p>
</div>
<hr>
<div class="item" onclick="document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-check"></i>
<p>Lock Taskbar</p>
</div>
<div class="item" onclick="document.getElementById('context-menuTB').classList.remove('visible');">
<i class="fa fa-gear" id="HideDSK"></i>
<p>Taskbar Settings</p>
</div>
</div>
</div>
<!--Volume Flyout-->
<div class="actionmenu" style="padding: 27.5px;" >
<div class="darktheme" id="themeV" style="padding: 10px;">
<img src="Assets/moreControls.png" width="17px" class="actionCenterMore">
<h6 style=" font-size: 17px; margin-bottom: 15px; margin-top: 5px; margin-left: 5px;">Volume</h6>
<input type="range" min="1" max="100" value="100" class="slider" style="width: 82%; margin-left: 35px;">
<img src="Assets/volume.png" alt="volume" width="27px"
style="margin-left: 2px; translate: 0px -19px;margin-bottom: 12px;">
<div class="controls-bottom">
<h5>Audio output</h5>
<h5 id="right-controls">Mixer</h5>
</div>
</div>
</div>
<!--Network Flyout-->
<div class="actionmenu2" style="padding: 27.5px;" >
<div class="darktheme" id="themeWifi" style="padding: 10px;">
<img src="Assets/moreControls.png" width="17px" class="actionCenterMore">
<h6 style=" font-size: 17px; margin-bottom: 25px; margin-top: 5px; margin-left: 5px; ">Network</h6>
<label class="switch" style="margin-left: 10px;">
<input type="checkbox" checked id="WifiMode" onclick="wifiOff()">
<span class="slider2 round"></span>
</label>Wifi
<label class="switch" style="margin-left: 15px;">
<input type="checkbox" id="planeMode" onclick="airplane()">
<span class="slider2 round"></span>
</label>Aeroplane mode
<br>
<div id="wifiBlocks">
<div class="wifiBlock" id="connectedWifi">