-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packageData.json
744 lines (744 loc) · 28.9 KB
/
packageData.json
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
{
"Development": {
"Android Studio": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask android-studio",
"windows": "winget install --id=Google.AndroidStudio -e"
},
"type": "disable"
},
"Beyond Compare": {
"description": "用來做檔案差異比較的 GUI 軟體",
"install": {
"linux": "",
"mac": "brew install --cask beyond-compare",
"windows": "winget install --id=ScooterSoftware.BeyondCompare5 -e"
},
"type": "enable"
},
"CMake": {
"description": "跨平台的建構系統產生工具",
"install": {
"linux": "asdf plugin add cmake && asdf install cmake latest && asdf global cmake latest",
"mac": "asdf plugin add cmake && asdf install cmake latest && asdf global cmake latest",
"windows": "winget install --id=Kitware.CMake -e"
},
"type": "disable"
},
"Cuda": {
"description": "控制 NVIDIA GPU 的 CLI 工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Nvidia.CUDA -e"
},
"type": "disable"
},
"DevToys": {
"description": "開發者工具集合,包含了許多常用的開發者工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=DevToys-app.DevToys -e"
},
"type": "disable"
},
"Docker": {
"description": "虛擬化容器工具,會同時安裝 docker & docker-compose",
"install": {
"linux": "sudo apt install docker.io -y && sudo apt install docker-compose -y",
"mac": "brew install orbstack && brew install docker-compose",
"windows": "winget install --id=Docker.DockerDesktop -e"
},
"type": "enable"
},
"FileZilla": {
"description": "免費的 FTP 用戶端軟體",
"install": {
"linux": "",
"mac": "",
"windows": "choco install filezilla -y"
},
"type": "disable"
},
"Flutter": {
"description": "",
"install": {
"linux": "asdf plugin add flutter && asdf install flutter latest && asdf global flutter latest",
"mac": "asdf plugin add flutter && asdf install flutter latest && asdf global flutter latest",
"windows": "choco install flutter -y"
},
"type": "disable"
},
"Git": {
"description": "",
"install": {
"linux": "sudo apt install git -y",
"mac": "brew install git",
"windows": "winget install --id=Git.Git -e"
},
"type": "force"
},
"Golang": {
"description": "",
"install": {
"linux": "asdf plugin add golang && asdf install golang latest && asdf global golang latest",
"mac": "brew install coreutils && asdf plugin add golang && asdf install golang latest && asdf global golang latest",
"windows": "winget install --id=GoLang.Go -e"
},
"type": "enable"
},
"ImageJ": {
"description": "基於 Java 的圖像處理軟體",
"install": {
"linux": "",
"mac": "",
"windows": "choco install imagej -y"
},
"type": "enable"
},
"KiCad": {
"description": "繪製電路原理圖和印刷電路板設計的自由軟體",
"install": {
"linux": "sudo add-apt-repository ppa:kicad/kicad-7.0-releases -y && sudo apt update && sudo apt install kicad -y",
"mac": "brew install --cask kicad",
"windows": "winget install --id=KiCad.KiCad -e"
},
"type": "disable"
},
"LINQPad 7": {
"description": "一款強大的 .NET 程式碼編輯器",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=LINQPad.LINQPad.7 -e"
},
"type": "enable"
},
"Miniconda 3": {
"description": "",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Anaconda.Miniconda3 -e"
},
"type": "disable"
},
"MobaXTerm": {
"description": "終端機工具,類似於 PuTTY",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Mobatek.MobaXterm -e"
},
"type": "enable"
},
"Node.js": {
"description": "",
"install": {
"linux": "echo 'This line will be replaced by the code to meet different versions of Ubuntu'",
"mac": "asdf plugin add nodejs && asdf install nodejs 18.18.0 && asdf global nodejs 18.18.0",
"windows": "winget install --id=OpenJS.NodeJS.LTS -e"
},
"type": "force"
},
"OpenSSH": {
"description": "",
"install": {
"linux": "sudo apt install openssh-server -y && mkdir -p ~/.ssh && chmod 700 ~/.ssh && touch ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys",
"mac": "",
"windows": ""
},
"type": "enable"
},
"Pandoc": {
"description": "文件轉換工具",
"install": {
"linux": "asdf plugin add pandoc && asdf install pandoc latest && asdf global pandoc latest && asdf plugin add tinytex && asdf install tinytex latest && asdf global tinytex latest",
"mac": "asdf plugin add pandoc && asdf install pandoc latest && asdf global pandoc latest && asdf plugin add tinytex && asdf install tinytex latest && asdf global tinytex latest",
"windows": "winget install --id=JohnMacFarlane.Pandoc -e ; winget install --id=MiKTeX.MiKTeX -e"
},
"type": "enable"
},
"PuTTY": {
"description": "",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=PuTTY.PuTTY -e"
},
"type": "enable"
},
"PySide6": {
"description": "",
"install": {
"linux": "pip install --upgrade PySide6",
"mac": "pip install --upgrade PySide6",
"windows": "pip install --upgrade PySide6"
},
"type": "disable"
},
"Python": {
"description": "",
"install": {
"linux": "asdf plugin add python && asdf install python 3.10.0 && asdf global python 3.10.0",
"mac": "asdf plugin add python && asdf install python 3.10.0 && asdf global python 3.10.0",
"windows": "winget install --id=Python.Python.3.10 -e"
},
"type": "force"
},
"Rust": {
"description": "",
"install": {
"linux": "asdf plugin add rust && asdf install rust latest && asdf global rust latest",
"mac": "asdf plugin add rust && asdf install rust latest && asdf global rust latest",
"windows": "choco install rust -y"
},
"type": "force"
},
"Setuptools": {
"description": "Python tool that helps you easily download, build, install, upgrade, and uninstall Python packages",
"install": {
"linux": "pip install --upgrade setuptools",
"mac": "pip install --upgrade setuptools",
"windows": "pip install --upgrade setuptools"
},
"type": "disable"
},
"Sourcetree": {
"description": "Git GUI 軟體",
"install": {
"linux": "",
"mac": "brew install --cask sourcetree",
"windows": "winget install --id=Atlassian.Sourcetree -e"
},
"type": "disable"
},
"Sublime Text 4": {
"description": "高效、多功能的文本編輯器",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=SublimeHQ.SublimeText.4 -e"
},
"type": "enable"
},
"Tera Term": {
"description": "",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=TeraTermProject.teraterm5 -e"
},
"type": "disable"
},
"TypeScript": {
"description": "",
"install": {
"linux": "npm install -g typescript ts-node",
"mac": "npm install -g typescript ts-node",
"windows": "npm install -g typescript ts-node"
},
"type": "enable"
},
"VSCode Extension Development": {
"description": "VSCode 擴充套件開發工具",
"install": {
"linux": "npm install -g yo generator-code vsce esbuild",
"mac": "npm install -g yo generator-code vsce esbuild",
"windows": "npm install -g yo generator-code vsce esbuild"
},
"type": "enable"
},
"Virtual Box": {
"description": "自由及開放原始碼的虛擬機器軟體",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Oracle.VirtualBox -e"
},
"type": "enable"
},
"Visual Studio 2022 Community": {
"description": "",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Microsoft.VisualStudio.2022.Community -e"
},
"type": "disable"
},
"Visual Studio Code": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask visual-studio-code",
"windows": "winget install --id=Microsoft.VisualStudioCode -e"
},
"type": "enable"
},
"act-cli": {
"description": "GitHub Actions 的本地模擬工具",
"install": {
"linux": "asdf plugin add act && asdf install act latest && asdf global act latest",
"mac": "asdf plugin add act && asdf install act latest && asdf global act latest",
"windows": "winget install --id=nektos.act -e"
},
"type": "disable"
},
"commitizen": {
"description": "Git Commit 規範工具",
"install": {
"linux": "npm install -g commitizen cz-conventional-changelog conventional-changelog-cli && echo '{\"path\": \"cz-conventional-changelog\"}' > ~/.czrc",
"mac": "npm install -g commitizen cz-conventional-changelog conventional-changelog-cli && echo '{\"path\": \"cz-conventional-changelog\"}' > ~/.czrc",
"windows": "npm install -g commitizen cz-conventional-changelog conventional-changelog-cli ; echo '{\"path\": \"cz-conventional-changelog\"}' | Out-File -Encoding utf8 $HOME\\.czrc"
},
"type": "enable"
},
"dotnet-sdk": {
"description": "",
"install": {
"linux": "curl -sSL https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh | bash && echo -e '\nexport PATH=\"$HOME/.dotnet:$PATH\"' >> ~/.bashrc && source ~/.bashrc",
"mac": "curl -sSL https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh | bash && echo -e '\nexport PATH=\"$HOME/.dotnet:$PATH\"' >> ~/.bashrc && source ~/.bashrc",
"windows": "Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass ; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1'))"
},
"type": "enable"
},
"gcc": {
"description": "C / C++ 編譯器",
"install": {
"linux": "",
"mac": "",
"windows": "choco install mingw -y"
},
"type": "enable"
},
"gcc-arm-none-eabi": {
"description": "ARM 編譯器",
"install": {
"linux": "asdf plugin add gcc-arm-none-eabi && asdf install gcc-arm-none-eabi latest && asdf global gcc-arm-none-eabi latest",
"mac": "asdf plugin add gcc-arm-none-eabi && asdf install gcc-arm-none-eabi latest && asdf global gcc-arm-none-eabi latest",
"windows": "winget install --id=Arm.GnuArmEmbeddedToolchain -e"
},
"type": "enable"
},
"ilspy": {
"description": "C# 反編譯工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=icsharpcode.ILSpy -e"
},
"type": "enable"
},
"lazydocker": {
"description": "一個簡單的終端機使用者介面,適用於 docker 與 docker-compose",
"install": {
"linux": "asdf plugin add lazydocker https://github.com/comdotlinux/asdf-lazydocker.git && asdf install lazydocker latest && asdf global lazydocker latest",
"mac": "asdf plugin add lazydocker https://github.com/comdotlinux/asdf-lazydocker.git && asdf install lazydocker latest && asdf global lazydocker latest",
"windows": "winget install --id=JesseDuffield.Lazydocker -e"
},
"type": "enable"
},
"lazygit": {
"description": "一個簡單的終端機使用者介面,適用於 git",
"install": {
"linux": "asdf plugin add lazygit && asdf install lazygit latest && asdf global lazygit latest",
"mac": "asdf plugin add lazygit && asdf install lazygit latest && asdf global lazygit latest",
"windows": "winget install --id=JesseDuffield.lazygit -e"
},
"type": "enable"
},
"make": {
"description": "",
"install": {
"linux": "asdf plugin add make && asdf install make latest && asdf global make latest",
"mac": "asdf plugin add make && asdf install make latest && asdf global make latest",
"windows": "winget install -e --id GnuWin32.Make"
},
"type": "enable"
},
"minicom": {
"description": "Linux/Unix 系統的終端機通訊程式",
"install": {
"linux": "sudo apt install minicom -y",
"mac": "brew install minicom",
"windows": ""
},
"type": "enable"
},
"pyOCD": {
"description": "Python OpenOCD",
"install": {
"linux": "pip install --upgrade pyocd --user",
"mac": "pip install --upgrade pyocd --user",
"windows": "pip install --upgrade pyocd --user"
},
"type": "enable"
},
"usbipd-win": {
"description": "USB over IP 的 Windows 版本",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --interactive --exact dorssel.usbipd-win"
},
"type": "enable"
}
},
"MISC": {
"7-Zip": {
"description": "壓縮/解壓縮軟體",
"install": {
"linux": "",
"mac": "brew install p7zip",
"windows": "winget install --id=7zip.7zip -e"
},
"type": "disable"
},
"Adobe Creative Cloud": {
"description": "Adobe 軟體管理工具",
"install": {
"linux": "",
"mac": "brew install --cask adobe-creative-cloud",
"windows": ""
},
"type": "enable"
},
"Adobe Reader": {
"description": "PDF 閱讀器",
"install": {
"linux": "",
"mac": "brew install --cask adobe-acrobat-reader",
"windows": "winget install --id=Adobe.Acrobat.Reader.64-bit -e"
},
"type": "disable"
},
"Anydesk": {
"description": "遠端桌面軟體",
"install": {
"linux": "",
"mac": "brew install --cask anydesk",
"windows": "winget install --id=AnyDeskSoftwareGmbH.AnyDesk -e"
},
"type": "disable"
},
"Bandizip": {
"description": "好看的壓縮程式",
"install": {
"linux": "",
"mac": "",
"windows": "choco install bandizip -y"
},
"type": "enable"
},
"CPU-Z": {
"description": "CPU 資訊檢視工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=CPUID.CPU-Z -e"
},
"type": "disable"
},
"CrystalDiskMark": {
"description": "硬碟效能檢測工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=CrystalDewWorld.CrystalDiskInfo -e"
},
"type": "disable"
},
"Discord": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask discord",
"windows": "winget install --id=Discord.Discord -e"
},
"type": "enable"
},
"Everything": {
"description": "免費 Windows 搜尋引擎,且比 Windows 內建的搜尋功能快上許多",
"install": {
"linux": "",
"mac": "",
"windows": "choco install everything -y"
},
"type": "enable"
},
"Fira Code": {
"description": "好看的程式碼字型",
"install": {
"linux": "",
"mac": "brew tap homebrew/cask-fonts && brew install --cask font-fira-code",
"windows": "choco install firacode -y"
},
"type": "force"
},
"Folder Size": {
"description": "資料夾大小檢視工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Brio.FolderSize -e"
},
"type": "disable"
},
"Google Drive": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask google-drive",
"windows": "winget install --id=Google.GoogleDrive -e"
},
"type": "enable"
},
"Hugo": {
"description": "靜態網站產生器",
"install": {
"linux": "asdf plugin add hugo && HUGO_LATEST_VERSION=$(asdf list-all hugo | tail -1) && asdf install hugo extended_$HUGO_LATEST_VERSION && asdf global hugo extended_$HUGO_LATEST_VERSION",
"mac": "asdf plugin add hugo && HUGO_LATEST_VERSION=$(asdf list-all hugo | tail -1) && asdf install hugo extended_$HUGO_LATEST_VERSION && asdf global hugo extended_$HUGO_LATEST_VERSION",
"windows": "winget install --id=Hugo.Hugo.Extended -e"
},
"type": "enable"
},
"IINA": {
"description": "macOS 的影片播放器",
"install": {
"linux": "",
"mac": "brew install --cask iina",
"windows": ""
},
"type": "enable"
},
"Ice": {
"description": "Ice is a powerful menu bar management tool for macOS",
"install": {
"linux": "",
"mac": "brew install jordanbaird-ice",
"windows": ""
},
"type": "enable"
},
"Inkscape": {
"description": "免費向量繪圖軟體,類似 Adobe Illustrator",
"install": {
"linux": "sudo apt install inkscape -y",
"mac": "brew install --cask inkscape",
"windows": "winget install --id=Inkscape.Inkscape -e"
},
"type": "disable"
},
"Keyviz": {
"description": "按鍵可視化工具,它可以實時顯示用戶當前按下的按鍵。",
"install": {
"linux": "",
"mac": "",
"windows": "winget install mulaRahul.Keyviz"
},
"type": "enable"
},
"Krita": {
"description": "免費的數位繪圖軟體,類似 Adobe Photoshop",
"install": {
"linux": "",
"mac": "brew install --cask krita",
"windows": "winget install --id=KDE.Krita -e"
},
"type": "disable"
},
"Logi Options+": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask logi-options-plus",
"windows": "winget install --id=Logitech.OptionsPlus -e"
},
"type": "disable"
},
"Logitech G HUB": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask logitech-g-hub",
"windows": "winget install --id=Logitech.GHUB -e"
},
"type": "enable"
},
"Mega Downloader": {
"description": "Mega.nz 下載器",
"install": {
"linux": "",
"mac": "",
"windows": "choco install megadownloader -y"
},
"type": "disable"
},
"Microsoft Edge": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask microsoft-edge && echo 'export CHROME_EXECUTABLE=\"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge\"' >>~/.zshrc",
"windows": ""
},
"type": "enable"
},
"Notion": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask notion",
"windows": "winget install --id=Notion.Notion -e"
},
"type": "disable"
},
"Noto Sans CJK": {
"description": "Google 開發的中文字型",
"install": {
"linux": "sudo apt-get install -y fonts-noto-cjk",
"mac": "",
"windows": ""
},
"type": "enable"
},
"OBS Studio": {
"description": "開源的串流軟體",
"install": {
"linux": "sudo add-apt-repository ppa:obsproject/obs-studio -y && sudo apt update && sudo apt install obs-studio -y",
"mac": "brew install --cask obs",
"windows": "winget install --id=OBSProject.OBSStudio -e"
},
"type": "enable"
},
"PDF24": {
"description": "PDF 處理軟體",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=geeksoftwareGmbH.PDF24Creator -e"
},
"type": "disable"
},
"PotPlayer": {
"description": "",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Daum.PotPlayer -e"
},
"type": "enable"
},
"PowerToys": {
"description": "Windows 10 / 11 的實用小工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=Microsoft.PowerToys -e"
},
"type": "enable"
},
"QuickLook": {
"description": "類似於 macOS 的快速預覽工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=QL-Win.QuickLook -e"
},
"type": "enable"
},
"Rclone": {
"description": "雲端檔案同步工具",
"install": {
"linux": "",
"mac": "brew install rclone",
"windows": ""
},
"type": "disable"
},
"Revo Uninstaller": {
"description": "Windows 的軟體卸載工具",
"install": {
"linux": "",
"mac": "",
"windows": "winget install --id=RevoUninstaller.RevoUninstaller -e"
},
"type": "enable"
},
"Spotify": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask spotify",
"windows": "winget install --id=Spotify.Spotify -e"
},
"type": "enable"
},
"Telegram": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask telegram-desktop",
"windows": "winget install --id=Telegram.TelegramDesktop -e"
},
"type": "enable"
},
"The Unarchiver": {
"description": "macOS 的壓縮/解壓縮軟體",
"install": {
"linux": "",
"mac": "brew install --cask the-unarchiver",
"windows": ""
},
"type": "enable"
},
"VLC": {
"description": "",
"install": {
"linux": "",
"mac": "brew install --cask vlc",
"windows": "winget install --id=VideoLAN.VLC -e"
},
"type": "disable"
},
"ffmepg": {
"description": "影片處理 CLI 工具",
"install": {
"linux": "asdf plugin add nasm && asdf install nasm latest && asdf global nasm latest && asdf plugin add ffmpeg && asdf install ffmpeg latest && asdf global ffmpeg latest",
"mac": "asdf plugin add nasm && asdf install nasm latest && asdf global nasm latest && asdf plugin add ffmpeg && asdf install ffmpeg latest && asdf global ffmpeg latest",
"windows": "winget install --id=Gyan.FFmpeg -e"
},
"type": "enable"
},
"stats": {
"description": "macOS system monitor in your menu bar",
"install": {
"linux": "",
"mac": "brew install stats",
"windows": ""
},
"type": "enable"
},
"ttc-source-han-serif": {
"description": "思源宋體",
"install": {
"linux": "",
"mac": "brew install ttc-source-han-serif",
"windows": ""
},
"type": "enable"
},
"yt-dlp": {
"description": "YouTube 影片下載 CLI 工具",
"install": {
"linux": "asdf plugin add yt-dlp && asdf install yt-dlp latest && asdf global yt-dlp latest",
"mac": "asdf plugin add yt-dlp && asdf install yt-dlp latest && asdf global yt-dlp latest",
"windows": "winget install --id=yt-dlp.yt-dlp -e"
},
"type": "enable"
}
}
}