-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
969 lines (865 loc) · 43.2 KB
/
Copy pathscript.js
File metadata and controls
969 lines (865 loc) · 43.2 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
console.log('Deskmate v2.0 Loaded');
const categories = [
{
id: 'utilities',
title: 'Utilities',
icon: 'bx-wrench',
apps: [
{
name: 'NanaZip',
description: 'Sleek 7-Zip fork. Modern context menu & dark mode.',
url: 'https://apps.microsoft.com/detail/9n8g7tscl18r',
icon: 'https://raw.githubusercontent.com/M2Team/NanaZip/main/Assets/NanaZip.png',
},
{
name: 'FDM',
description: 'Download booster and torrent client. Resume broken downloads and skip limits.',
url: 'https://apps.microsoft.com/detail/xpdlmkftxtdhsd',
icon: 'https://alternative.me/media/256/free-download-manager-icon-zs0dveq865g2qqtr-c.png'
},
{
name: 'Break Timer',
description: 'Periodic stretch break reminders. Prevent eye strain & fatigue.',
url: 'https://github.com/tom-james-watson/breaktimer-app/releases/latest/download/BreakTimer.exe',
icon: 'https://breaktimer.app/images/logo.svg',
},
{
name: 'Writing Tools',
description: 'AI-powered writing helper. Polishes your prose and fixes typos instantly.',
url: 'https://github.com/theJayTea/WritingTools/releases/latest',
icon: 'https://avatars.githubusercontent.com/u/65911490?v=4'
},
{
name: 'Windhawk',
description: 'Windows kernel modding engine. Inject customization mods safely.',
url: 'https://ramensoftware.com/downloads/windhawk_setup.exe',
icon: 'https://img.utdstc.com/icon/b73/06e/b7306e9e74c0bc10e1e2b6ddd826cd1528ef009f813f54c8d89007fa302fdde3:200'
},
{
name: 'WinToys',
description: 'All-in-one system optimizer. De-bloat, clean, and speed up Windows.',
url: 'https://apps.microsoft.com/detail/9p8ltpgcbzxd',
icon: 'https://store-images.s-microsoft.com/image/apps.986.14089795918715087.7f26510c-c331-47c8-922e-e1286b39d96f.3e21babc-4137-4eae-bcc9-4c590a6f3266',
},
{
name: 'Raycast',
description: 'Spotlight on steroids. Commands, snippets, and calculator.',
url: 'https://apps.microsoft.com/detail/9pfxxshc64h3',
icon: 'https://upload.wikimedia.org/wikipedia/en/f/f4/Raycast_App_Icon.png'
},
{
name: 'Winhance',
description: 'Optimize & Enhance Windows. <a href="https://file.garden/ZUZC9jg2XxuHNMIN/softwares/WinHance%20Configuration.winhance" target="_blank" style="color:var(--primary-accent)">Configuration? Click Here!</a>',
url: 'https://github.com/memstechtips/Winhance/releases/latest/download/Winhance.Installer.exe',
icon: 'https://winhance.net/images/winhance-rocket.png'
},
{
name: 'RDPWrap',
description: 'Multi-user Remote Desktop wrapper for Windows Home. No license lock.',
url: 'https://github.com/sebaxakerhtc/rdpwrap/releases/latest',
icon: 'https://img.icons8.com/color/96/remote-desktop.png'
},
{
name: 'CTT WinUtil',
description: 'The ultimate Windows debloater, optimizer, and software installer.',
url: '#',
icon: 'https://mloads.com/uploads/posts/2025-05/winutil.webp',
action: 'copy',
copyText: 'irm "https://christitus.com/win" | iex'
},
{
name: 'Listary',
description: 'Teleport to any file or folder instantly. The ultimate directory speedrun.',
url: 'https://www.listary.com/download-completion?version=stable',
icon: 'https://alternative.me/media/256/listary-icon-vpncl406l599gi06-c.png'
},
{
name: 'Antigravity',
description: 'Experience liftoff with the next-gen agent platform.<br><span class="cli-copy-btn" onclick="event.preventDefault(); event.stopPropagation(); navigator.clipboard.writeText(\'irm https://antigravity.google/cli/install.ps1 | iex\'); const textEl = this.querySelector(\'.cli-text\'); const iconEl = this.querySelector(\'i\'); textEl.textContent = \'Copied!\'; iconEl.className = \'bx bx-check\'; setTimeout(() => { textEl.textContent = \'Looking for CLI? Click to copy\'; iconEl.className = \'bx bx-copy\'; }, 2000);"><span class="cli-text">Looking for CLI? Click to copy</span> <i class=\'bx bx-copy\'></i></span>',
url: 'https://antigravity.google/download',
icon: 'https://antigravity.google/assets/image/antigravity-logo.png',
downloadBtnOnly: true
},
{
name: 'Files App',
description: 'Fluent, tabbed file explorer design. Ditch the legacy look.',
url: 'https://apps.microsoft.com/detail/9nghp3dx8hdx',
icon: 'https://store-images.s-microsoft.com/image/apps.5536.13649428968955623.bcfc493a-7fd6-4231-9ddd-1c511b1330ad.11150fa3-6915-4039-b262-6be82a9c440a'
},
{
name: 'SnipDo',
description: 'Select text. Snap! Instant clipboard superpowers.',
url: 'https://apps.microsoft.com/detail/9npz2tvkjvt7',
icon: 'https://store-images.s-microsoft.com/image/apps.53760.13779905381932682.5f97b015-ac00-41a3-afa3-b305b1a09874.d08098fd-7c21-4c4b-80a6-22265d1f818e'
},
{
name: 'Gemoo Snap',
description: 'Take, beautify, and pin screenshots. Zero friction debugging sharing.',
url: 'https://apps.microsoft.com/detail/xp894lkgzgvs67',
icon: 'https://images-eds-ssl.xboxlive.com/image?url=4rt9.lXDC4H_93laV1_eHHFT949fUipzkiFOBH3fAiZZUCdYojwUyX2aTonS1aIwMrx6NUIsHfUHSLzjGJFxxgfZtOd3FMrjunxOQcD7JIPYleL4TzPLZlOXAJ7fEZlfk3ojAms7TQWsF6O6cvVT5z.zfzxolVp7aPiz4Fx5r0c-&format=source'
},
{
name: 'Google Search App',
description: 'Spotlight but for Google. AI responses, Lens, and Drive search at Alt+Space.',
url: 'https://search.google/google-app/desktop/',
icon: 'https://search.google/static/images/favicon-96x96.png'
},
{
name: 'Espanso',
description: 'Text expander in Rust. Type less, deploy faster. Privacy-first, config-based.',
url: 'https://github.com/espanso/espanso/releases/latest',
icon: 'https://github.com/espanso.png'
},
{
name: 'Google Input',
description: 'Hindi phonetic keyboard. Type in Hinglish, output Hindi script.',
url: 'https://file.garden/ZUZC9jg2XxuHNMIN/softwares/Google%20Iinput%20Tools%20Setup.zip',
icon: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/google.png'
}
]
},
{
id: 'media',
title: 'Media & Office',
icon: 'bx-play-circle',
apps: [
{
name: 'Screenbox',
description: 'Universal UWP player. Hardware accelerated, minimal UI, clean playback.',
url: 'https://apps.microsoft.com/detail/9ntsnmsvcb5l',
icon: 'https://raw.githubusercontent.com/huynhsontung/Screenbox/main/Screenbox/Assets/StoreLogo.scale-400.png',
},
{
name: 'Foxit Reader',
description: 'Speedy PDF viewer. Or try the lightweight <a href="https://www.sumatrapdfreader.org/download-free-pdf-viewer" target="_blank" style="color:var(--primary-accent)">Sumatra</a>.',
url: 'https://apps.microsoft.com/detail/xpfcg5nrkxqpkt',
icon: 'https://img.icons8.com/color/96/foxit-reader.png',
},
{
name: 'FxSound',
description: 'EQ & sound enhancer. Boost volume, fix weak laptop speakers.',
url: 'https://apps.microsoft.com/detail/xp8jk4tbq03lz4',
icon: 'https://images-eds-ssl.xboxlive.com/image?url=4rt9.lXDC4H_93laV1_eHHFT949fUipzkiFOBH3fAiZZUCdYojwUyX2aTonS1aIwMrx6NUIsHfUHSLzjGJFxxniKPzBavToY5vvDU2aE3XG_1pF08L6.bdkd2NLYFn1DNNql55xq66ar1ueHHH0sjKZF816tJiLZEC1XsD9fC_8-&format=source'
},
{
name: 'RevPDF',
description: 'Fast, native & privacy-focused offline PDF editor.',
url: 'https://github.com/Pawandeep-prog/revpdf-release/releases/latest',
icon: 'https://raw.githubusercontent.com/Pawandeep-prog/revpdf-release/main/com.revpdf.editor.png'
},
{
name: 'Handbrake',
description: 'Convert any video format to anything else. The ultimate crunching machine.',
url: 'https://apps.microsoft.com/detail/9plpg0cfr068',
icon: 'https://store-images.s-microsoft.com/image/apps.15120.14313500402683027.ce7e7c16-8427-40e7-8f38-ec7db6e11bb2.0cb46c9f-a05c-43d4-b49e-686687942484'
},
{
name: 'Beeper',
description: 'One chat app to rule them all. Matrix-powered multi-network unified inbox.',
url: 'https://api.beeper.com/desktop/download/windows/x64/stable/com.automattic.beeper.desktop',
icon: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/webp/beeper.webp'
},
{
name: 'qBittorrent',
description: 'Open-source, ad-free BitTorrent client. The classic uTorrent killer.',
url: 'https://github.com/qbittorrent/qBittorrent/releases/latest',
icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/New_qBittorrent_Logo.svg/1280px-New_qBittorrent_Logo.svg.png'
}
]
},
{
id: 'system',
title: 'System Tools',
icon: 'bx-cog',
apps: [
{
name: 'BleachBit',
description: 'Open-source disk cleaner. Wipe cache, logs, and junk files instantly.',
url: 'https://www.bleachbit.org/download',
icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Bleachbit_logo.svg/330px-Bleachbit_logo.svg.png'
},
{
name: 'Intel DSA',
description: 'Intel Driver & Support Assistant. Grab automatic driver updates for CPU/GPU.',
url: 'https://dsadata.intel.com/installer',
icon: 'https://mloads.com/uploads/posts/2024-09/intel-driver-support-assistant.webp'
},
{
name: 'PowerToys',
description: 'Microsoft power-user utilities. Window snapping, color picker, quick rename.',
url: 'https://apps.microsoft.com/detail/xp89dcgq3k6vld',
icon: 'https://upload.wikimedia.org/wikipedia/commons/1/19/2020_PowerToys_Icon.png'
},
{
name: 'Lenovo Vantage',
description: 'Lenovo battery and hardware controller. Cap charging limit, toggle fans.',
url: 'https://apps.microsoft.com/detail/9nr5b8gvvm13',
icon: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/lenovo.png'
},
{
name: 'Snappy Driver Installer',
description: 'Offline driver installer database. Fix missing network or audio chips.',
url: 'https://www.glenn.delahoy.com/downloads/sdio/SDIO_latest.zip',
icon: 'https://cdn.rawgit.com/Spunkie/chocolatey-packages/a189a397e2b7eecd723f317bfd5473bcb4da2ecf/automatic/sdio/icon.png'
},
{
name: 'BCUninstaller',
description: 'Bulk Crap Uninstaller. Deep scan and clean registry leftovers.',
url: 'https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/latest',
icon: 'https://www.bcuninstaller.com/assets/logo.png'
},
{
name: 'NextDNS',
description: 'Privacy-focused cloud DNS firewall. Block ads, trackers, and malware.',
url: 'https://johnwickx.notion.site/NextDNS-Setup-ad2528ea6c2640b1bf5c83e8d4b243d6',
icon: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/nextdns.png'
},
{
name: 'AutoHotKey AHK',
description: 'Hotkeys and automation. Write custom <a href="https://github.com/Adish08/AutoHotKey" target="_blank" style="color:var(--primary-accent)">AHK scripts</a>.',
url: 'https://www.autohotkey.com/download/ahk-v2.exe',
icon: 'https://icons.veryicon.com/png/o/business/vscode-program-item-icon/autohotkey.png'
},
{
name: 'UniGetUI',
description: 'Visual package manager. Update all Winget, Scoop, and Chocolatey apps.',
url: 'https://apps.microsoft.com/detail/xpfftq032ptphf',
icon: 'https://raw.githubusercontent.com/marticliment/UniGetUI/main/media/Icon%20sizes/128.png',
},
{
name: 'Blip',
description: 'Drop files. Fast as a LAN cable. No cloud middleman.',
url: 'https://apps.microsoft.com/detail/9n7jsxc1sjk6',
icon: 'https://store-images.s-microsoft.com/image/apps.14067.14068186488847955.52d98a9f-9bdf-400b-ac16-428f73d933b2.6f21a5ed-5c72-421f-9969-55b0953f894d'
},
{
name: 'Sysinternals Suite',
description: 'The Windows developer god-mode toolkit. Monitor, debug, and analyze.',
url: 'https://apps.microsoft.com/detail/9p7knl5rwt25',
icon: 'https://store-images.s-microsoft.com/image/apps.13086.14106055032135034.107f3197-03b3-4b1d-8806-e3f6b8c92a35.c79e0ee2-51f4-4601-b7ee-0fefb180d7ea'
},
{
name: 'Monitorian',
description: 'DDC/CI screen brightness control. Save your eyes from multiple displays.',
url: 'https://apps.microsoft.com/detail/9nw33j738bl0',
icon: 'https://store-images.s-microsoft.com/image/apps.34982.14453285281266867.f7b19530-4829-4646-9985-b7e1e716c416.2a3d0398-0d33-46a3-b739-47b31af65e59'
},
{
name: 'Scolect',
description: 'Beautiful Winget search GUI. Scoop/Winget package hunting made easy.',
url: 'https://apps.microsoft.com/detail/9phbzxnpvhsq',
icon: 'https://store-images.s-microsoft.com/image/apps.31347.14238920845188165.bb5f3a03-0c37-499d-9b23-729e71a28666.ec83940b-03dc-497d-ba25-fccca6335a60'
},
{
name: 'HWiNFO',
description: 'Real-time hardware sensor monitoring. Keep your thermals in check.',
url: 'https://apps.microsoft.com/detail/xp9cs6fhq00b8j',
icon: 'https://www.softexia.com/wp-content/uploads/2024/02/HWiNFO_logo.png'
},
{
name: 'Rainmeter',
description: 'Desktop widget engine. Show hardware stats, visualizers, and themes.',
url: 'https://github.com/rainmeter/rainmeter/releases/latest',
icon: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Rainmeter_Icon.svg/960px-Rainmeter_Icon.svg.png?_=20180222004857'
},
{
name: 'File Converter',
description: 'Right-click, convert, compress. Audio, video, images. Boom, done.',
url: 'https://github.com/Tichau/FileConverter/releases/latest',
icon: 'https://file-converter.io/images/application-icon.png'
},
{
name: 'Nilesoft Shell',
description: 'Right-click context menu manager. Ditch the Windows 11 bloat.',
url: 'https://nilesoft.org/download/shell/1.9.18/setup-x64.msi',
icon: 'https://nilesoft.org/images/logo-512.png'
},
{
name: 'Rufus',
description: 'USB bootable drive creator. Bypass Windows 11 restrictions in one click.',
url: 'https://github.com/pbatard/rufus/releases/latest',
icon: 'https://rufus.ie/pics/rufus-256.png'
},
{
name: 'Canon Driver',
description: 'Canon printing engine drivers. Plain setup, zero bloatware.',
url: 'https://gdlp01.c-wss.com/gds/0/0100007670/02/win-g2000-1_1-n_mcd.exe',
icon: 'https://in.canon/media/image/2025/11/12/6e0994e9da2c498db43c732db3049cd1_canon+print+-sln.png'
},
{
name: 'Intel Graphics',
description: 'Intel graphics tuner. Tweak screen colors, resolutions, and hotkeys.',
url: 'https://apps.microsoft.com/detail/9plfnlnt3g5g',
icon: 'https://store-images.s-microsoft.com/image/apps.29528.14318846362781107.7d9233b2-521d-4dc6-ad8a-d37f21fa0592.7d0684d0-1145-4c14-b3ed-f0a5729505f6'
},
{
name: 'WizTree',
description: 'Visual disk space mapper. Finds large files in seconds. Blazing fast.',
url: 'https://diskanalyzer.com/download',
icon: 'https://antibodysoftware-17031.kxcdn.com/images/wiztree200x.png'
},
{
name: 'Custom Cursor',
description: 'Look Cool ;) af',
url: 'https://file.garden/ZUZC9jg2XxuHNMIN/softwares/Custom%20Cursors.zip',
icon: 'https://wallpapers.com/images/hd/mickey-mouse-hand-gesture-cjz8ffhszi5irbh9-2.jpg'
}
]
},
{
id: 'activators',
title: 'Activation & Patches',
icon: 'bx-lock-open',
apps: [
{
name: 'MAS',
description: 'The legendary Microsoft Activation Scripts. Open-source HWID/KMS activator.',
url: '#',
icon: 'https://img.icons8.com/color/96/windows-11.png',
action: 'copy',
copyText: 'irm https://get.activated.win | iex'
},
{
name: 'Office Installer',
description: 'Office Tool Plus. Customize, install, and deploy Microsoft Office suites.',
url: 'https://github.com/YerongAI/Office-Tool/releases',
icon: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/microsoft-office.png'
},
{
name: 'GenP',
description: 'Universal Adobe CC patcher. Unlock Photoshop, Premiere, and friends.',
url: 'https://github.com/Cur10s1tyByt3/GenP/releases/latest',
icon: 'https://i.pinimg.com/474x/25/39/84/253984898eb9e000ae9f2ef644a380e9.jpg'
},
{
name: 'Outline VPN',
description: 'Shadowsocks VPN client. Bypass firewalls with <a href="http://shadowmere.xyz/" target="_blank" style="color:var(--primary-accent)">custom configs</a>.',
url: 'https://s3.amazonaws.com/outline-releases/client/windows/stable/Outline-Client.exe',
icon: 'https://upload.wikimedia.org/wikipedia/commons/6/60/Outline_VPN_icon.png'
},
{
name: 'Glary Utilities',
description: 'One-click PC optimizer. Grab the keymaker tool <a href="https://file.garden/ZUZC9jg2XxuHNMIN/softwares/Glary%20Utilites%20Keymaker-Jasi2169.zip" target="_blank" style="color:var(--primary-accent)">here</a>.',
url: 'https://download.glarysoft.com/gusetup.exe',
icon: 'https://www.glarysoft.com/images/update/updatelogo.png?20231222'
},
{
name: 'StartAllBack',
description: 'Classic Windows taskbar and start menu. Grab the activator <a href="https://file.garden/ZUZC9jg2XxuHNMIN/softwares/StartAllBack%20Activator.cmd" target="_blank" style="color:var(--primary-accent)">here</a>.',
url: 'https://www.startallback.com/download.php',
icon: 'https://www.softexia.com/wp-content/uploads/2024/01/StartAllBack-logo.png',
},
{
name: 'Winrar',
description: 'The legendary compression tool. Get the activator script <a href="https://file.garden/ZUZC9jg2XxuHNMIN/softwares/WinRAR_Activator.bat" target="_blank" style="color:var(--primary-accent)">here</a>.',
url: 'https://www.rarlab.com/rar/winrar-x64-710b3.exe',
icon: 'https://www.rw-designer.com/icon-image/21764-256x256x32.png'
}
]
}
];
function getIconUrl(app) {
return app.icon;
}
function copyToClipboard(text, element) {
navigator.clipboard.writeText(text).then(() => {
const actionSpan = element.querySelector('.card-action span');
if (!actionSpan) return;
const originalText = actionSpan.textContent;
actionSpan.textContent = 'Copied!';
element.classList.add('copied');
setTimeout(() => {
actionSpan.textContent = originalText;
element.classList.remove('copied');
}, 2000);
}).catch(err => {
console.error('Failed to copy: ', err);
});
}
function renderCategories(filterText = '') {
const container = document.getElementById('categoriesContainer');
container.innerHTML = '';
categories.forEach(category => {
const filteredApps = category.apps.filter(app =>
app.name.toLowerCase().includes(filterText.toLowerCase()) ||
app.description.toLowerCase().includes(filterText.toLowerCase())
).sort((a, b) => a.name.localeCompare(b.name));
if (filteredApps.length > 0) {
const section = document.createElement('section');
section.className = 'category-section';
// Render Logic
section.innerHTML = `
<div class="category-header">
<i class='bx ${category.icon} category-title-icon'></i>
<h2 class="category-title">${category.title}</h2>
</div>
<div class="software-grid">
${filteredApps.map((app, index) => {
const primUrl = getIconUrl(app);
const fallbackUrl = app.fallback || `https://ui-avatars.com/api/?name=${encodeURIComponent(app.name)}&background=202020&color=60cdff&size=128&font-size=0.5`;
const isCopyAction = app.action === 'copy';
const appSlug = app.name.replace(/\s+/g, '-').toLowerCase();
const cardId = `card-${category.id}-${appSlug}`;
const actionText = isCopyAction ? 'Copy' : 'Download';
const actionIcon = isCopyAction ? 'bx-copy' : 'bx-right-arrow-alt';
const arrowClass = isCopyAction ? '' : 'download-arrow';
const hasOverlay = !isCopyAction && !app.downloadBtnOnly;
const overlayLink = hasOverlay
? `<a href="${app.url}" target="_blank" class="card-overlay-link" aria-label="Download ${app.name}"></a>`
: '';
const isDownloadBtn = !isCopyAction && app.downloadBtnOnly;
const actionHtml = isDownloadBtn
? `<a href="${app.url}" target="_blank" class="card-action" style="position: relative; z-index: 10; text-decoration: none;">
<span>${actionText}</span>
<i class='bx ${actionIcon} ${arrowClass}'></i>
</a>`
: `<div class="card-action">
<span>${actionText}</span>
<i class='bx ${actionIcon} ${arrowClass}'></i>
</div>`;
return `
<div class="software-card" id="${cardId}" ${isCopyAction ? `data-copy="${app.copyText}"` : ''}>
${overlayLink}
<div class="card-icon-container">
<img
src="${primUrl}"
alt="${app.name}"
class="software-icon"
onerror="this.onerror=null; this.src='${fallbackUrl}';"
>
</div>
<div class="card-content">
<h3 class="software-name">${app.name}</h3>
<p class="software-description">${app.description}</p>
${actionHtml}
</div>
</div>
`;
}).join('')}
</div>
`;
container.appendChild(section);
// Add Event Listeners
filteredApps.forEach((app, index) => {
const appSlug = app.name.replace(/\s+/g, '-').toLowerCase();
const cardId = `card-${category.id}-${appSlug}`;
const cardElement = document.getElementById(cardId);
if (cardElement) {
// 1. Handle Copy Actions (No overlay link for copies, so we need click/cursor)
if (app.action === 'copy') {
cardElement.style.cursor = 'pointer';
cardElement.addEventListener('click', (e) => {
if (e.target.tagName === 'A' || e.target.closest('a')) return;
copyToClipboard(app.copyText, cardElement);
});
}
// 2. Handle Inline Links Style (z-index)
// We need to make sure any links in the description sit ABOVE the overlay link
const inlineLinks = cardElement.querySelectorAll('.software-description a');
inlineLinks.forEach(link => {
link.style.position = 'relative';
link.style.zIndex = '10'; // Above overlay (z-index 1)
// No need for stopPropagation() because the overlay is a sibling, not a parent.
// Clicking this link will just work.
});
// 3. Handle Spotlight & Parallax Tilt Effect (Mouse Move)
cardElement.addEventListener('mousemove', (e) => {
const rect = cardElement.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
cardElement.style.setProperty('--mouse-x', `${x}px`);
cardElement.style.setProperty('--mouse-y', `${y}px`);
// Calculate tilt based on cursor position relative to card center
const cardWidth = rect.width;
const cardHeight = rect.height;
const centerX = rect.left + cardWidth / 2;
const centerY = rect.top + cardHeight / 2;
const mouseXFromCenter = e.clientX - centerX;
const mouseYFromCenter = e.clientY - centerY;
const maxTilt = 8; // Max tilt angle in degrees
const tiltX = -(mouseYFromCenter / (cardHeight / 2)) * maxTilt;
const tiltY = (mouseXFromCenter / (cardWidth / 2)) * maxTilt;
cardElement.classList.add('is-tilting');
cardElement.style.transform = `perspective(1000px) rotateX(${tiltX.toFixed(2)}deg) rotateY(${tiltY.toFixed(2)}deg) translateY(-4px)`;
});
cardElement.addEventListener('mouseleave', () => {
cardElement.classList.remove('is-tilting');
cardElement.style.transform = '';
});
}
});
}
});
if (container.innerHTML === '') {
container.innerHTML = `
<div style="text-align: center; color: var(--text-secondary); padding: 4rem;">
<i class='bx bx-ghost' style="font-size: 3rem; margin-bottom: 1rem;"></i>
<p>No apps found matching "${filterText}"</p>
</div>
`;
}
}
// Initial Render
document.addEventListener('DOMContentLoaded', () => {
// Set Year
document.getElementById('year').textContent = new Date().getFullYear();
// Optimized Parallax with requestAnimationFrame
let mouseX = 0;
let mouseY = 0;
let scrollY = 0;
let rafId = null;
document.addEventListener('mousemove', (e) => {
mouseX = (window.innerWidth / 2 - e.clientX) / 20;
mouseY = (window.innerHeight / 2 - e.clientY) / 20;
requestUpdate();
});
window.addEventListener('scroll', () => {
scrollY = window.scrollY;
requestUpdate();
});
function requestUpdate() {
if (!rafId) {
rafId = requestAnimationFrame(updateBlobPositions);
}
}
function updateBlobPositions() {
const blobs = document.querySelectorAll('.blob');
blobs.forEach((blob, index) => {
const mouseFactor = (index + 1) * 0.7;
const scrollFactor = (index + 1) * 0.15;
const translateX = mouseX * mouseFactor;
const translateY = mouseY * mouseFactor + scrollY * scrollFactor;
blob.style.transform = `translate(${translateX}px, ${translateY}px)`;
});
rafId = null;
}
// Render Categories
renderCategories();
// Search Functionality
const searchInput = document.getElementById('searchInput');
searchInput.addEventListener('input', (e) => {
renderCategories(e.target.value);
});
// Dynamic Updates
updateDynamicUrls();
// Tab Navigation
const appsBtn = document.getElementById('appsBtn');
const tipsBtn = document.getElementById('tipsBtn');
const wallpapersBtn = document.getElementById('wallpapersBtn');
const categoriesContainer = document.getElementById('categoriesContainer');
const tipsContainer = document.getElementById('tipsContainer');
const wallpapersContainer = document.getElementById('wallpapersContainer');
const searchBar = document.querySelector('.search-bar-container');
function showApps() {
appsBtn.classList.add('active');
tipsBtn.classList.remove('active');
wallpapersBtn.classList.remove('active');
categoriesContainer.classList.remove('hidden');
tipsContainer.classList.add('hidden');
wallpapersContainer.classList.add('hidden');
searchBar.classList.remove('hidden');
window.location.hash = '';
}
function showTips() {
tipsBtn.classList.add('active');
appsBtn.classList.remove('active');
wallpapersBtn.classList.remove('active');
tipsContainer.classList.remove('hidden');
categoriesContainer.classList.add('hidden');
wallpapersContainer.classList.add('hidden');
searchBar.classList.add('hidden');
window.location.hash = 'tips';
if (document.getElementById('checklistItems').children.length === 0) {
renderTips();
}
}
function showWallpapers() {
wallpapersBtn.classList.add('active');
appsBtn.classList.remove('active');
tipsBtn.classList.remove('active');
wallpapersContainer.classList.remove('hidden');
categoriesContainer.classList.add('hidden');
tipsContainer.classList.add('hidden');
searchBar.classList.add('hidden');
window.location.hash = 'wallpapers';
if (document.getElementById('wallpapersGrid').children.length <= 1) {
fetchWallpapers();
}
}
appsBtn.addEventListener('click', showApps);
tipsBtn.addEventListener('click', showTips);
wallpapersBtn.addEventListener('click', showWallpapers);
// Initial Route
if (window.location.hash === '#tips') {
showTips();
} else if (window.location.hash === '#wallpapers') {
showWallpapers();
} else {
showApps();
}
// Handle back button
window.addEventListener('hashchange', () => {
if (window.location.hash === '#tips') showTips();
else if (window.location.hash === '#wallpapers') showWallpapers();
else showApps();
});
// Checklist Initialization
initTips();
});
async function fetchWallpapers() {
const container = document.getElementById('wallpapersGrid');
const repoOwner = 'Adish08';
const repoName = 'deskmate';
const path = 'Wallpapers';
try {
const response = await fetch(`https://api.github.com/repos/${repoOwner}/${repoName}/contents/${path}`);
if (!response.ok) throw new Error('Failed to fetch wallpapers');
const data = await response.json();
// Filter for images
const images = data.filter(item =>
item.type === 'file' &&
/\.(jpg|jpeg|png|webp|gif)$/i.test(item.name)
);
// Clear loading spinner
container.innerHTML = '';
if (images.length === 0) {
container.innerHTML = `
<div style="grid-column: 1 / -1; text-align: center; padding: 2rem;">
<p style="color: var(--text-secondary);">No wallpapers found in the repository.</p>
</div>
`;
return;
}
images.forEach((img, index) => {
const card = document.createElement('div');
card.className = 'wallpaper-card';
card.style.animation = `fadeIn 0.5s ease-out ${index * 0.1}s forwards`;
card.style.opacity = '0'; // Start hidden for animation
// Format size
const sizeInMB = (img.size / (1024 * 1024)).toFixed(2);
card.innerHTML = `
<img src="https://wsrv.nl/?url=${encodeURIComponent(img.download_url)}&w=400&q=50" alt="${img.name}" class="wallpaper-img" loading="lazy">
<div class="wallpaper-overlay">
<div class="wallpaper-content">
<span class="wallpaper-name" title="${img.name}">${img.name}</span>
<span class="wallpaper-size">${sizeInMB} MB</span>
</div>
<a href="${img.download_url}" target="_blank" download class="wallpaper-download" title="Download">
<i class='bx bx-download'></i>
</a>
</div>
`;
// Allow opening full image on click (excluding download button)
card.addEventListener('click', (e) => {
if (!e.target.closest('.wallpaper-download')) {
window.open(img.download_url, '_blank');
}
});
container.appendChild(card);
});
} catch (error) {
console.error('Error loading wallpapers:', error);
container.innerHTML = `
<div style="grid-column: 1 / -1; text-align: center; color: #ff6b6b; padding: 2rem;">
<i class='bx bx-error-circle' style="font-size: 2rem; margin-bottom: 0.5rem;"></i>
<p>Failed to load wallpapers from GitHub.</p>
<p style="font-size: 0.8rem; margin-top: 0.5rem; opacity: 0.8;">${error.message}</p>
</div>
`;
}
}
const tipItems = [
"Calibrate Display color and Font",
"Disable Core Isolation",
"Disable Language Bar",
"Disable MS Edge tabs in Multitasking under System",
"Disable Protected View of Microsoft Office",
"Disable Restartable Apps",
"Disable Sticky Keys",
"Disable Stuff in 'MSConfig' (Increase Number Of Processors Under Advanced Options)",
"Disable Touch Indicator",
"Download Windows Terminal and Set Windows Terminal As default Console Host",
"Enable Details Pane in File Explorer",
"Enable Multi-lingual Text Suggestions",
"Increase Cursor Pointer size",
"Increase Font Text Size",
"Install Hindi Keyboard",
"Performance Options aka Visual Effects (Environmental Variable)",
"Remove Optional Features",
"Rename The Recycle Bin :)",
"Turn on Device Discovery",
"Turn Throughput Booster 'On' and set Preferred Band to '5Ghz'"
];
function initTips() {
const today = new Date().toISOString().split('T')[0];
const lastDate = localStorage.getItem('tips_last_date');
if (lastDate !== today) {
localStorage.setItem('tips_last_date', today);
localStorage.removeItem('tips_checked');
}
}
function getCheckedTips() {
const checked = localStorage.getItem('tips_checked');
return checked ? JSON.parse(checked) : {};
}
function toggleTip(index, element) {
const checked = getCheckedTips();
checked[index] = !checked[index];
localStorage.setItem('tips_checked', JSON.stringify(checked));
if (element) {
element.classList.toggle('checked');
}
}
function renderTips() {
const container = document.getElementById('checklistItems');
const checked = getCheckedTips();
container.innerHTML = tipItems.map((tip, index) => `
<div class="checklist-item ${checked[index] ? 'checked' : ''}" onclick="toggleTip(${index}, this)">
<div class="custom-checkbox">
<i class='bx bx-check'></i>
</div>
<span>${tip}</span>
</div>
`).join('');
}
async function updateDynamicUrls() {
// Helper to update app URLs from GitHub releases
const updateAppUrl = async (repo, appName, categoryId, assetFilter) => {
try {
const response = await fetch(`https://api.github.com/repos/${repo}/releases/latest`);
if (!response.ok) return;
const data = await response.json();
const asset = data.assets.find(assetFilter);
if (asset) {
const category = categories.find(c => c.id === categoryId);
const app = category?.apps.find(a => a.name === appName);
if (app) {
app.url = asset.browser_download_url;
// Update DOM
const appSlug = appName.replace(/\s+/g, '-').toLowerCase();
const cardId = `card-${categoryId}-${appSlug}`;
const cardElement = document.getElementById(cardId);
if (cardElement) {
// Update any anchor tags within or the card itself if it's an anchor
if (cardElement.tagName === 'A') {
cardElement.href = asset.browser_download_url;
}
// Update the overlay link specifically
const overlayLink = cardElement.querySelector('.card-overlay-link');
if (overlayLink) {
overlayLink.href = asset.browser_download_url;
}
// Update any action links
const actionLink = cardElement.querySelector('.card-action');
if (actionLink && actionLink.tagName === 'A') {
actionLink.href = asset.browser_download_url;
}
cardElement.dataset.url = asset.browser_download_url;
}
}
}
} catch (error) {
console.error(`Failed to fetch release for ${appName}:`, error);
}
};
// 1. Writing Tools (Utilities) -> Windows Zip
await updateAppUrl(
'theJayTea/WritingTools',
'Writing Tools',
'utilities',
asset => asset.name.toLowerCase().includes('windows') && asset.name.toLowerCase().endsWith('.zip')
);
// 2. FaGram (Media) -> x64 Installer
await updateAppUrl(
'FajoX1/fagramdesktop',
'FaGram',
'media',
asset => asset.name.toLowerCase().includes('x64_installer.exe')
);
// 3. RDPWrap (Utilities) -> Installer exe
await updateAppUrl(
'sebaxakerhtc/rdpwrap',
'RDPWrap',
'utilities',
asset => asset.name === 'RDPW_Installer.exe'
);
// 4. BCUninstaller (System) -> Setup exe
await updateAppUrl(
'Klocman/Bulk-Crap-Uninstaller',
'BCUninstaller',
'system',
asset => {
const name = asset.name.toLowerCase();
return name.includes('setup.exe') && !name.endsWith('.sig') && !name.includes('portable');
}
);
// 5. GenP (Activators) -> Latest 'genp' Zip
await updateAppUrl(
'Cur10s1tyByt3/GenP',
'GenP',
'activators',
asset => {
const name = asset.name.toLowerCase();
return name.includes('genp') && name.endsWith('.zip') && !name.includes('source');
}
);
// 6. Winhance (Utilities) -> Installer exe
await updateAppUrl(
'memstechtips/Winhance',
'Winhance',
'utilities',
asset => asset.name.toLowerCase().includes('installer.exe')
);
// 7. Office Installer (Activators) -> Zip
await updateAppUrl(
'YerongAI/Office-Tool',
'Office Installer',
'activators',
asset => asset.name.toLowerCase().endsWith('.zip') && !asset.name.toLowerCase().includes('arm64')
);
// 8. RevPDF (Media) -> Windows exe
await updateAppUrl(
'Pawandeep-prog/revpdf-release',
'RevPDF',
'media',
asset => {
const name = asset.name.toLowerCase();
return name.includes('win') && name.endsWith('.exe');
}
);
// 9. Rainmeter (System) -> Latest exe
await updateAppUrl(
'rainmeter/rainmeter',
'Rainmeter',
'system',
asset => asset.name.toLowerCase().endsWith('.exe')
);
// 10. File Converter (System) -> Latest setup msi
await updateAppUrl(
'Tichau/FileConverter',
'File Converter',
'system',
asset => asset.name.toLowerCase().includes('x64-setup.msi') || asset.name.toLowerCase().endsWith('.msi')
);
// 11. Espanso (Utilities) -> Latest win installer exe
await updateAppUrl(
'espanso/espanso',
'Espanso',
'utilities',
asset => asset.name.toLowerCase().includes('win-installer') || asset.name.toLowerCase().includes('win-setup') || (asset.name.toLowerCase().includes('win') && asset.name.toLowerCase().endsWith('.exe'))
);
// 12. Rufus (System) -> Latest standard exe
await updateAppUrl(
'pbatard/rufus',
'Rufus',
'system',
asset => asset.name.toLowerCase().endsWith('.exe') && !asset.name.toLowerCase().includes('arm') && !asset.name.toLowerCase().includes('p.exe') && !asset.name.toLowerCase().includes('x86')
);
// 13. qBittorrent (Media) -> Latest x64 setup exe
await updateAppUrl(
'qbittorrent/qBittorrent',
'qBittorrent',
'media',
asset => asset.name.toLowerCase().includes('_x64_setup.exe') || (asset.name.toLowerCase().includes('setup.exe') && asset.name.toLowerCase().includes('x64'))
);
}