-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsoftware.yml
12588 lines (12588 loc) · 857 KB
/
software.yml
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
---
installerPreference:
apt:
- flatpak
- snap
- whalebrew
- apt
- brew
- go
- cargo
- npm
- pipx
- pip
- gem
- appimage
- script
- ansible
- binary
darwin:
- whalebrew
- cask
- brew
- go
- cargo
- npm
- pipx
- pip
- gem
- pkg-darwin
- script
- ansible
- binary
dnf:
- flatpak
- snap
- whalebrew
- dnf
- brew
- go
- cargo
- npm
- pipx
- pip
- gem
- appimage
- script
- ansible
- binary
freebsd:
- pkg
- go
- cargo
- npm
- gem
- script
pacman:
- flatpak
- snap
- whalebrew
- pacman
- brew
- yay
- go
- cargo
- npm
- pipx
- pip
- gem
- appimage
- script
- ansible
- binary
ubuntu:
- snap
- flatpak
- whalebrew
- apt
- brew
- go
- cargo
- npm
- pipx
- pip
- gem
- appimage
- script
- ansible
- binary
windows:
- choco
- scoop
- winget
- go
- cargo
- npm
- pipx
- gem
- script
- ansible
- binary
zypper:
- flatpak
- snap
- whalebrew
- zypper
- brew
- go
- cargo
- npm
- pipx
- gem
- appimage
- script
- ansible
- binary
softwarePackages:
_envchain:deps:
_github: false
_preload: true
apt:
- gnome-keyring
- gcc
- gnome-keyring
- libsecret-1-dev
- make
- libreadline-dev
dnf:
- gcc
- gnome-keyring
- libsecret-devel
- make
- readline-devel
pacman:
- gcc
- gnome-keyring
- libsecret
- make
- readline
_kde:
_deps:
- kde-plasma-desktop
_github: false
_misc-flatpaks:
_deps:
- bottles
- cockpit-client
- connections
- dconf-editor
- deja-dup
- dialect
- drawing
- flatseal
- forklift
- gnome-calendar
- gnome-document-viewer
- gnome-extension-manager
- gnome-eyedropper
- gnome-file-roller
- gnome-image-viewer
- gnome-network-displays
- gnome-passwords-keys
- gnome-photos
- gnome-sound-recorder
- gnome-video-player
- gnome-weather
- junction
- kooha
- newsflash
- pinapp
- vup
- warp-transfer
- web-font-generator
- what-ip
- live-captions
- libre-menu-editor
- iso-image-writer
- trayscale
_github: false
_nautilus-extensions:
_deps:
- nautilus-brasero
- nautilus-gtkhash
- nautilus-gsconnect
- nautilus-image-converter
- nautilus-python
- nautilus-seahorse
- nautilus-search-tool
- nautilus-share
- nautilus-wipe
_github: false
ack:
_bin: ack
_desc: "Ack is a tool similar to grep but optimized for searching code. Ack 3 is the latest version of this tool. It is designed to be fast, easy to use, and specifically tailored for searching large codebases.\nIt supports various file types, ignores version control directories, and has built-in filtering options. Ack 3 is written in Perl and is known for its speed and simplicity in searching through code \nfiles. It's a popular choice among developers for efficiently searching and navigating codebases. "
_github: https://github.com/beyondgrep/ack3
_name: Ack
_short: "ack is a code-searching tool similar to grep, optimized for programmers. "
apt: ack
brew: ack
choco: ack
dnf: ack
pacman: ack
port: perl/p5-app-ack
act:
_bin: act
_desc: "[Act](https://github.com/nektos/act) Run GitHub actions locally"
_docs: https://github.com/nektos/act#example-commands
_github: https://github.com/nektos/act
_home: https://github.com/nektos/act
_name: Act
_short: "act is a tool that allows you to run GitHub Actions locally. "
brew: act
choco: act-cli
go: github.com/nektos/act@
nix: nixpkgs.act
port: act
scoop: act
yay: act
adobe-creative-cloud:
_bin: adobe-creative-cloud
_deprecated: Creates distracting boot window pop-up
_github: false
_name: Adobe Creative Cloud
_when:cask: '! test -d "/Applications/Adobe Creative Cloud" && ! test -d "$HOME/Applications/Adobe Creative Cloud"'
cask: adobe-creative-cloud
ai-shell:
_bin: ai
_desc: "The repository at https://github.com/BuilderIO/ai-shell appears to be related to a project called \"ai-shell\" by BuilderIO. It seems to be a shell script that provides various AI-related functionalities \nor tools. Without further details or examining the repository, it's likely designed to assist with tasks related to artificial intelligence within a shell environment. For more specific information, you\nmay want to explore the repository's documentation, code, and README file. "
_github: https://github.com/BuilderIO/ai-shell
_name: AI Shell
_preload: true
_short: "ai-shell is a tool that enhances your shell with AI capabilities, allowing for intelligent auto-completions and suggestions while working in the terminal. "
npm: "@builder.io/ai-shell"
aiac:
_bin: aiac
_desc: "aiac is a Go library developed by gofireflyio that provides a simple and efficient way to interact with the Apple iCloud service. It allows developers to access iCloud services like Find My iPhone, \niCloud Contacts, iCloud Calendar, and iCloud Reminders programmatically using Go. The library supports features such as authentication, device tracking, and interacting with iCloud data. It can be \nuseful for developers looking to integrate iCloud functionality into their Go applications. "
_github: https://github.com/gofireflyio/aiac
_name: AIAC
_short: "aiac is a Go library for building AI applications with a focus on simplicity and ease of use. "
brew: gofireflyio/aiac/aiac
go: github.com/gofireflyio/aiac/v3@latest
aicommits:
_bin: aicommits
_desc: "The repository at https://github.com/Nutlope/aicommits appears to be a project related to artificial intelligence commits. It likely contains code, documentation, or resources related to AI development \nor version control of AI projects. To get a more detailed understanding, you can explore the repository's contents, such as the README file, code files, and any documentation provided. "
_github: https://github.com/Nutlope/aicommits
_name: AI Commits
_preload: true
_short: "aicommits is a tool for analyzing and visualizing AI-related commits on GitHub. "
brew: aicommits
npm: aicommits
aider:
_bin: aider
_desc: "Aider is a GitHub repository created by Paul Gauthier. Unfortunately, without further context or access to the repository, I cannot provide specific details about its contents. To learn more about the \nproject, you can visit the repository link provided and explore the code, documentation, and any other resources available there. "
_github: https://github.com/paul-gauthier/aider
_name: Aider AI Chat
_short: "aider is a tool for generating documentation from your Python code. "
pipx: aider-chat
aifiles:
_bin: aifiles
_deps:
- pandoc
- exiftool
- poppler
- csvkit
_desc: "Repository Description: \n\nThe repository at https://github.com/jjuliano/aifiles contains a collection of AI-related files. These files likely include code, models, datasets, or other resources related to artificial intelligence.\nIt seems to be a valuable resource for individuals interested in AI development, research, or learning. You can explore the repository to access and utilize the AI files provided by the owner. "
_github: https://github.com/jjuliano/aifiles
_name: AI Files
_short: "aifiles is a repository containing various AI-related files and resources. "
_todo: Implement this when XDG spec is supported so we can store configs in ~/.config
npm: aifiles
airdrop-cli:
_bin: airdrop
_desc: "Airdrop-cli is a command-line tool available on GitHub at https://github.com/vldmrkl/airdrop-cli. It allows users to easily send files between Mac devices using AirDrop from the terminal. This tool \nsimplifies the process of sharing files wirelessly by providing a command-line interface for initiating AirDrop transfers. It can be a handy tool for users who prefer working with the terminal and want \na quick way to transfer files between their Mac devices without using the graphical interface. "
_github: https://github.com/vldmrkl/airdrop-cli
_name: Airdrop CLI
_short: "airdrop-cli is a command-line tool for transferring files using Apple's AirDrop feature. "
brew:darwin: vldmrkl/formulae/airdrop-cli
airtame:
_app: Airtame.app
_bin: airtame
_github: false
_name: Airtame
cask: airtame
choco: airtame
flatpak: com.airtame.Client
snap: airtame-application
alda:
_bin: alda
_desc: "Alda is a music programming language for musicians to write and play music. It allows users to compose music using text-based commands and play it back instantly. Alda is designed to be simple and \nintuitive, making it easy for both beginners and experienced musicians to create music. It supports various musical elements like notes, rhythms, chords, and more. The code written in Alda can be saved \nas text files, making it easy to share and collaborate on musical compositions. It is a versatile tool for music enthusiasts looking to experiment with music composition in a unique way. "
_github: https://github.com/alda-lang/alda
_name: Alda
_short: "Alda is a music programming language for musicians and programmers to create music using text-based commands. "
brew: alda
allure:
_bin: allure
_desc: "[Allure Report](https://docs.qameta.io/allure-testops/) is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process."
_docs: https://docs.qameta.io/allure-report/
_github: https://github.com/allure-framework/allure2
_home: https://docs.qameta.io/allure-testops/
_name: Allure
_short: "Allure2 is a flexible test reporting tool that provides clear and concise test execution reports with rich visual representations. "
brew: allure
scoop: allure
yay: allure
alt-tab:
_app: AltTab.app
_bin: alt-tab
_deprecated: Unnecessary
_desc: "alt-tab-macos is a tool created by lwouis on GitHub. It enhances the macOS app switcher by providing a more Windows-like experience with Alt-Tab functionality. This tool allows users to cycle through \nopen applications using the Alt-Tab key combination, making it easier to switch between apps quickly. It is designed to improve productivity and streamline the app-switching process on macOS systems. \nUsers looking for a more efficient way to navigate between applications may find this tool useful. "
_github: https://github.com/lwouis/alt-tab-macos
_name: Alt+Tab for macOS that works like alt+tab on Windows
_short: "alt-tab-macos is a tool that brings Windows-like alt-tab functionality to MacOS, allowing users to switch between applications more easily. "
cask: alt-tab
altair:
_app: Altair GraphQL Client.app
_bin:snap: altair
_deprecated: Deprecated in favor of Postman
_desc: "[Altair GraphQL Client](https://altairgraphql.dev/) A beautiful feature-rich GraphQL Client for all platforms."
_docs: https://altairgraphql.dev/docs/
_env:
ALTAIR_APPDATA:
cask: $HOME/Library/Application Support/Altair GraphQL Client
choco: TODO
snap: $HOME/snap/altair/current/.config/Altair GraphQL Client
_github: https://github.com/altair-graphql/altair
_home: https://altairgraphql.dev/
_name: Altair GraphQL Client
_short: "Altair is a powerful GraphQL client for making API requests and exploring schemas visually. "
cask: altair-graphql-client
choco: altair-graphql
snap: altair
yay: altair
amethyst:
_app: Amethyst.app
_bin: amethyst
_desc: "Amethyst is a tiling window manager for macOS that allows users to organize and manage their windows efficiently. It enables users to resize and arrange windows using keyboard shortcuts, improving \nproductivity by eliminating the need to manually adjust window sizes. Amethyst supports multiple layouts and customizable key bindings, providing a flexible window management solution for macOS users. \nIt is open-source and available on GitHub at https://github.com/ianyh/Amethyst. "
_github: https://github.com/ianyh/Amethyst
_name: Amethyst
_short: "Amethyst is a tiling window manager for macOS. "
cask: amethyst
android-commandlinetools:
_bin: false
_deps:
- java
_github: false
_name: Android Studio Command Line Tools
_when:cask: '! test -d "${HOMEBREW_PREFIX:-/opt/homebrew}/share/android-commandlinetools"'
cask: android-commandlinetools
android-platform-tools:
_bin: adb
_github: false
_name: Android Platform Tools
cask: android-platform-tools
android-studio:
_app: Android Studio.app
_bin: android-studio
_deps:
- android-commandlinetools
- java
_desc: "[Android Studio](https://developer.android.com/studio) is the official integrated development environment for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development. This role installs Android Studio on nearly any operating system and also ensures a configurable list of command-line tools and SDKs are installed and seamlessly integrated with the system (i.e. the role adds the appropriate items to the `PATH` environment variable)."
_docs: https://developer.android.com/docs
_env:
ANDROID_STUDIO_APPDATA:
cask: TODO
choco: TODO
flatpak: TODO
snap: TODO
_github: false
_home: https://developer.android.com/studio
_name: Android Studio
cask: android-studio
choco: androidstudio
flatpak: com.google.AndroidStudio
snap: android-studio
yay: android-studio
angular-cli:
_bin: ng
_desc: "[Angular](https://angular.io) The web development framework for building the future"
_docs: https://angular.io/docs
_github: https://github.com/angular/angular
_home: https://angular.io
_name: Angular
_preload: true
_short: "Angular is an open-source web application framework maintained by Google for building dynamic single-page applications. "
brew: angular-cli
npm: "@angular/cli"
ansible:
_bin: ansible
_desc: "[Ansible](https://www.ansible.com/) Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain"
_docs: https://docs.ansible.com/
_github: https://github.com/ansible/ansible
_home: https://www.ansible.com/
_name: Ansible
_preload: true
_post:pipx: pipx inject ansible PyObjC PyObjC-core docker lxml netaddr pexpect python-vagrant pywinrm requests-credssp watchdog
_short: "Ansible is an open-source automation tool that simplifies IT orchestration, configuration management, and application deployment. "
pipx: ansible
ansible-lint:
_bin: ansible-lint
_desc: "[Ansible Lint](https://github.com/ansible/ansible-lint/) is a command-line tool for linting playbooks, roles and collections aimed toward any Ansible users"
_docs: https://ansible-lint.readthedocs.io/
_github: https://github.com/ansible/ansible-lint/
_home: https://github.com/ansible/ansible-lint/
_name: Ansible Lint
_short: "ansible-lint is a tool that checks playbooks for practices and behavior that could potentially be improved. "
pipx: ansible-lint
ansibleconnect:
_bin: ansibleconnect
_deps:
- sshpass
- tmux
_desc: "[ansibleconnect](https://github.com/psykulsk/ansibleconnect) allows you to connect to all hosts from the inventory with one command"
_docs: https://github.com/psykulsk/ansibleconnect
_github: https://github.com/psykulsk/ansibleconnect
_home: https://github.com/psykulsk/ansibleconnect
_name: Ansibleconnect
_short: "ansibleconnect is a repository for Ansible playbooks and roles created by psykulsk. "
pipx: ansibleconnect
ansibler:
_bin: ansibler
_desc: Megabyte Labs Python project used to extract test information from Molecule and save it as JSON that can be rendered into charts
_docs: https://pypi.org/project/ansibler/
_github: https://github.com/megabyte-labs/ansibler
_home: https://pypi.org/project/ansibler/
_name: Ansibler
_short: "Ansibler is a tool for managing Ansible playbooks and roles in a structured way. "
pipx: ansibler
ansifilter:
_bin: ansifilter
_github: false
_name: Ansifilter
_preload: true
brew: ansifilter
choco: ansifilter
port: ansifilter
apktool:
_bin: apktool
_desc: "Apktool is a popular open-source tool used for reverse engineering Android APK files. It allows users to decompile, modify, and recompile APK files, making it easier to analyze and understand the inner \nworkings of Android applications. Apktool is commonly used by developers, security researchers, and enthusiasts to explore and customize APKs. It supports decoding resources, smali code, and manifest \nfiles, enabling users to make changes to APKs without access to the original source code. Overall, Apktool is a valuable tool for Android application analysis and modification. "
_github: https://github.com/iBotPeaches/Apktool
_name: APKTool
_short: "Apktool is a tool for reverse engineering Android APK files. "
brew: apktool
choco: apktool
appium:
_bin: appium
_desc: "[Appium](https://appium.io/) is an open source automation tool for running scripts and testing native applications, mobile-web applications and hybrid applications on Android or iOS using a webdriver."
_docs: https://appium.io/docs/en/about-appium/intro/
_github: https://github.com/appium/appium
_home: https://appium.io/
_name: Appium
_service: appium
_short: "Appium is an open-source automation tool for testing mobile, web, and hybrid applications. "
brew: appium
npm: appium
appium-desktop:
_app: Appium Server GUI.app
_bin: appium-desktop
_deprecated: Unneeded
_desc: "Appium Desktop is an open-source app that provides a graphical interface for Appium, an automation tool for testing mobile applications. It allows users to easily set up and run Appium server, inspect \nmobile apps, and write and run test scripts. Appium Desktop simplifies the process of creating and running automated tests for mobile apps across different platforms like iOS and Android. It is a \nvaluable tool for mobile app developers and testers looking to automate their testing processes. "
_github: https://github.com/appium/appium-desktop
_name: Appium Desktop
_short: Appium Desktop is a graphical interface for Appium, an open-source tool for automating mobile app testing. It provides a user-friendly way to interact with Appium server and inspect your app's elements.
appimage: appium/appium-desktop
cask: appium
choco: appium-desktop
appium-inspector:
_app: Appium Inspector.app
_bin: appium-inspector
_deprecated: Unneeded
_desc: "Appium Inspector is a tool provided by Appium, an open-source automation framework for mobile apps. It allows users to inspect elements of mobile applications for testing purposes. With Appium \nInspector, you can view the structure of your app's UI elements, locate elements using various selectors, and generate test scripts. It provides a graphical interface for inspecting elements across \ndifferent platforms like iOS and Android, making it easier for testers and developers to interact with mobile apps during the automation testing process. "
_github: https://github.com/appium/appium-inspector
_name: Appium Inspector
_short: "Appium Inspector is a tool for inspecting and recording interactions with mobile apps for testing purposes. "
appimage: appium/appium-inspector
cask: appium-inspector
choco: appium-desktop
appnest-readme:
_bin: readme
_desc: "[Readme](https://github.com/andreasbm/readme/) automatically generate a beautiful best-practice README file based on the contents of your repository"
_docs: https://github.com/andreasbm/readme/
_github: https://github.com/andreasbm/readme/
_home: https://github.com/andreasbm/readme/
_name: Readme
_short: "Description: \nA GitHub repository for the readme-md-generator tool by Andreas Baum. "
npm: "@appnest/readme"
apprise:
_bin: apprise
_deps:
- pywin32
- terminal-notifier
_desc: "Apprise is a Python library that simplifies the process of sending notifications to multiple messaging services. It supports various notification services like Slack, Discord, Telegram, and more. With \nApprise, you can easily integrate notifications into your scripts or applications by providing a unified interface to interact with different messaging platforms. It's a convenient tool for developers \nand system administrators to streamline their notification workflows. "
_github: https://github.com/caronc/apprise
_name: Apprise
_preload: true
_short: "Apprise is a Python library that simplifies sending notifications to multiple messaging services. "
dnf: apprise
pipx: apprise
apt-cacher-ng:
_bin: null
_deprecated: Deprecated in favor of using Sonatype Nexus apt proxies.
_desc: "[Apt-Cacher-NG](https://wiki.debian.org/AptCacherNg) is a caching proxy server (or apt proxy) for Debian based distributions like Ubuntu, Kubuntu, Xubuntu, Edubuntu, Linux Mint, etc, which is used to cache the downloaded packages locally on your server."
_docs: https://www.unix-ag.uni-kl.de/~bloch/acng/html/index.html
_github: https://salsa.debian.org/blade/apt-cacher-ng
_home: https://wiki.debian.org/AptCacherNg
_name: AptCacherNG
_short: "apt-cacher-ng is a caching proxy for software packages, primarily used in Debian-based systems like Ubuntu. It helps in saving bandwidth and speeding up package installations by caching downloaded \npackages locally. "
_systemd: apt-cacher-ng
aqua:
_bin: aqua
_desc: "[aqua](https://aquaproj.github.io/) is a Declarative CLI Version manager written in Go. It supports Lazy Install, Registry, and continuous update with Renovate."
_docs: https://aquaproj.github.io
_github: https://github.com/aquaproj/aqua
_home: https://aquaproj.github.io
_name: aqua
_preload: true
_short: "Aqua is a tool for secure and efficient container image scanning."
_post: |
aqua update-aqua
aqua install -a
binary:linux: https://github.com/aquaproj/aqua/releases/download/v2.0.0-0/aqua_linux_amd64.tar.gz
binary:windows: https://github.com/aquaproj/aqua/releases/download/v2.0.0-0/aqua_windows_amd64.tar.gz
brew: aquaproj/aqua/aqua
go: github.com/aquaproj/aqua/v2/cmd/aqua@latest
arduino-ide:
_app: Arduino.app
_bin: arduino
_deprecated: Outdated cask
_desc: "Arduino IDE is an open-source integrated development environment (IDE) for programming Arduino boards. It provides a user-friendly interface for writing, compiling, and uploading code to Arduino \ndevices. The IDE supports various Arduino boards and libraries, making it easy for both beginners and advanced users to develop projects. It is written in C++ and uses the Electron framework. The GitHub\nrepository contains the source code, issue tracker, and documentation for the Arduino IDE, allowing users to contribute, report bugs, and stay updated on the latest developments. "
_github: https://github.com/arduino/arduino-ide
_name: "arduino-ide "
_short: "The Arduino IDE is an open-source software used for programming Arduino boards. "
cask: arduino
choco: arduino
flatpak: cc.arduino.IDE2
argc:
_bin: argc
_desc: "argc is a command-line argument parser for C/C++ programs, available at https://github.com/sigoden/argc. It simplifies the process of parsing command-line arguments in C/C++ programs by providing a \nclean and easy-to-use interface. It allows developers to define options, flags, and arguments with minimal boilerplate code. This library can be useful for developers looking to quickly implement \ncommand-line argument parsing in their C/C++ projects without having to write complex parsing logic from scratch. "
_github: https://github.com/sigoden/argc
_name: Argc
_short: "argc is a command-line argument parser for C/C++ programs. "
cargo: argc
argo-cli:
_bin: argocd
_desc: ArgoCD is a declarative GitOps continuous delivery platform.
_docs: https://argoproj.github.io/argo-workflows/walk-through/argo-cli/
_github: https://github.com/argoproj/argo-cd
_home: https://argo-cd.readthedocs.io/en/stable/
_name: argo
_short: "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. "
brew: argocd
choco: argocd-cli
github: https://github.com/argoproj/argo-workflows
pacman:
- argocd
- argocd-cli
aria2:
_bin: aria2c
_desc: "[aria2](https://aria2.github.io/) is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink. [AriaNg](http://ariang.mayswind.net/) is a modern web frontend that makes working with aria2 easier."
_docs: https://aria2.github.io/manual/en/html/
_github: https://github.com/aria2/aria2
_name: Aria2/AriaNg
_short: "aria2 is a lightweight multi-protocol & multi-source command-line download utility. "
apt: aria2
brew: aria2
choco: aria2
dnf:fedora: aria2
pacman: aria2
port: aria2
scoop: aria2
ariang:
_app: AriaNg Native.app
_deprecated: Not very polished and only available via cask
_desc: "AriaNg is a lightweight web frontend for the popular download utility Aria2. It provides a clean and intuitive interface for managing downloads through a web browser. Users can add, pause, resume, and \nremove downloads easily. AriaNg supports multiple languages, customizable themes, and can be accessed from various devices. It is a great tool for remotely managing downloads on a server or personal \ncomputer. "
_github: https://github.com/mayswind/AriaNg
_name: "AriaNg "
_short: "AriaNg is a lightweight web frontend for Aria2 that allows you to manage downloads through a web interface. "
cask: ariang
arping:
_bin: arping
_desc: "arping is a utility that allows users to send ARP (Address Resolution Protocol) requests and receive responses. It is commonly used to discover and verify network connectivity and address resolution on \na local network. The tool is helpful for troubleshooting network issues, detecting duplicate IP addresses, and testing network configurations. The GitHub repository for arping, maintained by Thomas \nHabets, likely contains the source code, documentation, and possibly discussions or issues related to the tool's development and usage. "
_github: https://github.com/ThomasHabets/arping
_name: ARPing
_short: "arping is a tool for sending ARP (Address Resolution Protocol) requests and measuring the time taken to receive a response. It helps in troubleshooting network connectivity and detecting duplicate IP \naddresses. "
apt: arping
brew: arping
choco: arping
dnf: arping
pacman: arping
asciinema:
_bin: asciinema
_desc: "[Asciinema](https://asciinema.org) allows you to record and share your terminal sessions, the simple way"
_docs: https://asciinema.org/docs/
_github: https://github.com/asciinema/asciinema
_home: https://asciinema.org/
_name: asciinema
_short: "asciinema is a tool for recording and sharing terminal sessions. "
apk: asciinema
apt: asciinema
brew: asciinema
dnf: asciinema
pacman: asciinema
pipx: asciinema
asdf:
_bin: asdf
_deprecated: ASDF is currently installed via a script rather than in the software definitions.
_desc: "[asdf](https://asdf-vm.com/#/) is a CLI tool that can manage multiple language runtime versions on a per-project basis or globally. It is like gvm, nvm, rbenv, and pyenv all in one. This role installs asdf on Linux or macOS."
_docs: https://asdf-vm.com/guide/introduction.html
_github: https://github.com/asdf-vm/asdf
_home: https://asdf-vm.com/
_name: asdf-vm
_short: "asdf is a tool for managing multiple runtime versions like Node.js, Ruby, Python, etc., in a single environment. "
assh:
_bin: assh
_desc: "[assh](https://manfred.life/assh) makes your ssh client smarter"
_docs: https://github.com/moul/assh
_github: https://github.com/moul/assh
_home: https://manfred.life/assh
_name: assh
_short: "assh is a tool that simplifies SSH configuration management by allowing you to define host aliases and settings in a single YAML file. "
brew: assh
go: moul.io/assh/v2
yay: assh
astronvim:
_deps:
- bottom
- lazygit
- neovim
- node
- python
- ripgrep
- tree-sitter
_deprecated: AstronVIM is deprecated in favor of NvChad which has more stars and is less troublesome to install (in our experience)
_desc: "[AstroNvim](https://astronvim.github.io/) is an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins"
_docs: https://astronvim.github.io/
_github: https://github.com/AstroNvim/AstroNvim
_home: https://astronvim.github.io/
_name: AstroNvim
_post: |
#!/usr/bin/env bash
bash -ci "nvim --headless +q"
_short: "AstroNvim is a plugin for Neovim that provides astronomy-related features and tools for users interested in astronomy while coding. "
atuin:
_bin: atuin
_desc: "Atuin is a tool for managing AWS infrastructure using a simple command-line interface. It allows users to create, update, and delete AWS resources like EC2 instances, security groups, and S3 buckets \nusing a declarative configuration file. Atuin aims to simplify AWS infrastructure management by providing a user-friendly interface and automating common tasks. It is written in Go and is open-source, \navailable on GitHub at https://github.com/ellie/atuin. "
_github: https://github.com/ellie/atuin
_name: Atuin
_preload: true
_short: "Atuin is a command-line tool for managing macOS windows. "
brew: atuin
cargo: atuin
pacman: atuin
pkg-termux: atuin
port: atuin
audacity:
_app: Audacity.app
_bin: audacity
_deprecated: Unneeded
_desc: An open-source audio editor
_docs: https://support.audacityteam.org/
_github: https://github.com/audacity/audacity
_home: https://www.audacityteam.org/
_name: Audacity
_short: "Audacity is an open-source audio editing software for recording and editing sounds. "
appimage: Audacity
apt: audacity
cask: audacity
choco: audacity
dnf: audacity
flatpak: org.audacityteam.Audacity
scoop: extras/audacity
snap: audacity
auto-install:
_bin: auto-install
_desc: "[auto-install](https://github.com/siddharthkp/auto-install) installs dependencies as you code"
_docs: https://github.com/siddharthkp/auto-install
_github: https://github.com/siddharthkp/auto-install
_home: https://github.com/siddharthkp/auto-install
_name: auto-install
_short: "auto-install is a tool that automatically installs dependencies for your Node.js projects based on the packages you import in your code. "
npm: auto-install
autodoc:
_bin: doc
_desc: "AutoDoc is a tool developed by Context Labs available on GitHub at https://github.com/context-labs/autodoc. It is designed to automatically generate API documentation from source code comments. This \ntool can help streamline the documentation process by extracting information from code comments and presenting it in a structured format. It supports various programming languages and can be a useful \ntool for developers looking to maintain up-to-date and consistent API documentation alongside their codebase. "
_github: https://github.com/context-labs/autodoc
_name: Autodoc
_short: "AutoDoc is a tool for generating API documentation from source code comments. "
npm: "@context-labs/autodoc"
autokey:
_bin: null
_desc: "[AutoKey](https://github.com/autokey/autokey) is a free, open-source scripting application for Linux. AutoKey allows the user to define hotkeys and trigger phrases which expand to predefined text, automating frequent or repetitive tasks such as correcting typographical errors or common spelling mistakes and inserting boiler plate sections of text. [AutoHotKey](https://www.autohotkey.com/) is a similar piece of software that is only available on the Windows platform."
_docs: https://autokey.github.io/
_github: https://github.com/autokey/autokey
_home: https://code.google.com/archive/p/autokey/
_name: Autokey
_short: "AutoKey is a powerful automation tool for keyboard shortcuts and text expansion on Linux and Unix-like systems. "
apt: autokey
choco: autohotkey
dnf: autokey
yay: autokey-gtk
automake:
_bin: automake
_desc: "[GNU Automake](https://www.gnu.org/software/automake/) is a tool for automatically generating Makefile.in files compliant with the GNU Coding Standards"
_docs: https://www.gnu.org/software/automake/manual/automake.html
_github: false
_home: https://www.gnu.org/software/automake/
_name: GNU Automake
apk: automake
apt: automake
brew: automake
dnf: automake
pacman: automake
pkg: automake
autorestic:
_bin: autorestic
_desc: "[Autorestic](https://autorestic.vercel.app/) is a wrapper around [Restic](https://restic.net/). The Restic CLI can be a bit overwhelming and difficult to manage if you have many different location that you want to backup to multiple locations. Autorestic makes managing all your S3 backups easier by making it config / cron driven."
_docs: https://autorestic.vercel.app/quick
_github: https://github.com/cupcakearmy/autorestic/
_home: https://autorestic.vercel.app/
_name: Autorestic
_preload: true
_short: "AutoRestic is a tool that simplifies and automates backups using Restic, a fast, secure, and efficient backup program. "
brew: autorestic
aws-shell:
_bin: aws-shell
_desc: An integrated shell for working with the AWS CLI.
_docs: https://github.com/awslabs/aws-shell
_github: https://github.com/awslabs/aws-shell
_home: https://pypi.org/project/aws-shell/
_name: AWS Shell
_short: "aws-shell is an interactive command-line interface for AWS services, allowing users to manage their AWS resources directly from the terminal. "
brew: aws-shell
pipx: aws-shell
awscli:
_bin: aws
_desc: The [AWS CLI](https://aws.amazon.com/cli/) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.
_docs: https://docs.aws.amazon.com/cli/index.html
_github: https://github.com/aws/aws-cli
_home: https://aws.amazon.com/
_name: AWS CLI
_short: "AWS CLI is a unified tool to manage AWS services through the command line. "
binary:darwin: https://awscli.amazonaws.com/AWSCLIV2.pkg
binary:linux: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
binary:windows: https://awscli.amazonaws.com/AWSCLIV2.msi
brew: awscli@2
choco: awscli
awxcli:
_bin: awx
_desc: "[ansible-tower-cli](https://docs.ansible.com/ansible-tower/latest/html/towercli/index.html) is a CLI program that interacts with Ansible Tower or AWX. It is the official command-line client for both Ansible Tower and AWX. It uses naming and structure consistent with the AWX HTTP API, provides consistent output formats with optional machine-parsable formats, and auto-detects API versions, available endpoints, and feature support."
_docs: https://docs.ansible.com/ansible-tower/latest/html/towercli/index.html
_github: https://github.com/ansible/awx
_home: https://docs.ansible.com/automation.html
_name: AWX CLI
_short: "AWX is an open-source automation platform that provides a web-based user interface, REST API, and task engine built on top of Ansible. "
pipx: https://releases.ansible.com/ansible-tower/cli/ansible-tower-cli-latest.tar.gz
axel:
_bin: axel
_desc: "Axel is a lightweight command-line download accelerator for Linux and Unix-like systems. It splits downloads into multiple parts and downloads them simultaneously, which can result in faster download \nspeeds. It supports HTTP, HTTPS, and FTP protocols, allows for resuming interrupted downloads, and provides progress indicators during downloads. Axel is known for its simplicity and efficiency in \nspeeding up file downloads, making it a popular choice for users looking to optimize their download speeds from the command line. "
_github: https://github.com/axel-download-accelerator/axel
_name: Axel
_short: "Axel is a command-line download accelerator for Linux and Unix-like systems. "
apt: axel
brew: axel
choco: axel
dnf:fedora: axel
pacman: axel
port: axel
azure-cli:
_bin: az
_desc: The [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/) is a set of commands used to create and manage Azure resources. The Azure CLI is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation. It is the official CLI, released by Microsoft.
_docs: https://docs.microsoft.com/en-us/cli/azure/
_github: https://github.com/Azure/azure-cli
_home: https://azure.microsoft.com/
_name: Azure CLI
_short: "Azure CLI is a command-line tool for managing Azure resources. "
brew: azure-cli
choco: azure-cli
winget: Microsoft.AzureCLI
yay: azure-cli
azure-functions:
_bin: func
_desc: "[azure-functions-core-tools](https://github.com/Azure/azure-functions-core-tools) A local development experience for creating, developing, testing, running, and debugging Azure Functions"
_github: https://github.com/Azure/azure-functions-core-tools
_name: azure-functions-core-tools
_short: "Azure Functions Core Tools is a command-line interface for Azure Functions, enabling local development and testing of serverless functions. "
brew: azure/functions/azure-functions-core-tools@4
choco: azure-functions-core-tools
github: github.com/Azure/azure-functions-core-tools
npm: azure-functions-core-tools@4
backup:
_bin: backup
_desc: "Backup is an open-source Ruby gem that provides a DSL for performing backups and restoring data. It supports various storage destinations like Amazon S3, Dropbox, FTP, and more. Backup allows you to \nschedule backups, encrypt data, and perform database backups for MySQL, PostgreSQL, and MongoDB. It also supports notifications via email or Slack. It's a versatile tool for automating backup processes \nin a customizable and efficient manner. "
_github: https://github.com/backup/backup
_name: Backup
_short: "Backup is an open-source backup system for Unix-like systems, including macOS. It allows you to easily perform backups and store them on various cloud storage services. "
gem: backup -v5.0.0.beta.1
balenaetcher:
_app: balenaEtcher.app
_appImageName: balenaEtcher.AppImage
_bin: balena-etcher
_desc: "[balenaEtcher](https://www.balena.io/etcher/) is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects from accidentally writing to hard-drives, ensures every byte of data was written correctly, and much more. It can also directly flash Raspberry Pi devices that support USB device boot mode. It will run on any platform officially supported by Electron."
_docs: https://www.balena.io/docs/learn/welcome/introduction/
_github: https://github.com/balena-io/etcher
_home: https://www.balena.io/etcher/
_name: balenaEtcher
_short: "Etcher is an open-source tool for burning images to SD cards and USB drives, making it easy to create bootable media for operating systems like Linux distributions or Raspberry Pi OS. "
appimage: etcher
cask: balenaetcher
choco: etcher
yay: balena-etcher
bandwhich:
_bin: bandwhich
_desc: "[Bandwhich](https://github.com/imsnif/bandwhich) is a CLI utility for displaying current network utilization by process, connection and remote IP/hostname."
_github: https://github.com/imsnif/bandwhich
_name: Bandwhich
_short: "bandwhich is a terminal bandwidth utilization tool for Linux and macOS. "
brew: bandwhich
github: github.com/imsnif/bandwhich
pacman: bandwhich
pkg: bandwhich
bane:
_bin: bane
_desc: "[bane](https://github.com/genuinetools/bane) Custom & better AppArmor profile generator for Docker containers"
_github: https://github.com/genuinetools/bane
_name: bane
_short: "Bane is a tool for testing network services and applications for security vulnerabilities. "
github: github.com/genuinetools/bane
go: github.com/genuinetools/bane@latest
barrier:
_app: Barrier.app
_bin: barrier
_desc: "Barrier is an open-source software that allows you to share your mouse and keyboard between multiple computers with different operating systems. It enables you to control multiple machines with a single\nset of input devices seamlessly. Barrier supports Windows, macOS, and Linux operating systems, making it a versatile tool for users who work across different platforms. It is a convenient solution for \nstreamlining workflows and improving productivity by eliminating the need for multiple sets of input devices. "
_github: https://github.com/debauchee/barrier
_name: Barrier
_short: "Barrier is an open-source software that allows you to share your mouse and keyboard between multiple computers. "
_todo: TODO
cask: barrier
choco: barrier
flatpak: com.github.debauchee.barrier
bash-completion:
_bin: bash-completion
_desc: "bash-completion is a project on GitHub that provides programmable completion for the Bash shell. It offers completion scripts for various commands, making it easier for users to quickly and accurately \ncomplete command line inputs. These scripts enhance the usability of the Bash shell by providing suggestions and auto-completion for commands, options, and arguments. The project is actively maintained \nand allows users to contribute their own completion scripts for different commands and utilities. It's a useful tool for improving productivity and efficiency when working in a Bash environment. "
_docs: https://docs.brew.sh/Shell-Completion
_github: https://github.com/scop/bash-completion
_name: Bash Completion Formula
_preload: true
_short: "bash-completion is a tool for enhancing tab completion in the Bash shell. "
apt: bash-completion
brew: bash-completion@2
dnf: bash-completion
pacman: bash-completion
bashly:
_bin: bashly
_desc: "Bashly is a tool that helps in creating Bash command-line applications with ease. It allows developers to define the structure of their command-line interface using a simple configuration file, which is\nthen used to generate the necessary Bash scripts. This simplifies the process of building complex command-line applications in Bash by abstracting away the repetitive tasks involved in handling \narguments, flags, and commands. Bashly also provides features like auto-generated help menus, error handling, and tab completion. It is a useful tool for developers looking to create robust command-line\napplications in Bash efficiently. "
_github: https://github.com/DannyBen/bashly
_name: Bashly
_short: "bashly is a tool for creating Bash command-line applications with ease. "
gem: bashly
basictex:
_github: false
_name: Basictex
_when: "! test -d /Library/TeX"
cask: basictex
code2prompt:
_bin: code2prompt
_desc: Converts git repository or folder to LLM digestible markdown file
_github: https://github.com/mufeedvh/code2prompt
_name: code2prompt
cargo: code2prompt
yay: code2prompt
nix-env: nixpkgs.code2prompt
bat:
_bin: bat
_desc: "[bat](https://github.com/sharkdp/bat) is a cat(1) clone with syntax highlighting and Git integration."
_github: https://github.com/sharkdp/bat
_name: bat
_preload: true
_short: "bat is a cat(1) clone with syntax highlighting and Git integration. "
apk: bat
apt: bat
brew: bat
cargo: bat
choco: bat
pacman: bat
pkg: bat
port: bat
scoop: bat
zypper: bat
bat-extras:
_bin: batman
_desc: "bat-extras is a collection of additional scripts and utilities that extend the functionality of the bat command-line tool. These extras include features like syntax highlighting for more file types, \nintegration with version control systems like Git, and additional customization options. It enhances the user experience when viewing and working with files in the terminal using bat. You can find more \ndetails and installation instructions on the GitHub repository: bat-extras. "
_github: https://github.com/eth-p/bat-extras
_name: Bat Extras
_preload: true
_short: "bat-extras is a collection of additional scripts and functions for the bat command-line tool, enhancing its functionality on Unix-like systems. "
brew: bat-extras
emerge: sys-apps/bat-extras
pacman: bat-extras
bats:
_bin: bats
_desc: "bats-core is a GitHub repository for Bats (Bash Automated Testing System), a TAP-compliant testing framework for Bash and POSIX shell scripts. It provides a simple way to verify that the UNIX programs \nyou write behave as expected. The repository contains the source code, documentation, and issues related to the Bats project. Users can contribute to the project, report bugs, and access the latest \nreleases and updates for Bats testing framework. "
_github: https://github.com/bats-core/bats-core
_name: Bats Bash Testing
_short: "bats-core is a TAP-compliant testing framework for Bash. "
brew: bats-core
npm: bats
bazelisk:
_bin: bazelisk
_desc: A user-friendly launcher for Bazel.
_docs: https://bazel.build/docs
_github: https://github.com/bazelbuild/bazelisk
_home: https://bazel.build/
_name: Bazel
_short: "Bazelisk is a tool that manages different versions of Bazel, a build system developed by Google. It automatically downloads and uses the correct Bazel version specified for a project, simplifying the \nsetup process for developers. "
brew: bazelisk
choco: bazelisk
go: github.com/bazelbuild/bazelisk@latest
npm: "@bazel/bazelisk"
scoop: main/bazel
beekeeper-studio:
_app: Beekeeper Studio.app
_bin: beekeeper-studio
_desc: "Beekeeper Studio is an open-source SQL editor and database manager that supports various databases like MySQL, PostgreSQL, SQLite, and more. It provides a user-friendly interface for executing SQL \nqueries, managing database connections, and viewing query results. Beekeeper Studio offers features like syntax highlighting, auto-completion, and the ability to save queries. It is designed to be \nintuitive and easy to use for both beginners and experienced users in database management. The project is actively maintained on GitHub and welcomes contributions from the community. "
_github: https://github.com/beekeeper-studio/beekeeper-studio
_name: Beekeeper Studio
_short: "Beekeeper Studio is an open-source SQL editor and database manager for MacOS. "
cask: beekeeper-studio
choco: beekeeper-studio
flatpak: io.beekeeperstudio.Studio
beets:
_bin: beet
_desc: The purpose of [Beets](https://beets.io/) is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.
_docs: https://beets.readthedocs.io/en/stable/
_github: https://github.com/beetbox/beets
_home: https://beets.io/
_name: Beets
_short: "Beets is a music library manager and tagger for organizing your music collection efficiently. "
pipx: beets
betwixt:
_app: Betwixt.app
_bin: betwixt
_desc: Web Debugging Proxy based on Chrome DevTools Network panel
_docs: https://github.com/kdzwinel/betwixt
_github: https://github.com/kdzwinel/betwixt
_home: https://github.com/kdzwinel/betwixt
_name: Betwixt
_short: "Betwixt is a web debugging proxy based on Chrome DevTools Network panel with a focus on simplicity and ease of use. "
cask: betwixt
bfg:
_bin: bfg
_desc: "BFG Repo-Cleaner is a tool designed to remove large or problematic files from Git repositories. It's particularly useful for cleaning up repositories before sharing or migrating them. The tool operates \nmuch faster than Git's built-in filter-branch and offers a simpler syntax for specifying files to be removed. It can help reduce the size of repositories by eliminating unwanted files and history, \nmaking them more manageable. BFG Repo-Cleaner is commonly used for tasks like removing sensitive data, large binaries, or other unwanted files from Git history. "
_docs: https://rtyley.github.io/bfg-repo-cleaner/
_github: https://github.com/rtyley/bfg-repo-cleaner
_home: https://rtyley.github.io/bfg-repo-cleaner/
_name: BFG Repo Cleaner
_short: "BFG Repo-Cleaner is a fast, simpler alternative to git-filter-branch for removing large files or sensitive data from Git repositories. "
brew: bfg
choco: bfg-repo-cleaner
port: bfg
bin:
_bin: bin
_desc: Effortless binary manager
_github: https://github.com/marcosnils/bin
_name: bin
_short: "bin is a collection of useful scripts and tools for macOS users, maintained by Marcos Nil. "
github: github.com/marcosnils/bin
go: github.com/marcosnils/bin@latest
binwalk:
_bin: binwalk
_desc: "Binwalk is a popular tool for analyzing, reverse engineering, and extracting firmware images. It can identify embedded files and executable code within firmware images, making it useful for security \nanalysis and vulnerability research. Binwalk supports various file formats commonly found in firmware, including compressed files, executables, and more. It provides detailed information about the \ncontents of firmware images, allowing users to understand the structure and components of embedded systems. Binwalk is widely used in the cybersecurity community for analyzing IoT devices, routers, and \nother embedded systems. "
_github: https://github.com/ReFirmLabs/binwalk
_name: Binwalk
_short: "Binwalk is a tool for analyzing, reverse engineering, and extracting firmware images. "
apt: binwalk
brew: binwalk
choco: binwalk
dnf: binwalk
pacman: binwalk
bismuth:
_bin: bismuth
_desc: "Bismuth is a blockchain platform that focuses on simplicity and modularity. It aims to provide a secure and decentralized environment for applications and smart contracts. The project on GitHub contains\nthe source code, documentation, and resources related to the Bismuth blockchain. Developers can contribute to the project, explore the codebase, and learn about the technology behind Bismuth. It's a \nvaluable resource for those interested in blockchain development and decentralized applications. "
_github: https://github.com/Bismuth-Forge/bismuth
_name: Bismuth
_short: "Bismuth is a blockchain platform that focuses on modularity and customization for developers. "
apt: kwin-bismuth
dnf: bismuth
pacman: kwin-bismuth
bitly:
_bin: bitly
_desc: Shorten links with Bitly in your terminal!
_github: https://github.com/xxczaki/bitly-cli-client
_name: bitly
_short: "bitly-cli-client is a command-line interface (CLI) tool for shortening URLs using the Bitly service. "
npm: bitly-cli-client
bitwarden:
_app: Bitwarden.app
_bin: bitwarden
_desc: The desktop vault (Windows, macOS, & Linux)
_github: https://github.com/bitwarden/desktop
_name: BitWarden
_short: "bitwarden/desktop is a secure and open-source password manager for desktop platforms. "
cask: bitwarden