machineconfig 6.82__py3-none-any.whl → 7.98__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- machineconfig/cluster/remote/cloud_manager.py +1 -1
- machineconfig/cluster/sessions_managers/utils/maker.py +25 -13
- machineconfig/cluster/sessions_managers/wt_local.py +16 -221
- machineconfig/cluster/sessions_managers/wt_local_manager.py +55 -193
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +42 -198
- machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py +52 -0
- machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py +50 -0
- machineconfig/cluster/sessions_managers/wt_utils/status_reporting.py +76 -0
- machineconfig/cluster/sessions_managers/wt_utils/wt_helpers.py +199 -0
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +3 -1
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +3 -2
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +2 -2
- machineconfig/jobs/installer/custom/boxes.py +2 -2
- machineconfig/jobs/installer/custom/hx.py +75 -18
- machineconfig/jobs/installer/custom/yazi.py +119 -0
- machineconfig/jobs/installer/custom_dev/brave.py +5 -3
- machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
- machineconfig/jobs/installer/custom_dev/code.py +4 -1
- machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerdfont.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +27 -22
- machineconfig/jobs/installer/custom_dev/sysabc.py +139 -0
- machineconfig/jobs/installer/custom_dev/wezterm.py +2 -19
- machineconfig/jobs/installer/custom_dev/winget.py +10 -14
- machineconfig/jobs/installer/installer_data.json +1287 -216
- machineconfig/jobs/installer/linux_scripts/q.sh +10 -7
- machineconfig/jobs/installer/linux_scripts/redis.sh +1 -0
- machineconfig/jobs/installer/package_groups.py +58 -89
- machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
- machineconfig/logger.py +0 -1
- machineconfig/profile/create_helper.py +43 -16
- machineconfig/profile/create_links.py +2 -1
- machineconfig/profile/create_links_export.py +64 -18
- machineconfig/profile/create_shell_profile.py +78 -127
- machineconfig/profile/mapper.toml +15 -8
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/linux/wrap_mcfg +46 -0
- machineconfig/scripts/nu/wrap_mcfg.nu +69 -0
- machineconfig/scripts/python/agents.py +52 -37
- machineconfig/scripts/python/ai/initai.py +1 -1
- machineconfig/scripts/python/ai/scripts/command_runner.ps1 +33 -0
- machineconfig/scripts/python/ai/{command_runner → scripts}/command_runner.sh +1 -1
- machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Thinking-Beast-Mode.chatmode.md → agents/Thinking-Beast-Mode.agent.md} +0 -1
- machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md → agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md} +0 -1
- machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/deepResearch.chatmode.md → agents/deepResearch.agent.md} +2 -2
- machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +5 -5
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +4 -0
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md +20 -0
- machineconfig/scripts/python/ai/solutions/generic.py +1 -1
- machineconfig/scripts/python/ai/{generate_files.py → utils/generate_files.py} +2 -2
- machineconfig/scripts/python/ai/{vscode_tasks.py → utils/vscode_tasks.py} +7 -2
- machineconfig/scripts/python/croshell.py +77 -78
- machineconfig/scripts/python/devops.py +39 -21
- machineconfig/scripts/python/devops_navigator.py +0 -4
- machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/fire_jobs.py +84 -115
- machineconfig/scripts/python/ftpx.py +42 -16
- machineconfig/scripts/python/helpers/ast_search.py +74 -0
- machineconfig/scripts/python/helpers/qr_code.py +166 -0
- machineconfig/scripts/python/helpers/repo_rag.py +325 -0
- machineconfig/scripts/python/helpers/run_py_script.py +79 -0
- machineconfig/scripts/python/helpers/symantic_search.py +25 -0
- machineconfig/scripts/python/helpers/tmp_py_scripts/a.py +26 -0
- machineconfig/scripts/python/{helpers_fire → helpers_agents}/agentic_frameworks/fire_crush.json +1 -1
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py +39 -0
- machineconfig/scripts/python/{helpers_fire → helpers_agents}/agentic_frameworks/fire_cursor_agents.py +3 -4
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py +55 -0
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +30 -0
- machineconfig/scripts/python/{helpers_fire → helpers_agents}/fire_agents_help_launch.py +32 -13
- machineconfig/scripts/python/{helpers_fire → helpers_agents}/fire_agents_helper_types.py +11 -14
- machineconfig/scripts/python/helpers_agents/templates/prompt.txt +10 -0
- machineconfig/scripts/python/helpers_agents/templates/template.sh +32 -0
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py +19 -17
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
- machineconfig/scripts/python/helpers_croshell/crosh.py +3 -3
- machineconfig/scripts/python/helpers_croshell/start_slidev.py +6 -7
- machineconfig/scripts/python/helpers_devops/cli_config.py +46 -61
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +67 -55
- machineconfig/scripts/python/helpers_devops/cli_nw.py +157 -16
- machineconfig/scripts/python/helpers_devops/cli_repos.py +55 -21
- machineconfig/scripts/python/helpers_devops/cli_self.py +98 -48
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +137 -0
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +80 -42
- machineconfig/scripts/python/helpers_devops/{cli_terminal.py → cli_share_terminal.py} +15 -17
- machineconfig/scripts/python/helpers_devops/cli_utils.py +3 -128
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
- machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
- machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py +1 -1
- machineconfig/scripts/python/{helpers_fire/helpers4.py → helpers_fire_command/file_wrangler.py} +56 -20
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +26 -16
- machineconfig/scripts/python/helpers_msearch/__init__.py +5 -0
- machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfg +3 -3
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +59 -0
- machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
- machineconfig/scripts/python/helpers_network/address.py +132 -0
- machineconfig/scripts/python/{nw → helpers_network}/devops_add_ssh_key.py +24 -5
- machineconfig/scripts/python/{nw → helpers_network}/mount_nfs +0 -1
- machineconfig/scripts/python/{nw → helpers_network}/mount_nfs.py +2 -2
- machineconfig/scripts/python/{nw → helpers_network}/mount_ssh.py +1 -1
- machineconfig/scripts/python/{nw → helpers_network}/ssh_debug_linux.py +7 -7
- machineconfig/scripts/python/{nw → helpers_network}/ssh_debug_windows.py +4 -4
- machineconfig/scripts/python/{nw → helpers_network}/wifi_conn.py +1 -53
- machineconfig/scripts/python/{nw → helpers_network}/wsl_windows_transfer.py +3 -2
- machineconfig/scripts/python/helpers_repos/clone.py +0 -1
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +46 -19
- machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
- machineconfig/scripts/python/helpers_repos/grource.py +1 -1
- machineconfig/scripts/python/helpers_repos/record.py +2 -1
- machineconfig/scripts/python/helpers_repos/repo_analyzer_1.py +160 -0
- machineconfig/scripts/python/helpers_repos/{count_lines.py → repo_analyzer_2.py} +113 -192
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +20 -13
- machineconfig/scripts/python/helpers_utils/download.py +150 -0
- machineconfig/scripts/python/helpers_utils/path.py +185 -0
- machineconfig/scripts/python/interactive.py +19 -26
- machineconfig/scripts/python/{mcfg.py → mcfg_entry.py} +10 -0
- machineconfig/scripts/python/msearch.py +71 -0
- machineconfig/scripts/python/sessions.py +94 -25
- machineconfig/scripts/python/terminal.py +133 -0
- machineconfig/scripts/python/utils.py +28 -30
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/scripts/windows/wrap_mcfg.ps1 +63 -0
- machineconfig/settings/broot/conf.toml +1 -1
- machineconfig/settings/helix/config.toml +16 -0
- machineconfig/settings/helix/languages.toml +13 -4
- machineconfig/settings/helix/yazi-picker.sh +12 -0
- machineconfig/settings/lf/linux/exe/lfcd.sh +1 -0
- machineconfig/settings/lf/linux/exe/previewer.sh +3 -2
- machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
- machineconfig/settings/lf/windows/lfrc +14 -16
- machineconfig/settings/marimo/marimo.toml +1 -1
- machineconfig/settings/marimo/snippets/globalize.py +34 -0
- machineconfig/settings/shells/bash/init.sh +43 -11
- machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +1 -1
- machineconfig/settings/shells/nushell/config.nu +2 -32
- machineconfig/settings/shells/nushell/env.nu +45 -6
- machineconfig/settings/shells/nushell/init.nu +314 -0
- machineconfig/settings/shells/pwsh/init.ps1 +40 -14
- machineconfig/settings/shells/starship/starship.toml +16 -0
- machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
- machineconfig/settings/shells/wt/settings.json +14 -5
- machineconfig/settings/shells/zsh/init.sh +17 -19
- machineconfig/settings/television/cable_unix/alias.toml +8 -0
- machineconfig/settings/television/cable_unix/aws-buckets.toml +14 -0
- machineconfig/settings/television/cable_unix/aws-instances.toml +13 -0
- machineconfig/settings/television/cable_unix/bash-history.toml +8 -0
- machineconfig/settings/television/cable_unix/channels.toml +19 -0
- machineconfig/settings/television/cable_unix/dirs.toml +13 -0
- machineconfig/settings/television/cable_unix/distrobox-list.toml +42 -0
- machineconfig/settings/television/cable_unix/docker-images.toml +13 -0
- machineconfig/settings/television/cable_unix/dotfiles.toml +11 -0
- machineconfig/settings/television/cable_unix/env.toml +17 -0
- machineconfig/settings/television/cable_unix/files.toml +11 -0
- machineconfig/settings/television/cable_unix/fish-history.toml +8 -0
- machineconfig/settings/television/cable_unix/git-branch.toml +11 -0
- machineconfig/settings/television/cable_unix/git-diff.toml +10 -0
- machineconfig/settings/television/cable_unix/git-log.toml +12 -0
- machineconfig/settings/television/cable_unix/git-reflog.toml +12 -0
- machineconfig/settings/television/cable_unix/git-repos.toml +16 -0
- machineconfig/settings/television/cable_unix/guix.toml +20 -0
- machineconfig/settings/television/cable_unix/just-recipes.toml +18 -0
- machineconfig/settings/television/cable_unix/k8s-deployments.toml +36 -0
- machineconfig/settings/television/cable_unix/k8s-pods.toml +50 -0
- machineconfig/settings/television/cable_unix/k8s-services.toml +36 -0
- machineconfig/settings/television/cable_unix/man-pages.toml +24 -0
- machineconfig/settings/television/cable_unix/nu-history.toml +7 -0
- machineconfig/settings/television/cable_unix/procs.toml +20 -0
- machineconfig/settings/television/cable_unix/text.toml +17 -0
- machineconfig/settings/television/cable_unix/tldr.toml +18 -0
- machineconfig/settings/television/cable_unix/zsh-history.toml +9 -0
- machineconfig/settings/television/cable_windows/alias.toml +7 -0
- machineconfig/settings/television/cable_windows/dirs.toml +13 -0
- machineconfig/settings/television/cable_windows/docker-images.toml +13 -0
- machineconfig/settings/television/cable_windows/dotfiles.toml +11 -0
- machineconfig/settings/television/cable_windows/env.toml +17 -0
- machineconfig/settings/television/cable_windows/files.toml +14 -0
- machineconfig/settings/television/cable_windows/git-branch.toml +11 -0
- machineconfig/settings/television/cable_windows/git-diff.toml +10 -0
- machineconfig/settings/television/cable_windows/git-log.toml +11 -0
- machineconfig/settings/television/cable_windows/git-reflog.toml +11 -0
- machineconfig/settings/television/cable_windows/git-repos.toml +15 -0
- machineconfig/settings/television/cable_windows/nu-history.toml +7 -0
- machineconfig/settings/television/cable_windows/pwsh-history.toml +6 -0
- machineconfig/settings/television/cable_windows/text.toml +17 -0
- machineconfig/settings/yazi/init.lua +61 -0
- machineconfig/settings/yazi/keymap_linux.toml +94 -0
- machineconfig/settings/yazi/keymap_windows.toml +78 -0
- machineconfig/settings/yazi/shell/yazi_cd.ps1 +33 -0
- machineconfig/settings/yazi/shell/yazi_cd.sh +8 -0
- machineconfig/settings/yazi/theme.toml +4 -0
- machineconfig/settings/yazi/yazi_linux.toml +84 -0
- machineconfig/settings/yazi/yazi_windows.toml +58 -0
- machineconfig/setup_linux/__init__.py +2 -1
- machineconfig/setup_linux/web_shortcuts/interactive.sh +27 -12
- machineconfig/setup_linux/web_shortcuts/live_from_github.sh +31 -0
- machineconfig/setup_mac/__init__.py +2 -3
- machineconfig/setup_mac/apps_gui.sh +248 -0
- machineconfig/setup_windows/__init__.py +3 -3
- machineconfig/setup_windows/uv.ps1 +8 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +26 -11
- machineconfig/setup_windows/web_shortcuts/live_from_github.ps1 +30 -0
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +17 -0
- machineconfig/utils/accessories.py +7 -4
- machineconfig/utils/code.py +99 -32
- machineconfig/utils/files/ascii_art.py +1 -1
- machineconfig/utils/files/headers.py +3 -2
- machineconfig/utils/installer_utils/github_release_bulk.py +156 -119
- machineconfig/utils/installer_utils/install_from_url.py +183 -0
- machineconfig/utils/installer_utils/installer_class.py +42 -99
- machineconfig/utils/installer_utils/installer_cli.py +175 -0
- machineconfig/utils/installer_utils/installer_helper.py +129 -0
- machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +36 -85
- machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +16 -61
- machineconfig/utils/io.py +69 -1
- machineconfig/utils/links.py +56 -38
- machineconfig/utils/meta.py +33 -18
- machineconfig/utils/options.py +46 -18
- machineconfig/utils/options_tv.py +119 -0
- machineconfig/utils/path_extended.py +44 -95
- machineconfig/utils/path_helper.py +76 -23
- machineconfig/utils/procs.py +1 -1
- machineconfig/utils/scheduler.py +20 -53
- machineconfig/utils/scheduling.py +0 -2
- machineconfig/utils/schemas/fire_agents/fire_agents_input.py +1 -1
- machineconfig/utils/schemas/layouts/layout_types.py +1 -1
- machineconfig/utils/ssh.py +159 -412
- machineconfig/utils/ssh_utils/abc.py +5 -0
- machineconfig/utils/ssh_utils/copy_from_here.py +111 -0
- machineconfig/utils/ssh_utils/copy_to_here.py +302 -0
- machineconfig/utils/ssh_utils/utils.py +142 -0
- machineconfig/utils/ssh_utils/wsl.py +210 -0
- machineconfig/utils/terminal.py +1 -0
- machineconfig/utils/upgrade_packages.py +104 -28
- machineconfig/utils/ve.py +12 -4
- machineconfig-7.98.dist-info/METADATA +132 -0
- {machineconfig-6.82.dist-info → machineconfig-7.98.dist-info}/RECORD +259 -196
- {machineconfig-6.82.dist-info → machineconfig-7.98.dist-info}/entry_points.txt +4 -1
- machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
- machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -71
- machineconfig/jobs/installer/powershell_scripts/archive_pygraphviz.ps1 +0 -12
- machineconfig/scripts/linux/fzf2g +0 -21
- machineconfig/scripts/linux/fzfag +0 -17
- machineconfig/scripts/linux/fzffg +0 -25
- machineconfig/scripts/linux/fzfrga +0 -21
- machineconfig/scripts/linux/mcfgs +0 -38
- machineconfig/scripts/linux/other/share_smb +0 -1
- machineconfig/scripts/linux/skrg +0 -4
- machineconfig/scripts/linux/warp-cli.sh +0 -122
- machineconfig/scripts/linux/z_ls +0 -104
- machineconfig/scripts/python/ai/command_runner/prompt.txt +0 -9
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_crush.py +0 -37
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_gemini.py +0 -44
- machineconfig/scripts/python/helpers_fire/agentic_frameworks/fire_qwen.py +0 -43
- machineconfig/scripts/python/helpers_fire/prompt.txt +0 -2
- machineconfig/scripts/python/helpers_fire/template.sh +0 -15
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +0 -17
- machineconfig/scripts/python/helpers_repos/secure_repo.py +0 -15
- machineconfig/scripts/python/nw/add_ssh_key.py +0 -148
- machineconfig/scripts/windows/fzfb.ps1 +0 -3
- machineconfig/scripts/windows/fzfg.ps1 +0 -2
- machineconfig/scripts/windows/fzfrga.bat +0 -20
- machineconfig/scripts/windows/mcfgs.ps1 +0 -17
- machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
- machineconfig/settings/lf/windows/fzf_edit.ps1 +0 -6
- machineconfig/settings/lf/windows/tst.ps1 +0 -1
- machineconfig/settings/yazi/yazi.toml +0 -4
- machineconfig/setup_linux/apps.sh +0 -66
- machineconfig/setup_linux/others/cli_installation.sh +0 -137
- machineconfig/setup_mac/apps.sh +0 -73
- machineconfig/setup_windows/apps.ps1 +0 -62
- machineconfig/utils/installer_utils/installer.py +0 -225
- machineconfig-6.82.dist-info/METADATA +0 -82
- /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
- /machineconfig/scripts/python/{helpers_fire → ai/utils}/__init__.py +0 -0
- /machineconfig/scripts/python/{helpers_fire/agentic_frameworks → helpers_agents}/__init__.py +0 -0
- /machineconfig/scripts/python/{nw → helpers_agents/agentic_frameworks}/__init__.py +0 -0
- /machineconfig/scripts/python/{helpers_fire → helpers_agents}/fire_agents_help_search.py +0 -0
- /machineconfig/scripts/python/{helpers_fire → helpers_agents}/fire_agents_load_balancer.py +0 -0
- /machineconfig/scripts/python/{helpers_fire → helpers_agents/templates}/template.ps1 +0 -0
- /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py} +0 -0
- /machineconfig/{settings/yazi/keymap.toml → scripts/python/helpers_network/__init__.py} +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/devops_add_identity.py +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/mount_drive +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/mount_nw_drive +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/mount_nw_drive.py +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/mount_smb +0 -0
- /machineconfig/scripts/python/{nw → helpers_network}/onetimeshare.py +0 -0
- /machineconfig/scripts/{Restore-ThunderbirdProfile.ps1 → windows/mounts/Restore-ThunderbirdProfile.ps1} +0 -0
- /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
- /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
- {machineconfig-6.82.dist-info → machineconfig-7.98.dist-info}/WHEEL +0 -0
- {machineconfig-6.82.dist-info → machineconfig-7.98.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1",
|
|
3
3
|
"installers": [
|
|
4
|
+
{
|
|
5
|
+
"appName": "sysabc",
|
|
6
|
+
"repoURL": "CMD",
|
|
7
|
+
"doc": "ABC programs (package managers and other system essential tools)",
|
|
8
|
+
"fileNamePattern": {
|
|
9
|
+
"amd64": {
|
|
10
|
+
"linux": "sysabc.py",
|
|
11
|
+
"windows": "sysabc.py",
|
|
12
|
+
"macos": "sysabc.py"
|
|
13
|
+
},
|
|
14
|
+
"arm64": {
|
|
15
|
+
"linux": "sysabc.py",
|
|
16
|
+
"windows": "sysabc.py",
|
|
17
|
+
"macos": "sysabc.py"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"appName": "scrcpy",
|
|
23
|
+
"repoURL": "https://github.com/Genymobile/scrcpy",
|
|
24
|
+
"doc": "This application mirrors Android devices",
|
|
25
|
+
"fileNamePattern": {
|
|
26
|
+
"amd64": {
|
|
27
|
+
"linux": "scrcpy-linux-x86_64-v3.3.3.tar.gz",
|
|
28
|
+
"windows": "scrcpy-win64-v3.3.3.zip",
|
|
29
|
+
"macos": "scrcpy-macos-x86_64-v3.3.3.tar.gz"
|
|
30
|
+
},
|
|
31
|
+
"arm64": {
|
|
32
|
+
"linux": null,
|
|
33
|
+
"windows": null,
|
|
34
|
+
"macos": "scrcpy-macos-aarch64-v3.3.3.tar.gz"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
4
38
|
{
|
|
5
39
|
"appName": "fx",
|
|
6
40
|
"repoURL": "https://github.com/antonmedv/fx",
|
|
@@ -18,6 +52,23 @@
|
|
|
18
52
|
}
|
|
19
53
|
}
|
|
20
54
|
},
|
|
55
|
+
{
|
|
56
|
+
"appName": "git",
|
|
57
|
+
"repoURL": "CMD",
|
|
58
|
+
"doc": "🧙♂️ Distributed version control system",
|
|
59
|
+
"fileNamePattern": {
|
|
60
|
+
"amd64": {
|
|
61
|
+
"linux": "sudo nala install git",
|
|
62
|
+
"windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
63
|
+
"macos": "brew install git"
|
|
64
|
+
},
|
|
65
|
+
"arm64": {
|
|
66
|
+
"linux": "sudo nala install git",
|
|
67
|
+
"windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
68
|
+
"macos": "brew install git"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
21
72
|
{
|
|
22
73
|
"appName": "jq",
|
|
23
74
|
"repoURL": "https://github.com/jqlang/jq",
|
|
@@ -154,6 +205,40 @@
|
|
|
154
205
|
}
|
|
155
206
|
}
|
|
156
207
|
},
|
|
208
|
+
{
|
|
209
|
+
"appName": "mprocs",
|
|
210
|
+
"repoURL": "https://github.com/pvolok/mprocs",
|
|
211
|
+
"doc": "🖥️ Windows/Linux/macOS poorman's zellij",
|
|
212
|
+
"fileNamePattern": {
|
|
213
|
+
"amd64": {
|
|
214
|
+
"linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
|
|
215
|
+
"macos": "mprocs-{version}-darwin-x86_64.tar.gz",
|
|
216
|
+
"windows": "mprocs-{version}-windows-x86_64.zip"
|
|
217
|
+
},
|
|
218
|
+
"arm64": {
|
|
219
|
+
"linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
|
|
220
|
+
"macos": "mprocs-{version}-darwin-aarch64.tar.gz",
|
|
221
|
+
"windows": "mprocs-{version}-windows-x86_64.zip"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"appName": "process-compose",
|
|
227
|
+
"repoURL": "https://github.com/F1bonacc1/process-compose",
|
|
228
|
+
"doc": "Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized applications.",
|
|
229
|
+
"fileNamePattern": {
|
|
230
|
+
"amd64": {
|
|
231
|
+
"linux": "process-compose_linux_amd64.tar.gz",
|
|
232
|
+
"macos": "process-compose_darwin_amd64.tar.gz",
|
|
233
|
+
"windows": "process-compose_windows_amd64.zip"
|
|
234
|
+
},
|
|
235
|
+
"arm64": {
|
|
236
|
+
"linux": "process-compose_linux_arm.tar.gz",
|
|
237
|
+
"macos": "process-compose_darwin_arm64.tar.gz",
|
|
238
|
+
"windows": "process-compose_windows_arm64.zip"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
157
242
|
{
|
|
158
243
|
"appName": "zellij",
|
|
159
244
|
"repoURL": "https://github.com/zellij-org/zellij",
|
|
@@ -208,7 +293,7 @@
|
|
|
208
293
|
{
|
|
209
294
|
"appName": "croc",
|
|
210
295
|
"repoURL": "https://github.com/schollz/croc",
|
|
211
|
-
"doc": "🦎 Easily and securely send things from one computer to another",
|
|
296
|
+
"doc": "🦎 Easily and securely send and share things from one computer to another",
|
|
212
297
|
"fileNamePattern": {
|
|
213
298
|
"amd64": {
|
|
214
299
|
"linux": "croc_{version}_Linux-64bit.tar.gz",
|
|
@@ -273,6 +358,23 @@
|
|
|
273
358
|
}
|
|
274
359
|
}
|
|
275
360
|
},
|
|
361
|
+
{
|
|
362
|
+
"appName": "asciinema",
|
|
363
|
+
"repoURL": "https://github.com/asciinema/asciinema",
|
|
364
|
+
"doc": "🎥 Terminal session recorder",
|
|
365
|
+
"fileNamePattern": {
|
|
366
|
+
"amd64": {
|
|
367
|
+
"linux": "asciinema-x86_64-unknown-linux-gnu",
|
|
368
|
+
"windows": null,
|
|
369
|
+
"macos": "asciinema-x86_64-apple-darwin"
|
|
370
|
+
},
|
|
371
|
+
"arm64": {
|
|
372
|
+
"linux": null,
|
|
373
|
+
"windows": null,
|
|
374
|
+
"macos": null
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
},
|
|
276
378
|
{
|
|
277
379
|
"appName": "lolcatjs",
|
|
278
380
|
"repoURL": "CMD",
|
|
@@ -460,6 +562,40 @@
|
|
|
460
562
|
}
|
|
461
563
|
}
|
|
462
564
|
},
|
|
565
|
+
{
|
|
566
|
+
"appName": "cloudflare-warp",
|
|
567
|
+
"repoURL": "CMD",
|
|
568
|
+
"doc": "🌐 Cloudflare WARP VPN client",
|
|
569
|
+
"fileNamePattern": {
|
|
570
|
+
"amd64": {
|
|
571
|
+
"linux": null,
|
|
572
|
+
"windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
573
|
+
"macos": null
|
|
574
|
+
},
|
|
575
|
+
"arm64": {
|
|
576
|
+
"linux": null,
|
|
577
|
+
"windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
578
|
+
"macos": null
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"appName": "cloudflare-warp-cli",
|
|
584
|
+
"repoURL": "CMD",
|
|
585
|
+
"doc": "🌐 Cloudflare WARP VPN client in the terminal",
|
|
586
|
+
"fileNamePattern": {
|
|
587
|
+
"amd64": {
|
|
588
|
+
"linux": "cloudflare_warp_cli.py",
|
|
589
|
+
"windows": "cloudflare_warp_cli.py",
|
|
590
|
+
"macos": "cloudflare_warp_cli.py"
|
|
591
|
+
},
|
|
592
|
+
"arm64": {
|
|
593
|
+
"linux": "cloudflare_warp_cli.py",
|
|
594
|
+
"windows": "cloudflare_warp_cli.py",
|
|
595
|
+
"macos": "cloudflare_warp_cli.py"
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
},
|
|
463
599
|
{
|
|
464
600
|
"appName": "cpufetch",
|
|
465
601
|
"repoURL": "https://github.com/Dr-Noob/cpufetch",
|
|
@@ -562,6 +698,23 @@
|
|
|
562
698
|
}
|
|
563
699
|
}
|
|
564
700
|
},
|
|
701
|
+
{
|
|
702
|
+
"appName": "tv",
|
|
703
|
+
"repoURL": "https://github.com/alexpasmantier/television",
|
|
704
|
+
"doc": "🔍 A fast and hackable fuzzy finder for the terminal.",
|
|
705
|
+
"fileNamePattern": {
|
|
706
|
+
"amd64": {
|
|
707
|
+
"linux": "tv-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
708
|
+
"macos": "tv-{version}-x86_64-apple-darwin.tar.gz",
|
|
709
|
+
"windows": "tv-{version}-x86_64-pc-windows-msvc.zip"
|
|
710
|
+
},
|
|
711
|
+
"arm64": {
|
|
712
|
+
"linux": "tv-{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
713
|
+
"macos": "tv-{version}-aarch64-apple-darwin.tar.gz",
|
|
714
|
+
"windows": null
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
},
|
|
565
718
|
{
|
|
566
719
|
"appName": "gitui",
|
|
567
720
|
"repoURL": "https://github.com/gitui-org/gitui",
|
|
@@ -698,40 +851,6 @@
|
|
|
698
851
|
}
|
|
699
852
|
}
|
|
700
853
|
},
|
|
701
|
-
{
|
|
702
|
-
"appName": "mods",
|
|
703
|
-
"repoURL": "https://github.com/charmbracelet/mods/",
|
|
704
|
-
"doc": "🤖 AI for the command line, built for pipelines",
|
|
705
|
-
"fileNamePattern": {
|
|
706
|
-
"amd64": {
|
|
707
|
-
"linux": "mods_{version}_Linux_x86_64.tar.gz",
|
|
708
|
-
"macos": "mods_{version}_Darwin_x86_64.tar.gz",
|
|
709
|
-
"windows": "mods_{version}_Windows_x86_64.zip"
|
|
710
|
-
},
|
|
711
|
-
"arm64": {
|
|
712
|
-
"linux": "mods_{version}_Linux_arm64.tar.gz",
|
|
713
|
-
"macos": "mods_{version}_Darwin_arm64.tar.gz",
|
|
714
|
-
"windows": "mods_{version}_Windows_arm64.zip"
|
|
715
|
-
}
|
|
716
|
-
}
|
|
717
|
-
},
|
|
718
|
-
{
|
|
719
|
-
"appName": "mprocs",
|
|
720
|
-
"repoURL": "https://github.com/pvolok/mprocs",
|
|
721
|
-
"doc": "🖥️ Windows/Linux/macOS poorman's zellij",
|
|
722
|
-
"fileNamePattern": {
|
|
723
|
-
"amd64": {
|
|
724
|
-
"linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
|
|
725
|
-
"macos": "mprocs-{version}-darwin-x86_64.tar.gz",
|
|
726
|
-
"windows": "mprocs-{version}-windows-x86_64.zip"
|
|
727
|
-
},
|
|
728
|
-
"arm64": {
|
|
729
|
-
"linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
|
|
730
|
-
"macos": "mprocs-{version}-darwin-aarch64.tar.gz",
|
|
731
|
-
"windows": "mprocs-{version}-windows-x86_64.zip"
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
|
-
},
|
|
735
854
|
{
|
|
736
855
|
"appName": "ouch",
|
|
737
856
|
"repoURL": "https://github.com/ouch-org/ouch",
|
|
@@ -783,6 +902,40 @@
|
|
|
783
902
|
}
|
|
784
903
|
}
|
|
785
904
|
},
|
|
905
|
+
{
|
|
906
|
+
"appName": "meilisearch",
|
|
907
|
+
"repoURL": "https://github.com/meilisearch/meilisearch",
|
|
908
|
+
"doc": "🔍 symantic search at lightening speed",
|
|
909
|
+
"fileNamePattern": {
|
|
910
|
+
"amd64": {
|
|
911
|
+
"linux": "meilisearch-linux-amd64",
|
|
912
|
+
"macos": "meilisearch-macos-amd64",
|
|
913
|
+
"windows": "meilisearch-windows-amd64.exe"
|
|
914
|
+
},
|
|
915
|
+
"arm64": {
|
|
916
|
+
"linux": "meilisearch-linux-aarch64",
|
|
917
|
+
"macos": "meilisearch-macos-aarch64",
|
|
918
|
+
"windows": "meilisearch-windows-aarch64.exe"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"appName": "ast-grep",
|
|
924
|
+
"repoURL": "https://github.com/ast-grep/ast-grep",
|
|
925
|
+
"doc": "🔍 grep for code - search and rewrite code with ASTs",
|
|
926
|
+
"fileNamePattern": {
|
|
927
|
+
"amd64": {
|
|
928
|
+
"linux": "app-x86_64-unknown-linux-gnu.zip",
|
|
929
|
+
"macos": "app-x86_64-apple-darwin.zip",
|
|
930
|
+
"windows": "app-x86_64-pc-windows-msvc.zip"
|
|
931
|
+
},
|
|
932
|
+
"arm64": {
|
|
933
|
+
"linux": "app-aarch64-unknown-linux-gnu.zip",
|
|
934
|
+
"macos": "app-aarch64-apple-darwin.zip",
|
|
935
|
+
"windows": "app-aarch64-pc-windows-msvc.zip"
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
},
|
|
786
939
|
{
|
|
787
940
|
"appName": "rg",
|
|
788
941
|
"repoURL": "https://github.com/BurntSushi/ripgrep",
|
|
@@ -817,6 +970,23 @@
|
|
|
817
970
|
}
|
|
818
971
|
}
|
|
819
972
|
},
|
|
973
|
+
{
|
|
974
|
+
"appName": "parse",
|
|
975
|
+
"repoURL": "CMD",
|
|
976
|
+
"doc": "🔍 ripgrep + semantic search from https://github.com/run-llama/semtools",
|
|
977
|
+
"fileNamePattern": {
|
|
978
|
+
"amd64": {
|
|
979
|
+
"linux": "npm i -g @llamaindex/semtools",
|
|
980
|
+
"macos": "npm i -g @llamaindex/semtools",
|
|
981
|
+
"windows": "npm i -g @llamaindex/semtools"
|
|
982
|
+
},
|
|
983
|
+
"arm64": {
|
|
984
|
+
"linux": "npm i -g @llamaindex/semtools",
|
|
985
|
+
"macos": "npm i -g @llamaindex/semtools",
|
|
986
|
+
"windows": "npm i -g @llamaindex/semtools"
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
},
|
|
820
990
|
{
|
|
821
991
|
"appName": "starship",
|
|
822
992
|
"repoURL": "https://github.com/starship/starship",
|
|
@@ -885,10 +1055,27 @@
|
|
|
885
1055
|
}
|
|
886
1056
|
}
|
|
887
1057
|
},
|
|
1058
|
+
{
|
|
1059
|
+
"appName": "upterm",
|
|
1060
|
+
"repoURL": "https://github.com/owenthereal/upterm",
|
|
1061
|
+
"doc": "🌐 upterm is a terminal multiplexer that allows you to share your terminal session over the web.",
|
|
1062
|
+
"fileNamePattern": {
|
|
1063
|
+
"amd64": {
|
|
1064
|
+
"linux": "uptermd_linux_amd64.tar.gz",
|
|
1065
|
+
"macos": "upterm_darwin_amd64.tar.gz",
|
|
1066
|
+
"windows": null
|
|
1067
|
+
},
|
|
1068
|
+
"arm64": {
|
|
1069
|
+
"linux": "uptermd_linux_arm64.tar.gz",
|
|
1070
|
+
"macos": "upterm_darwin_arm64.tar.gz",
|
|
1071
|
+
"windows": null
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
888
1075
|
{
|
|
889
1076
|
"appName": "viu",
|
|
890
1077
|
"repoURL": "https://github.com/atanunq/viu",
|
|
891
|
-
"doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
|
|
1078
|
+
"doc": "🖼️ A cli image viewer for the terminal (like chafa & ueberzugpp but in Rust)",
|
|
892
1079
|
"fileNamePattern": {
|
|
893
1080
|
"amd64": {
|
|
894
1081
|
"linux": "viu-x86_64-unknown-linux-musl",
|
|
@@ -902,6 +1089,40 @@
|
|
|
902
1089
|
}
|
|
903
1090
|
}
|
|
904
1091
|
},
|
|
1092
|
+
{
|
|
1093
|
+
"appName": "timg",
|
|
1094
|
+
"repoURL": "CMD",
|
|
1095
|
+
"doc": "👁️ terminal image previewer.",
|
|
1096
|
+
"fileNamePattern": {
|
|
1097
|
+
"amd64": {
|
|
1098
|
+
"linux": "sudo apt install timg",
|
|
1099
|
+
"windows": null,
|
|
1100
|
+
"macos": "brew install timg"
|
|
1101
|
+
},
|
|
1102
|
+
"arm64": {
|
|
1103
|
+
"linux": "sudo apt install timg",
|
|
1104
|
+
"windows": null,
|
|
1105
|
+
"macos": "brew install timg"
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"appName": "chafa",
|
|
1111
|
+
"repoURL": "CMD",
|
|
1112
|
+
"doc": "🖼️ Terminal graphics and image viewer",
|
|
1113
|
+
"fileNamePattern": {
|
|
1114
|
+
"amd64": {
|
|
1115
|
+
"linux": "sudo nala install chafa -y",
|
|
1116
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
1117
|
+
"macos": "brew install chafa"
|
|
1118
|
+
},
|
|
1119
|
+
"arm64": {
|
|
1120
|
+
"linux": "sudo nala install chafa -y",
|
|
1121
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
1122
|
+
"macos": "brew install chafa"
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
905
1126
|
{
|
|
906
1127
|
"appName": "watchexec",
|
|
907
1128
|
"repoURL": "https://github.com/watchexec/watchexec",
|
|
@@ -921,18 +1142,18 @@
|
|
|
921
1142
|
},
|
|
922
1143
|
{
|
|
923
1144
|
"appName": "yazi",
|
|
924
|
-
"repoURL": "
|
|
1145
|
+
"repoURL": "CMD",
|
|
925
1146
|
"doc": "⚡ Blazing Fast Terminal File Manager.",
|
|
926
1147
|
"fileNamePattern": {
|
|
927
1148
|
"amd64": {
|
|
928
|
-
"linux": "yazi
|
|
929
|
-
"macos": "yazi
|
|
930
|
-
"windows": "yazi
|
|
1149
|
+
"linux": "yazi.py",
|
|
1150
|
+
"macos": "yazi.py",
|
|
1151
|
+
"windows": "yazi.py"
|
|
931
1152
|
},
|
|
932
1153
|
"arm64": {
|
|
933
|
-
"linux": "yazi
|
|
934
|
-
"macos": "yazi
|
|
935
|
-
"windows": "yazi
|
|
1154
|
+
"linux": "yazi.py",
|
|
1155
|
+
"macos": "yazi.py",
|
|
1156
|
+
"windows": "yazi.py"
|
|
936
1157
|
}
|
|
937
1158
|
}
|
|
938
1159
|
},
|
|
@@ -987,6 +1208,40 @@
|
|
|
987
1208
|
}
|
|
988
1209
|
}
|
|
989
1210
|
},
|
|
1211
|
+
{
|
|
1212
|
+
"appName": "youtube-dl",
|
|
1213
|
+
"repoURL": "CMD",
|
|
1214
|
+
"doc": "📥 Command-line program to download videos from YouTube and other sites. By https://github.com/ytdl-org/youtube-dl",
|
|
1215
|
+
"fileNamePattern": {
|
|
1216
|
+
"amd64": {
|
|
1217
|
+
"linux": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1218
|
+
"macos": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1219
|
+
"windows": "https://yt-dl.org/latest/youtube-dl.exe"
|
|
1220
|
+
},
|
|
1221
|
+
"arm64": {
|
|
1222
|
+
"linux": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1223
|
+
"macos": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1224
|
+
"windows": "https://yt-dl.org/latest/youtube-dl.exe"
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"appName": "yt-dlp",
|
|
1230
|
+
"repoURL": "CMD",
|
|
1231
|
+
"doc": "📥 A youtube-dl fork with additional features and fixes, by https://github.com/yt-dlp/yt-dlp",
|
|
1232
|
+
"fileNamePattern": {
|
|
1233
|
+
"amd64": {
|
|
1234
|
+
"linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp",
|
|
1235
|
+
"macos": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_macos",
|
|
1236
|
+
"windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"
|
|
1237
|
+
},
|
|
1238
|
+
"arm64": {
|
|
1239
|
+
"linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_musllinux_aarch64",
|
|
1240
|
+
"macos": null,
|
|
1241
|
+
"windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_arm64.exe"
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
},
|
|
990
1245
|
{
|
|
991
1246
|
"appName": "termusic",
|
|
992
1247
|
"repoURL": "https://github.com/tramhao/termusic",
|
|
@@ -1089,6 +1344,23 @@
|
|
|
1089
1344
|
}
|
|
1090
1345
|
}
|
|
1091
1346
|
},
|
|
1347
|
+
{
|
|
1348
|
+
"appName": "cb",
|
|
1349
|
+
"repoURL": "CMD",
|
|
1350
|
+
"doc": "📋 Clipboard manager for the terminal",
|
|
1351
|
+
"fileNamePattern": {
|
|
1352
|
+
"amd64": {
|
|
1353
|
+
"linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1354
|
+
"macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1355
|
+
"windows": "winget install -e --id Slackadays.Clipboard"
|
|
1356
|
+
},
|
|
1357
|
+
"arm64": {
|
|
1358
|
+
"linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1359
|
+
"macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1360
|
+
"windows": "winget install -e --id Slackadays.Clipboard"
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1092
1364
|
{
|
|
1093
1365
|
"appName": "atuin",
|
|
1094
1366
|
"repoURL": "https://github.com/atuinsh/atuin",
|
|
@@ -1112,13 +1384,13 @@
|
|
|
1112
1384
|
"doc": "🌐 browser in the shell",
|
|
1113
1385
|
"fileNamePattern": {
|
|
1114
1386
|
"amd64": {
|
|
1115
|
-
"linux":
|
|
1116
|
-
"macos":
|
|
1387
|
+
"linux": "browsh-v{version}-linux-amd64",
|
|
1388
|
+
"macos": "browsh-v{version}-darwin-amd64",
|
|
1117
1389
|
"windows": null
|
|
1118
1390
|
},
|
|
1119
1391
|
"arm64": {
|
|
1120
|
-
"linux":
|
|
1121
|
-
"macos":
|
|
1392
|
+
"linux": "browsh-v{version}-linux-arm64",
|
|
1393
|
+
"macos": "browsh-v{version}-darwin-arm64",
|
|
1122
1394
|
"windows": null
|
|
1123
1395
|
}
|
|
1124
1396
|
}
|
|
@@ -1175,66 +1447,134 @@
|
|
|
1175
1447
|
}
|
|
1176
1448
|
},
|
|
1177
1449
|
{
|
|
1178
|
-
"appName": "
|
|
1179
|
-
"repoURL": "
|
|
1180
|
-
"doc": "
|
|
1450
|
+
"appName": "sqlite3",
|
|
1451
|
+
"repoURL": "CMD",
|
|
1452
|
+
"doc": "A cli for sqlite",
|
|
1181
1453
|
"fileNamePattern": {
|
|
1182
1454
|
"amd64": {
|
|
1183
|
-
"linux": "
|
|
1455
|
+
"linux": "sudo nala install sqlite3 -y",
|
|
1184
1456
|
"macos": null,
|
|
1185
1457
|
"windows": null
|
|
1186
1458
|
},
|
|
1187
1459
|
"arm64": {
|
|
1188
|
-
"linux":
|
|
1460
|
+
"linux": null,
|
|
1189
1461
|
"macos": null,
|
|
1190
1462
|
"windows": null
|
|
1191
1463
|
}
|
|
1192
1464
|
}
|
|
1193
1465
|
},
|
|
1194
1466
|
{
|
|
1195
|
-
"appName": "
|
|
1196
|
-
"repoURL": "
|
|
1197
|
-
"doc": "
|
|
1467
|
+
"appName": "postgresql-client",
|
|
1468
|
+
"repoURL": "CMD",
|
|
1469
|
+
"doc": "A cli for postgresql",
|
|
1198
1470
|
"fileNamePattern": {
|
|
1199
1471
|
"amd64": {
|
|
1200
|
-
"linux": "
|
|
1472
|
+
"linux": "sudo nala install postgresql-client -y",
|
|
1201
1473
|
"macos": null,
|
|
1202
1474
|
"windows": null
|
|
1203
1475
|
},
|
|
1204
1476
|
"arm64": {
|
|
1205
|
-
"linux":
|
|
1477
|
+
"linux": null,
|
|
1206
1478
|
"macos": null,
|
|
1207
1479
|
"windows": null
|
|
1208
1480
|
}
|
|
1209
1481
|
}
|
|
1210
1482
|
},
|
|
1211
1483
|
{
|
|
1212
|
-
"appName": "
|
|
1213
|
-
"repoURL": "
|
|
1214
|
-
"doc": "
|
|
1484
|
+
"appName": "redis-cli",
|
|
1485
|
+
"repoURL": "CMD",
|
|
1486
|
+
"doc": "A cli for redis",
|
|
1215
1487
|
"fileNamePattern": {
|
|
1216
1488
|
"amd64": {
|
|
1217
|
-
"linux": "
|
|
1218
|
-
"macos":
|
|
1219
|
-
"windows":
|
|
1489
|
+
"linux": "sudo nala install redis-tools -y",
|
|
1490
|
+
"macos": null,
|
|
1491
|
+
"windows": null
|
|
1220
1492
|
},
|
|
1221
1493
|
"arm64": {
|
|
1222
|
-
"linux":
|
|
1223
|
-
"macos":
|
|
1224
|
-
"windows":
|
|
1494
|
+
"linux": null,
|
|
1495
|
+
"macos": null,
|
|
1496
|
+
"windows": null
|
|
1225
1497
|
}
|
|
1226
1498
|
}
|
|
1227
1499
|
},
|
|
1228
1500
|
{
|
|
1229
|
-
"appName": "
|
|
1230
|
-
"repoURL": "https://github.com/
|
|
1231
|
-
"doc": "🗃️
|
|
1501
|
+
"appName": "DBeaver",
|
|
1502
|
+
"repoURL": "https://github.com/dbeaver/dbeaver",
|
|
1503
|
+
"doc": "🗃️ Free universal database tool and SQL client.",
|
|
1232
1504
|
"fileNamePattern": {
|
|
1233
1505
|
"amd64": {
|
|
1234
|
-
"linux": "
|
|
1235
|
-
"macos":
|
|
1236
|
-
"windows":
|
|
1237
|
-
},
|
|
1506
|
+
"linux": "dbeaver-ce-{version}-linux.gtk.x86_64.tar.gz",
|
|
1507
|
+
"macos": null,
|
|
1508
|
+
"windows": null
|
|
1509
|
+
},
|
|
1510
|
+
"arm64": {
|
|
1511
|
+
"linux": "dbeaver-ce-{version}-linux.gtk.aarch64.tar.gz",
|
|
1512
|
+
"macos": null,
|
|
1513
|
+
"windows": null
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"appName": "rainfrog",
|
|
1519
|
+
"repoURL": "https://github.com/achristmascarl/rainfrog",
|
|
1520
|
+
"doc": "🗃️ TUI DB Visualizer",
|
|
1521
|
+
"fileNamePattern": {
|
|
1522
|
+
"amd64": {
|
|
1523
|
+
"linux": "rainfrog-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
1524
|
+
"macos": null,
|
|
1525
|
+
"windows": null
|
|
1526
|
+
},
|
|
1527
|
+
"arm64": {
|
|
1528
|
+
"linux": "rainfrog-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
1529
|
+
"macos": null,
|
|
1530
|
+
"windows": null
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"appName": "lazysql",
|
|
1536
|
+
"repoURL": "https://github.com/jorgerojas26/lazysql",
|
|
1537
|
+
"doc": "🗃️ TUI DB Visualizer",
|
|
1538
|
+
"fileNamePattern": {
|
|
1539
|
+
"amd64": {
|
|
1540
|
+
"linux": "lazysql_Linux_x86_64.tar.gz",
|
|
1541
|
+
"macos": "lazysql_Darwin_x86_64.tar.gz",
|
|
1542
|
+
"windows": "lazysql_Windows_x86_64.zip"
|
|
1543
|
+
},
|
|
1544
|
+
"arm64": {
|
|
1545
|
+
"linux": "lazysql_Linux_arm64.tar.gz",
|
|
1546
|
+
"macos": "lazysql_Darwin_arm64.tar.gz",
|
|
1547
|
+
"windows": "lazysql_Windows_arm64.zip"
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"appName": "pgweb",
|
|
1553
|
+
"repoURL": "https://github.com/sosedoff/pgweb/",
|
|
1554
|
+
"doc": "🗃️ Web-based PostgreSQL database browser written in Go",
|
|
1555
|
+
"fileNamePattern": {
|
|
1556
|
+
"amd64": {
|
|
1557
|
+
"linux": "pgweb-linux-amd64.zip",
|
|
1558
|
+
"macos": "pgweb_darwin_amd64.zip",
|
|
1559
|
+
"windows": "pgweb_windows_amd64.zip"
|
|
1560
|
+
},
|
|
1561
|
+
"arm64": {
|
|
1562
|
+
"linux": "pgweb-linux-arm64.zip",
|
|
1563
|
+
"macos": "pgweb_darwin_arm64.zip",
|
|
1564
|
+
"windows": "pgweb_windows_arm64.zip"
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"appName": "dbgate",
|
|
1570
|
+
"repoURL": "https://github.com/dbgate/dbgate",
|
|
1571
|
+
"doc": "🗃️ Cross-platform database manager for developers and database administrators",
|
|
1572
|
+
"fileNamePattern": {
|
|
1573
|
+
"amd64": {
|
|
1574
|
+
"linux": "dbgate-{version}-linux_x64.tar.gz",
|
|
1575
|
+
"macos": "dbgate-{version}-mac_x64.zip",
|
|
1576
|
+
"windows": "dbgate-windows-latest.zip"
|
|
1577
|
+
},
|
|
1238
1578
|
"arm64": {
|
|
1239
1579
|
"linux": "dbgate-{version}-linux_arm64.tar.gz",
|
|
1240
1580
|
"macos": "dbgate-{version}-mac_arm64.zip",
|
|
@@ -1259,6 +1599,23 @@
|
|
|
1259
1599
|
}
|
|
1260
1600
|
}
|
|
1261
1601
|
},
|
|
1602
|
+
{
|
|
1603
|
+
"appName": "gonzo",
|
|
1604
|
+
"repoURL": "https://github.com/control-theory/gonzo",
|
|
1605
|
+
"doc": "🕶️ Gonzo is a Go-based TUI for real-time log analysis, like nerdlog, caps-log and lnav.",
|
|
1606
|
+
"fileNamePattern": {
|
|
1607
|
+
"amd64": {
|
|
1608
|
+
"linux": "gonzo-{version}-linux-amd64.tar.gz",
|
|
1609
|
+
"macos": "gonzo-{version}-darwin-amd64.tar.gz",
|
|
1610
|
+
"windows": "gonzo-{version}-windows-amd64.zip"
|
|
1611
|
+
},
|
|
1612
|
+
"arm64": {
|
|
1613
|
+
"linux": "gonzo-{version}-linux-arm64.tar.gz",
|
|
1614
|
+
"macos": "gonzo-{version}-darwin-arm64.tar.gz",
|
|
1615
|
+
"windows": "gonzo-{version}-windows-arm64.zip"
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
},
|
|
1262
1619
|
{
|
|
1263
1620
|
"appName": "cpz",
|
|
1264
1621
|
"repoURL": "https://github.com/SUPERCILEX/fuc",
|
|
@@ -1639,9 +1996,9 @@
|
|
|
1639
1996
|
"doc": "📷 qr code scanner",
|
|
1640
1997
|
"fileNamePattern": {
|
|
1641
1998
|
"amd64": {
|
|
1642
|
-
"linux":
|
|
1643
|
-
"macos":
|
|
1644
|
-
"windows":
|
|
1999
|
+
"linux": "qrscan-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2000
|
+
"macos": "qrscan-{version}-x86_64-apple-darwin.tar.gz",
|
|
2001
|
+
"windows": "qrscan-{version}-i686-pc-windows-msvc.zip"
|
|
1645
2002
|
},
|
|
1646
2003
|
"arm64": {
|
|
1647
2004
|
"linux": null,
|
|
@@ -1650,37 +2007,54 @@
|
|
|
1650
2007
|
}
|
|
1651
2008
|
}
|
|
1652
2009
|
},
|
|
2010
|
+
{
|
|
2011
|
+
"appName": "qrterminal",
|
|
2012
|
+
"repoURL": "https://github.com/mdp/qrterminal",
|
|
2013
|
+
"doc": "📷 qr code terminal from string",
|
|
2014
|
+
"fileNamePattern": {
|
|
2015
|
+
"amd64": {
|
|
2016
|
+
"linux": "qrterminal_Linux_x86_64.tar.gz",
|
|
2017
|
+
"macos": "qrterminal_Darwin_x86_64.tar.gz",
|
|
2018
|
+
"windows": "qrterminal_Windows_x86_64.zip"
|
|
2019
|
+
},
|
|
2020
|
+
"arm64": {
|
|
2021
|
+
"linux": "qrterminal_Linux_arm64.tar.gz",
|
|
2022
|
+
"macos": "qrterminal_Darwin_arm64.tar.gz",
|
|
2023
|
+
"windows": "qrterminal_Windows_arm64.zip"
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
1653
2027
|
{
|
|
1654
2028
|
"appName": "termscp",
|
|
1655
2029
|
"repoURL": "https://github.com/veeso/termscp",
|
|
1656
2030
|
"doc": "📂 A TUI like winscp",
|
|
1657
2031
|
"fileNamePattern": {
|
|
1658
2032
|
"amd64": {
|
|
1659
|
-
"linux":
|
|
1660
|
-
"macos":
|
|
2033
|
+
"linux": "termscp-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
2034
|
+
"macos": "termscp-{version}-x86_64-apple-darwin.tar.gz",
|
|
1661
2035
|
"windows": null
|
|
1662
2036
|
},
|
|
1663
2037
|
"arm64": {
|
|
1664
|
-
"linux":
|
|
1665
|
-
"macos":
|
|
2038
|
+
"linux": "termscp-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
2039
|
+
"macos": "termscp-{version}-aarch64-apple-darwin.tar.gz",
|
|
1666
2040
|
"windows": null
|
|
1667
2041
|
}
|
|
1668
2042
|
}
|
|
1669
2043
|
},
|
|
1670
2044
|
{
|
|
1671
2045
|
"appName": "qr",
|
|
1672
|
-
"repoURL": "
|
|
2046
|
+
"repoURL": "CMD",
|
|
1673
2047
|
"doc": "🔲 qr code generator. String to qr code.",
|
|
1674
2048
|
"fileNamePattern": {
|
|
1675
2049
|
"amd64": {
|
|
1676
|
-
"linux":
|
|
1677
|
-
"macos":
|
|
1678
|
-
"windows":
|
|
2050
|
+
"linux": "uv tool install qrcode",
|
|
2051
|
+
"macos": "uv tool install qrcode",
|
|
2052
|
+
"windows": "uv tool install qrcode"
|
|
1679
2053
|
},
|
|
1680
2054
|
"arm64": {
|
|
1681
|
-
"linux":
|
|
1682
|
-
"macos":
|
|
1683
|
-
"windows":
|
|
2055
|
+
"linux": "uv tool install qrcode",
|
|
2056
|
+
"macos": "uv tool install qrcode",
|
|
2057
|
+
"windows": "uv tool install qrcode"
|
|
1684
2058
|
}
|
|
1685
2059
|
}
|
|
1686
2060
|
},
|
|
@@ -1690,14 +2064,31 @@
|
|
|
1690
2064
|
"doc": "🗂️ filebrowser provides a file managing interface within a specified directory",
|
|
1691
2065
|
"fileNamePattern": {
|
|
1692
2066
|
"amd64": {
|
|
1693
|
-
"linux":
|
|
1694
|
-
"macos":
|
|
1695
|
-
"windows":
|
|
2067
|
+
"linux": "linux-amd64-filebrowser.tar.gz",
|
|
2068
|
+
"macos": "darwin-amd64-filebrowser.tar.gz",
|
|
2069
|
+
"windows": "windows-amd64-filebrowser.zip"
|
|
1696
2070
|
},
|
|
1697
2071
|
"arm64": {
|
|
1698
|
-
"linux":
|
|
1699
|
-
"macos":
|
|
1700
|
-
"windows":
|
|
2072
|
+
"linux": "linux-arm64-filebrowser.tar.gz",
|
|
2073
|
+
"macos": "darwin-arm64-filebrowser.tar.gz",
|
|
2074
|
+
"windows": "windows-arm64-filebrowser.zip"
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"appName": "miniserve",
|
|
2080
|
+
"repoURL": "https://github.com/svenstaro/miniserve",
|
|
2081
|
+
"doc": "📂 A small, self-contained file server with directory listings",
|
|
2082
|
+
"fileNamePattern": {
|
|
2083
|
+
"amd64": {
|
|
2084
|
+
"linux": "miniserve-{version}-x86_64-unknown-linux-musl",
|
|
2085
|
+
"macos": "miniserve-{version}-x86_64-apple-darwin",
|
|
2086
|
+
"windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
|
|
2087
|
+
},
|
|
2088
|
+
"arm64": {
|
|
2089
|
+
"linux": "miniserve-{version}-aarch64-unknown-linux-musl",
|
|
2090
|
+
"macos": "miniserve-{version}-aarch64-apple-darwin",
|
|
2091
|
+
"windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
|
|
1701
2092
|
}
|
|
1702
2093
|
}
|
|
1703
2094
|
},
|
|
@@ -1707,13 +2098,13 @@
|
|
|
1707
2098
|
"doc": "☁️ Self-hosted file management system with muilt-cloud support.",
|
|
1708
2099
|
"fileNamePattern": {
|
|
1709
2100
|
"amd64": {
|
|
1710
|
-
"linux":
|
|
1711
|
-
"macos":
|
|
2101
|
+
"linux": "cloudreve_{version}_linux_amd64.tar.gz",
|
|
2102
|
+
"macos": "cloudreve_{version}_darwin_amd64.tar.gz",
|
|
1712
2103
|
"windows": null
|
|
1713
2104
|
},
|
|
1714
2105
|
"arm64": {
|
|
1715
|
-
"linux":
|
|
1716
|
-
"macos":
|
|
2106
|
+
"linux": "cloudreve_{version}_linux_arm64.tar.gz",
|
|
2107
|
+
"macos": "cloudreve_{version}_darwin_arm64.tar.gz",
|
|
1717
2108
|
"windows": null
|
|
1718
2109
|
}
|
|
1719
2110
|
}
|
|
@@ -1724,13 +2115,13 @@
|
|
|
1724
2115
|
"doc": "💾 backup program that is fast, efficient and secure. It supports the three major operating systems",
|
|
1725
2116
|
"fileNamePattern": {
|
|
1726
2117
|
"amd64": {
|
|
1727
|
-
"linux":
|
|
1728
|
-
"macos":
|
|
1729
|
-
"windows":
|
|
2118
|
+
"linux": "restic_{version}_linux_amd64.bz2",
|
|
2119
|
+
"macos": "restic_{version}_darwin_amd64.bz2",
|
|
2120
|
+
"windows": "restic_{version}_windows_amd64.zip"
|
|
1730
2121
|
},
|
|
1731
2122
|
"arm64": {
|
|
1732
|
-
"linux":
|
|
1733
|
-
"macos":
|
|
2123
|
+
"linux": "restic_{version}_linux_arm64.bz2",
|
|
2124
|
+
"macos": "restic_{version}_darwin_arm64.bz2",
|
|
1734
2125
|
"windows": null
|
|
1735
2126
|
}
|
|
1736
2127
|
}
|
|
@@ -1741,13 +2132,13 @@
|
|
|
1741
2132
|
"doc": "🔄 Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers.",
|
|
1742
2133
|
"fileNamePattern": {
|
|
1743
2134
|
"amd64": {
|
|
1744
|
-
"linux":
|
|
1745
|
-
"macos":
|
|
1746
|
-
"windows":
|
|
2135
|
+
"linux": "syncthing-linux-amd64-v{version}.tar.gz",
|
|
2136
|
+
"macos": "syncthing-osx-amd64-v{version}.tar.gz",
|
|
2137
|
+
"windows": "syncthing-windows-amd64-v{version}.zip"
|
|
1747
2138
|
},
|
|
1748
2139
|
"arm64": {
|
|
1749
|
-
"linux":
|
|
1750
|
-
"macos":
|
|
2140
|
+
"linux": "syncthing-linux-arm64-v{version}.tar.gz",
|
|
2141
|
+
"macos": "syncthing-osx-arm64-v{version}.tar.gz",
|
|
1751
2142
|
"windows": null
|
|
1752
2143
|
}
|
|
1753
2144
|
}
|
|
@@ -1758,13 +2149,13 @@
|
|
|
1758
2149
|
"doc": "🌐 Istio is an open source service mesh that layers transparently onto existing distributed applications",
|
|
1759
2150
|
"fileNamePattern": {
|
|
1760
2151
|
"amd64": {
|
|
1761
|
-
"linux":
|
|
1762
|
-
"macos":
|
|
2152
|
+
"linux": "istio-{version}-linux-amd64.tar.gz",
|
|
2153
|
+
"macos": "istio-{version}-osx-amd64.tar.gz",
|
|
1763
2154
|
"windows": null
|
|
1764
2155
|
},
|
|
1765
2156
|
"arm64": {
|
|
1766
|
-
"linux":
|
|
1767
|
-
"macos":
|
|
2157
|
+
"linux": "istio-{version}-linux-arm64.tar.gz",
|
|
2158
|
+
"macos": "istio-{version}-osx-arm64.tar.gz",
|
|
1768
2159
|
"windows": null
|
|
1769
2160
|
}
|
|
1770
2161
|
}
|
|
@@ -1775,13 +2166,13 @@
|
|
|
1775
2166
|
"doc": "⏲️ Pomodoro timer for the command-line",
|
|
1776
2167
|
"fileNamePattern": {
|
|
1777
2168
|
"amd64": {
|
|
1778
|
-
"linux":
|
|
1779
|
-
"macos":
|
|
1780
|
-
"windows":
|
|
2169
|
+
"linux": "openpomodoro-cli_{version}_linux_x86_64.tar.gz",
|
|
2170
|
+
"macos": "openpomodoro-cli_{version}_darwin_x86_64.tar.gz",
|
|
2171
|
+
"windows": "openpomodoro-cli_{version}_windows_x86_64.zip"
|
|
1781
2172
|
},
|
|
1782
2173
|
"arm64": {
|
|
1783
|
-
"linux":
|
|
1784
|
-
"macos":
|
|
2174
|
+
"linux": "openpomodoro-cli_{version}_linux_aarch64.tar.gz",
|
|
2175
|
+
"macos": "openpomodoro-cli_{version}_darwin_aarch64.tar.gz",
|
|
1785
2176
|
"windows": null
|
|
1786
2177
|
}
|
|
1787
2178
|
}
|
|
@@ -1792,14 +2183,14 @@
|
|
|
1792
2183
|
"doc": "🦀 Rust Language Server (LSP)",
|
|
1793
2184
|
"fileNamePattern": {
|
|
1794
2185
|
"amd64": {
|
|
1795
|
-
"linux":
|
|
1796
|
-
"macos":
|
|
1797
|
-
"windows":
|
|
2186
|
+
"linux": "rust-analyzer-x86_64-unknown-linux-gnu.gz",
|
|
2187
|
+
"macos": "rust-analyzer-x86_64-apple-darwin.gz",
|
|
2188
|
+
"windows": "rust-analyzer-x86_64-pc-windows-msvc.zip"
|
|
1798
2189
|
},
|
|
1799
2190
|
"arm64": {
|
|
1800
|
-
"linux":
|
|
1801
|
-
"macos":
|
|
1802
|
-
"windows":
|
|
2191
|
+
"linux": "rust-analyzer-aarch64-unknown-linux-gnu.gz",
|
|
2192
|
+
"macos": "rust-analyzer-aarch64-apple-darwin.gz",
|
|
2193
|
+
"windows": "rust-analyzer-aarch64-pc-windows-msvc.zip"
|
|
1803
2194
|
}
|
|
1804
2195
|
}
|
|
1805
2196
|
},
|
|
@@ -1809,31 +2200,31 @@
|
|
|
1809
2200
|
"doc": "🧹 cleans projects from litter files.",
|
|
1810
2201
|
"fileNamePattern": {
|
|
1811
2202
|
"amd64": {
|
|
1812
|
-
"linux":
|
|
1813
|
-
"macos":
|
|
1814
|
-
"windows":
|
|
2203
|
+
"linux": "kondo-linux-x86_64.tar.gz",
|
|
2204
|
+
"macos": "kondo-macos-x86_64.tar.gz",
|
|
2205
|
+
"windows": "kondo-windows-x86_64.zip"
|
|
1815
2206
|
},
|
|
1816
2207
|
"arm64": {
|
|
1817
|
-
"linux":
|
|
1818
|
-
"macos":
|
|
2208
|
+
"linux": "kondo-linux-aarch64.tar.gz",
|
|
2209
|
+
"macos": "kondo-macos-aarch64.tar.gz",
|
|
1819
2210
|
"windows": null
|
|
1820
2211
|
}
|
|
1821
2212
|
}
|
|
1822
2213
|
},
|
|
1823
2214
|
{
|
|
1824
2215
|
"appName": "tokei",
|
|
1825
|
-
"repoURL": "
|
|
2216
|
+
"repoURL": "CMD",
|
|
1826
2217
|
"doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
|
|
1827
2218
|
"fileNamePattern": {
|
|
1828
2219
|
"amd64": {
|
|
1829
|
-
"linux":
|
|
1830
|
-
"macos":
|
|
1831
|
-
"windows":
|
|
2220
|
+
"linux": "cargo install tokei",
|
|
2221
|
+
"macos": "brew install tokei",
|
|
2222
|
+
"windows": "winget install XAMPPRocky.tokei"
|
|
1832
2223
|
},
|
|
1833
2224
|
"arm64": {
|
|
1834
|
-
"linux":
|
|
1835
|
-
"macos":
|
|
1836
|
-
"windows":
|
|
2225
|
+
"linux": "cargo install tokei",
|
|
2226
|
+
"macos": "brew install tokei",
|
|
2227
|
+
"windows": "winget install XAMPPRocky.tokei"
|
|
1837
2228
|
}
|
|
1838
2229
|
}
|
|
1839
2230
|
},
|
|
@@ -1843,13 +2234,13 @@
|
|
|
1843
2234
|
"doc": "🐙 A simple terminal UI for git commands",
|
|
1844
2235
|
"fileNamePattern": {
|
|
1845
2236
|
"amd64": {
|
|
1846
|
-
"linux":
|
|
1847
|
-
"macos":
|
|
1848
|
-
"windows":
|
|
2237
|
+
"linux": "lazygit_{version}_linux_x86_64.tar.gz",
|
|
2238
|
+
"macos": "lazygit_{version}_darwin_x86_64.tar.gz",
|
|
2239
|
+
"windows": "lazygit_{version}_windows_x86_64.zip"
|
|
1849
2240
|
},
|
|
1850
2241
|
"arm64": {
|
|
1851
|
-
"linux":
|
|
1852
|
-
"macos":
|
|
2242
|
+
"linux": "lazygit_{version}_linux_arm64.tar.gz",
|
|
2243
|
+
"macos": "lazygit_{version}_darwin_arm64.tar.gz",
|
|
1853
2244
|
"windows": null
|
|
1854
2245
|
}
|
|
1855
2246
|
}
|
|
@@ -1894,13 +2285,13 @@
|
|
|
1894
2285
|
"doc": "📊 Git repository summary on your terminal",
|
|
1895
2286
|
"fileNamePattern": {
|
|
1896
2287
|
"amd64": {
|
|
1897
|
-
"linux":
|
|
1898
|
-
"macos":
|
|
1899
|
-
"windows":
|
|
2288
|
+
"linux": "onefetch-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2289
|
+
"macos": "onefetch-{version}-x86_64-apple-darwin.tar.gz",
|
|
2290
|
+
"windows": "onefetch-{version}-x86_64-pc-windows-msvc.zip"
|
|
1900
2291
|
},
|
|
1901
2292
|
"arm64": {
|
|
1902
|
-
"linux":
|
|
1903
|
-
"macos":
|
|
2293
|
+
"linux": "onefetch-{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2294
|
+
"macos": "onefetch-{version}-aarch64-apple-darwin.tar.gz",
|
|
1904
2295
|
"windows": null
|
|
1905
2296
|
}
|
|
1906
2297
|
}
|
|
@@ -1911,14 +2302,14 @@
|
|
|
1911
2302
|
"doc": "📈 analyze Git repositories and generate a visual contributions graph",
|
|
1912
2303
|
"fileNamePattern": {
|
|
1913
2304
|
"amd64": {
|
|
1914
|
-
"linux":
|
|
1915
|
-
"macos":
|
|
1916
|
-
"windows":
|
|
2305
|
+
"linux": "gitcs_linux_amd64",
|
|
2306
|
+
"macos": "gitcs_darwin_amd64",
|
|
2307
|
+
"windows": "gitcs_windows_amd64.exe"
|
|
1917
2308
|
},
|
|
1918
2309
|
"arm64": {
|
|
1919
|
-
"linux":
|
|
2310
|
+
"linux": "gitcs_linux_386",
|
|
1920
2311
|
"macos": null,
|
|
1921
|
-
"windows":
|
|
2312
|
+
"windows": "gitcs_windows_386.exe"
|
|
1922
2313
|
}
|
|
1923
2314
|
}
|
|
1924
2315
|
},
|
|
@@ -1928,9 +2319,9 @@
|
|
|
1928
2319
|
"doc": "🎯 A command runner",
|
|
1929
2320
|
"fileNamePattern": {
|
|
1930
2321
|
"amd64": {
|
|
1931
|
-
"linux":
|
|
1932
|
-
"macos":
|
|
1933
|
-
"windows":
|
|
2322
|
+
"linux": "gitcs_linux_amd64",
|
|
2323
|
+
"macos": "gitcs_darwin_amd64",
|
|
2324
|
+
"windows": "gitcs_windows_amd64.exe"
|
|
1934
2325
|
},
|
|
1935
2326
|
"arm64": {
|
|
1936
2327
|
"linux": null,
|
|
@@ -1945,12 +2336,12 @@
|
|
|
1945
2336
|
"doc": "📚 An interactive cheatsheet tool for the command-line",
|
|
1946
2337
|
"fileNamePattern": {
|
|
1947
2338
|
"amd64": {
|
|
1948
|
-
"linux":
|
|
2339
|
+
"linux": "navi-v{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
1949
2340
|
"macos": null,
|
|
1950
|
-
"windows":
|
|
2341
|
+
"windows": "navi-v{version}-x86_64-pc-windows-gnu.zip"
|
|
1951
2342
|
},
|
|
1952
2343
|
"arm64": {
|
|
1953
|
-
"linux":
|
|
2344
|
+
"linux": "navi-v{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
1954
2345
|
"macos": null,
|
|
1955
2346
|
"windows": null
|
|
1956
2347
|
}
|
|
@@ -1962,13 +2353,13 @@
|
|
|
1962
2353
|
"doc": "⚡ A very fast implementation of tldr in Rust",
|
|
1963
2354
|
"fileNamePattern": {
|
|
1964
2355
|
"amd64": {
|
|
1965
|
-
"linux":
|
|
1966
|
-
"macos":
|
|
1967
|
-
"windows":
|
|
2356
|
+
"linux": "tealdeer-linux-x86_64-musl",
|
|
2357
|
+
"macos": "tealdeer-macos-x86_64",
|
|
2358
|
+
"windows": "tealdeer-windows-x86_64-msvc.exe"
|
|
1968
2359
|
},
|
|
1969
2360
|
"arm64": {
|
|
1970
|
-
"linux":
|
|
1971
|
-
"macos":
|
|
2361
|
+
"linux": "tealdeer-linux-aarch64-musl",
|
|
2362
|
+
"macos": "tealdeer-macos-aarch64",
|
|
1972
2363
|
"windows": null
|
|
1973
2364
|
}
|
|
1974
2365
|
}
|
|
@@ -1979,14 +2370,82 @@
|
|
|
1979
2370
|
"doc": "🔍 A simple network sniffer in Rust",
|
|
1980
2371
|
"fileNamePattern": {
|
|
1981
2372
|
"amd64": {
|
|
1982
|
-
"linux":
|
|
1983
|
-
"macos":
|
|
1984
|
-
"windows":
|
|
2373
|
+
"linux": "Sniffnet_LinuxAppImage_amd64.AppImage",
|
|
2374
|
+
"macos": "Sniffnet_macOS_Intel.dmg",
|
|
2375
|
+
"windows": "Sniffnet_Windows_x64.msi"
|
|
1985
2376
|
},
|
|
1986
2377
|
"arm64": {
|
|
1987
|
-
"linux":
|
|
1988
|
-
"macos":
|
|
1989
|
-
"windows":
|
|
2378
|
+
"linux": "Sniffnet_LinuxAppImage_arm64.AppImage",
|
|
2379
|
+
"macos": "Sniffnet_macOS_AppleSilicon.dmg",
|
|
2380
|
+
"windows": "Sniffnet_Windows_arm64.msi"
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"appName": "trippy",
|
|
2386
|
+
"repoURL": "https://github.com/fujiapple852/trippy",
|
|
2387
|
+
"doc": "🧭 A network diagnostic tool combining traceroute and ping)",
|
|
2388
|
+
"fileNamePattern": {
|
|
2389
|
+
"amd64": {
|
|
2390
|
+
"linux": "trippy-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
2391
|
+
"macos": "trippy-{version}-x86_64-apple-darwin.tar.gz",
|
|
2392
|
+
"windows": "trippy-{version}-x86_64-pc-windows-msvc.zip"
|
|
2393
|
+
},
|
|
2394
|
+
"arm64": {
|
|
2395
|
+
"linux": "trippy-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
2396
|
+
"macos": "trippy-{version}-aarch64-apple-darwin.tar.gz",
|
|
2397
|
+
"windows": "trippy-{version}-aarch64-pc-windows-msvc.zip"
|
|
2398
|
+
}
|
|
2399
|
+
}
|
|
2400
|
+
},
|
|
2401
|
+
{
|
|
2402
|
+
"appName": "oryx",
|
|
2403
|
+
"repoURL": "https://github.com/pythops/oryx",
|
|
2404
|
+
"doc": "🕵️♂️ TUI for sniffing network traffic using eBPF on Linux",
|
|
2405
|
+
"fileNamePattern": {
|
|
2406
|
+
"amd64": {
|
|
2407
|
+
"linux": "oryx-x86_64-unknown-linux-gnu.tar.gz",
|
|
2408
|
+
"macos": "",
|
|
2409
|
+
"windows": ""
|
|
2410
|
+
},
|
|
2411
|
+
"arm64": {
|
|
2412
|
+
"linux": "oryx-aarch64-unknown-linux-gnu.tar.gz",
|
|
2413
|
+
"macos": "",
|
|
2414
|
+
"windows": ""
|
|
2415
|
+
}
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
"appName": "tufw",
|
|
2420
|
+
"repoURL": "https://github.com/peltho/tufw",
|
|
2421
|
+
"doc": "📋 Terminal UI for UFW (Uncomplicated Firewall) on Linux",
|
|
2422
|
+
"fileNamePattern": {
|
|
2423
|
+
"amd64": {
|
|
2424
|
+
"linux": "tufw_{version}_linux_amd64.tar.gz",
|
|
2425
|
+
"macos": "",
|
|
2426
|
+
"windows": ""
|
|
2427
|
+
},
|
|
2428
|
+
"arm64": {
|
|
2429
|
+
"linux": "tufw_{version}_linux_arm64.tar.gz",
|
|
2430
|
+
"macos": "",
|
|
2431
|
+
"windows": ""
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
"appName": "netscanner",
|
|
2437
|
+
"repoURL": "https://github.com/Chleba/netscanner",
|
|
2438
|
+
"doc": "📡 Terminal network scanner & diagnostic tool with TUI (v0.6.3)",
|
|
2439
|
+
"fileNamePattern": {
|
|
2440
|
+
"amd64": {
|
|
2441
|
+
"linux": "netscanner-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2442
|
+
"macos": "netscanner-{version}-x86_64-apple-darwin.tar.gz",
|
|
2443
|
+
"windows": "netscanner-{version}-x86_64-pc-windows-msvc.zip"
|
|
2444
|
+
},
|
|
2445
|
+
"arm64": {
|
|
2446
|
+
"linux": "netscanner-{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2447
|
+
"macos": "netscanner-{version}-aarch64-apple-darwin.tar.gz",
|
|
2448
|
+
"windows": "netscanner-{version}-aarch64-pc-windows-msvc.zip"
|
|
1990
2449
|
}
|
|
1991
2450
|
}
|
|
1992
2451
|
},
|
|
@@ -1996,13 +2455,13 @@
|
|
|
1996
2455
|
"doc": "⚡ A command-line benchmarking tool",
|
|
1997
2456
|
"fileNamePattern": {
|
|
1998
2457
|
"amd64": {
|
|
1999
|
-
"linux":
|
|
2000
|
-
"macos":
|
|
2001
|
-
"windows":
|
|
2458
|
+
"linux": "hyperfine-v{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2459
|
+
"macos": "hyperfine-v{version}-x86_64-apple-darwin.tar.gz",
|
|
2460
|
+
"windows": "hyperfine-v{version}-x86_64-pc-windows-msvc.zip"
|
|
2002
2461
|
},
|
|
2003
2462
|
"arm64": {
|
|
2004
|
-
"linux":
|
|
2005
|
-
"macos":
|
|
2463
|
+
"linux": "hyperfine-v{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2464
|
+
"macos": "hyperfine-v{version}-aarch64-apple-darwin.tar.gz",
|
|
2006
2465
|
"windows": null
|
|
2007
2466
|
}
|
|
2008
2467
|
}
|
|
@@ -2013,14 +2472,14 @@
|
|
|
2013
2472
|
"doc": "🤖 Get up and running with large language models locally.",
|
|
2014
2473
|
"fileNamePattern": {
|
|
2015
2474
|
"amd64": {
|
|
2016
|
-
"linux":
|
|
2017
|
-
"macos":
|
|
2018
|
-
"windows":
|
|
2475
|
+
"linux": "ollama-linux-amd64.tgz",
|
|
2476
|
+
"macos": "Ollama.dmg",
|
|
2477
|
+
"windows": "OllamaSetup.exe"
|
|
2019
2478
|
},
|
|
2020
2479
|
"arm64": {
|
|
2021
|
-
"linux":
|
|
2022
|
-
"macos":
|
|
2023
|
-
"windows":
|
|
2480
|
+
"linux": "ollama-linux-arm64.tgz",
|
|
2481
|
+
"macos": "Ollama.dmg",
|
|
2482
|
+
"windows": "ollama-windows-arm64.zip"
|
|
2024
2483
|
}
|
|
2025
2484
|
}
|
|
2026
2485
|
},
|
|
@@ -2030,8 +2489,8 @@
|
|
|
2030
2489
|
"doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
|
|
2031
2490
|
"fileNamePattern": {
|
|
2032
2491
|
"amd64": {
|
|
2033
|
-
"linux":
|
|
2034
|
-
"macos":
|
|
2492
|
+
"linux": "cointop_{version}_linux_amd64.tar.gz",
|
|
2493
|
+
"macos": "cointop_{version}_darwin_amd64.tar.gz",
|
|
2035
2494
|
"windows": null
|
|
2036
2495
|
},
|
|
2037
2496
|
"arm64": {
|
|
@@ -2047,14 +2506,14 @@
|
|
|
2047
2506
|
"doc": "🖥️ Text-based desktop environment inside your terminal",
|
|
2048
2507
|
"fileNamePattern": {
|
|
2049
2508
|
"amd64": {
|
|
2050
|
-
"linux":
|
|
2051
|
-
"macos":
|
|
2052
|
-
"windows":
|
|
2509
|
+
"linux": "vtm_linux_x86_64.tar.7z",
|
|
2510
|
+
"macos": "vtm_macos_any.tar.7z",
|
|
2511
|
+
"windows": "vtm_windows_x86_64.7z"
|
|
2053
2512
|
},
|
|
2054
2513
|
"arm64": {
|
|
2055
|
-
"linux":
|
|
2056
|
-
"macos":
|
|
2057
|
-
"windows":
|
|
2514
|
+
"linux": "vtm_linux_arm64.tar.7z",
|
|
2515
|
+
"macos": "vtm_macos_any.tar.7z",
|
|
2516
|
+
"windows": "vtm_windows_arm64.7z"
|
|
2058
2517
|
}
|
|
2059
2518
|
}
|
|
2060
2519
|
},
|
|
@@ -2064,12 +2523,12 @@
|
|
|
2064
2523
|
"doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
|
|
2065
2524
|
"fileNamePattern": {
|
|
2066
2525
|
"amd64": {
|
|
2067
|
-
"linux":
|
|
2068
|
-
"macos":
|
|
2069
|
-
"windows":
|
|
2526
|
+
"linux": "eDEX-UI-Linux-x86_64.AppImage",
|
|
2527
|
+
"macos": "eDEX-UI-macOS-x64.dmg",
|
|
2528
|
+
"windows": "eDEX-UI-Windows-x64.exe"
|
|
2070
2529
|
},
|
|
2071
2530
|
"arm64": {
|
|
2072
|
-
"linux":
|
|
2531
|
+
"linux": "eDEX-UI-Linux-arm64.AppImage",
|
|
2073
2532
|
"macos": null,
|
|
2074
2533
|
"windows": null
|
|
2075
2534
|
}
|
|
@@ -2081,9 +2540,9 @@
|
|
|
2081
2540
|
"doc": "💻 Terminal emulator",
|
|
2082
2541
|
"fileNamePattern": {
|
|
2083
2542
|
"amd64": {
|
|
2084
|
-
"linux":
|
|
2085
|
-
"macos":
|
|
2086
|
-
"windows":
|
|
2543
|
+
"linux": "ExtratermQt-{version}.glibc2.34-x86_64.AppImage",
|
|
2544
|
+
"macos": "ExtratermQt_{version}.dmg",
|
|
2545
|
+
"windows": "extratermqt-setup-{version}.exe"
|
|
2087
2546
|
},
|
|
2088
2547
|
"arm64": {
|
|
2089
2548
|
"linux": null,
|
|
@@ -2098,8 +2557,8 @@
|
|
|
2098
2557
|
"doc": "🐚 Nushell, a cross-platform shell in Rust.",
|
|
2099
2558
|
"fileNamePattern": {
|
|
2100
2559
|
"amd64": {
|
|
2101
|
-
"linux": "nu-
|
|
2102
|
-
"macos": "nu-
|
|
2560
|
+
"linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2561
|
+
"macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
|
|
2103
2562
|
"windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
|
|
2104
2563
|
},
|
|
2105
2564
|
"arm64": {
|
|
@@ -2115,14 +2574,14 @@
|
|
|
2115
2574
|
"doc": "🦊 WebDriver for Firefox.",
|
|
2116
2575
|
"fileNamePattern": {
|
|
2117
2576
|
"amd64": {
|
|
2118
|
-
"linux":
|
|
2119
|
-
"macos":
|
|
2120
|
-
"windows":
|
|
2577
|
+
"linux": "geckodriver-v{version}-linux64.tar.gz",
|
|
2578
|
+
"macos": "geckodriver-v{version}-macos.tar.gz",
|
|
2579
|
+
"windows": "geckodriver-v{version}-win64.zip"
|
|
2121
2580
|
},
|
|
2122
2581
|
"arm64": {
|
|
2123
|
-
"linux":
|
|
2124
|
-
"macos":
|
|
2125
|
-
"windows":
|
|
2582
|
+
"linux": "geckodriver-v{version}-linux-aarch64.tar.gz",
|
|
2583
|
+
"macos": "geckodriver-v{version}-macos-aarch64.tar.gz",
|
|
2584
|
+
"windows": "geckodriver-v{version}-win-aarch64.zip"
|
|
2126
2585
|
}
|
|
2127
2586
|
}
|
|
2128
2587
|
},
|
|
@@ -2179,16 +2638,50 @@
|
|
|
2179
2638
|
}
|
|
2180
2639
|
},
|
|
2181
2640
|
{
|
|
2182
|
-
"appName": "
|
|
2183
|
-
"repoURL": "
|
|
2184
|
-
"doc": "
|
|
2641
|
+
"appName": "mods",
|
|
2642
|
+
"repoURL": "https://github.com/charmbracelet/mods/",
|
|
2643
|
+
"doc": "🤖 AI for the command line, built for pipelines",
|
|
2185
2644
|
"fileNamePattern": {
|
|
2186
2645
|
"amd64": {
|
|
2187
|
-
"linux": "
|
|
2188
|
-
"
|
|
2189
|
-
"
|
|
2190
|
-
},
|
|
2191
|
-
"arm64": {
|
|
2646
|
+
"linux": "mods_{version}_Linux_x86_64.tar.gz",
|
|
2647
|
+
"macos": "mods_{version}_Darwin_x86_64.tar.gz",
|
|
2648
|
+
"windows": "mods_{version}_Windows_x86_64.zip"
|
|
2649
|
+
},
|
|
2650
|
+
"arm64": {
|
|
2651
|
+
"linux": "mods_{version}_Linux_arm64.tar.gz",
|
|
2652
|
+
"macos": "mods_{version}_Darwin_arm64.tar.gz",
|
|
2653
|
+
"windows": "mods_{version}_Windows_arm64.zip"
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"appName": "aichat",
|
|
2659
|
+
"repoURL": "https://github.com/sigoden/aichat",
|
|
2660
|
+
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2661
|
+
"fileNamePattern": {
|
|
2662
|
+
"amd64": {
|
|
2663
|
+
"linux": "aichat-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
2664
|
+
"macos": "aichat-{version}-x86_64-apple-darwin.tar.gz",
|
|
2665
|
+
"windows": "aichat-{version}-x86_64-pc-windows-msvc.zip"
|
|
2666
|
+
},
|
|
2667
|
+
"arm64": {
|
|
2668
|
+
"linux": "aichat-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
2669
|
+
"macos": "aichat-{version}-aarch64-apple-darwin.tar.gz",
|
|
2670
|
+
"windows": "aichat-{version}-aarch64-pc-windows-msvc.zip"
|
|
2671
|
+
}
|
|
2672
|
+
}
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"appName": "qwen-code",
|
|
2676
|
+
"repoURL": "CMD",
|
|
2677
|
+
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2678
|
+
"fileNamePattern": {
|
|
2679
|
+
"amd64": {
|
|
2680
|
+
"linux": "npm install -g @qwen-code/qwen-code@latest",
|
|
2681
|
+
"windows": "npm install -g @qwen-code/qwen-code@latest",
|
|
2682
|
+
"macos": "npm install -g @qwen-code/qwen-code@latest"
|
|
2683
|
+
},
|
|
2684
|
+
"arm64": {
|
|
2192
2685
|
"linux": "npm install -g @qwen-code/qwen-code@latest",
|
|
2193
2686
|
"windows": "npm install -g @qwen-code/qwen-code@latest",
|
|
2194
2687
|
"macos": "npm install -g @qwen-code/qwen-code@latest"
|
|
@@ -2315,19 +2808,36 @@
|
|
|
2315
2808
|
}
|
|
2316
2809
|
},
|
|
2317
2810
|
{
|
|
2318
|
-
"appName": "warp",
|
|
2811
|
+
"appName": "warp-terminal",
|
|
2319
2812
|
"repoURL": "CMD",
|
|
2320
2813
|
"doc": "Modern terminal with AI-powered features",
|
|
2814
|
+
"fileNamePattern": {
|
|
2815
|
+
"amd64": {
|
|
2816
|
+
"linux": "https://app.warp.dev/get_warp?package=deb",
|
|
2817
|
+
"windows": "winget install Warp.Warp",
|
|
2818
|
+
"macos": "brew install --cask warp"
|
|
2819
|
+
},
|
|
2820
|
+
"arm64": {
|
|
2821
|
+
"linux": "https://app.warp.dev/get_warp?package=deb_arm64",
|
|
2822
|
+
"windows": "winget install Warp.Warp",
|
|
2823
|
+
"macos": "brew install --cask warp"
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"appName": "warp-terminal-cli",
|
|
2829
|
+
"repoURL": "CMD",
|
|
2830
|
+
"doc": "Modern terminal cli with AI-powered features",
|
|
2321
2831
|
"fileNamePattern": {
|
|
2322
2832
|
"amd64": {
|
|
2323
2833
|
"linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
|
|
2324
2834
|
"windows": null,
|
|
2325
|
-
"macos":
|
|
2835
|
+
"macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
|
|
2326
2836
|
},
|
|
2327
2837
|
"arm64": {
|
|
2328
2838
|
"linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
|
|
2329
2839
|
"windows": null,
|
|
2330
|
-
"macos":
|
|
2840
|
+
"macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
|
|
2331
2841
|
}
|
|
2332
2842
|
}
|
|
2333
2843
|
},
|
|
@@ -2400,7 +2910,7 @@
|
|
|
2400
2910
|
}
|
|
2401
2911
|
},
|
|
2402
2912
|
{
|
|
2403
|
-
"appName": "
|
|
2913
|
+
"appName": "brave",
|
|
2404
2914
|
"repoURL": "CMD",
|
|
2405
2915
|
"doc": "Privacy-focused web browser with built-in ad blocking",
|
|
2406
2916
|
"fileNamePattern": {
|
|
@@ -2468,7 +2978,7 @@
|
|
|
2468
2978
|
}
|
|
2469
2979
|
},
|
|
2470
2980
|
{
|
|
2471
|
-
"appName": "
|
|
2981
|
+
"appName": "gorilla",
|
|
2472
2982
|
"repoURL": "https://github.com/ShishirPatil/gorilla",
|
|
2473
2983
|
"doc": "natural language to API",
|
|
2474
2984
|
"fileNamePattern": {
|
|
@@ -2519,7 +3029,7 @@
|
|
|
2519
3029
|
}
|
|
2520
3030
|
},
|
|
2521
3031
|
{
|
|
2522
|
-
"appName": "
|
|
3032
|
+
"appName": "redis",
|
|
2523
3033
|
"repoURL": "CMD",
|
|
2524
3034
|
"doc": "submillisecond fast key-value db",
|
|
2525
3035
|
"fileNamePattern": {
|
|
@@ -2536,7 +3046,7 @@
|
|
|
2536
3046
|
}
|
|
2537
3047
|
},
|
|
2538
3048
|
{
|
|
2539
|
-
"appName": "
|
|
3049
|
+
"appName": "wezterm",
|
|
2540
3050
|
"repoURL": "CMD",
|
|
2541
3051
|
"doc": "Modern, GPU-accelerated terminal emulator",
|
|
2542
3052
|
"fileNamePattern": {
|
|
@@ -2602,6 +3112,567 @@
|
|
|
2602
3112
|
"macos": "hx.py"
|
|
2603
3113
|
}
|
|
2604
3114
|
}
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"appName": "file",
|
|
3118
|
+
"repoURL": "CMD",
|
|
3119
|
+
"doc": "🔍 File type identification utility",
|
|
3120
|
+
"fileNamePattern": {
|
|
3121
|
+
"amd64": {
|
|
3122
|
+
"linux": null,
|
|
3123
|
+
"windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
|
|
3124
|
+
"macos": null
|
|
3125
|
+
},
|
|
3126
|
+
"arm64": {
|
|
3127
|
+
"linux": null,
|
|
3128
|
+
"windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
|
|
3129
|
+
"macos": null
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"appName": "oh-my-posh",
|
|
3135
|
+
"repoURL": "CMD",
|
|
3136
|
+
"doc": "✨ Prompt theme engine for any shell",
|
|
3137
|
+
"fileNamePattern": {
|
|
3138
|
+
"amd64": {
|
|
3139
|
+
"linux": null,
|
|
3140
|
+
"windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3141
|
+
"macos": null
|
|
3142
|
+
},
|
|
3143
|
+
"arm64": {
|
|
3144
|
+
"linux": null,
|
|
3145
|
+
"windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3146
|
+
"macos": null
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"appName": "vsredistrib",
|
|
3152
|
+
"repoURL": "CMD",
|
|
3153
|
+
"doc": "📦 Microsoft Visual C++ Redistributable",
|
|
3154
|
+
"fileNamePattern": {
|
|
3155
|
+
"amd64": {
|
|
3156
|
+
"linux": null,
|
|
3157
|
+
"windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3158
|
+
"macos": null
|
|
3159
|
+
},
|
|
3160
|
+
"arm64": {
|
|
3161
|
+
"linux": null,
|
|
3162
|
+
"windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3163
|
+
"macos": null
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
"appName": "vsbuildtools",
|
|
3169
|
+
"repoURL": "CMD",
|
|
3170
|
+
"doc": "🔨 Visual Studio Build Tools",
|
|
3171
|
+
"fileNamePattern": {
|
|
3172
|
+
"amd64": {
|
|
3173
|
+
"linux": null,
|
|
3174
|
+
"windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3175
|
+
"macos": null
|
|
3176
|
+
},
|
|
3177
|
+
"arm64": {
|
|
3178
|
+
"linux": null,
|
|
3179
|
+
"windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3180
|
+
"macos": null
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
"appName": "codeblocks",
|
|
3186
|
+
"repoURL": "CMD",
|
|
3187
|
+
"doc": "💻 IDE for C/C++",
|
|
3188
|
+
"fileNamePattern": {
|
|
3189
|
+
"amd64": {
|
|
3190
|
+
"linux": null,
|
|
3191
|
+
"windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3192
|
+
"macos": null
|
|
3193
|
+
},
|
|
3194
|
+
"arm64": {
|
|
3195
|
+
"linux": null,
|
|
3196
|
+
"windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3197
|
+
"macos": null
|
|
3198
|
+
}
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
"appName": "make",
|
|
3203
|
+
"repoURL": "CMD",
|
|
3204
|
+
"doc": "🔧 GNU Make utility for building projects",
|
|
3205
|
+
"fileNamePattern": {
|
|
3206
|
+
"amd64": {
|
|
3207
|
+
"linux": null,
|
|
3208
|
+
"windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3209
|
+
"macos": null
|
|
3210
|
+
},
|
|
3211
|
+
"arm64": {
|
|
3212
|
+
"linux": null,
|
|
3213
|
+
"windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3214
|
+
"macos": null
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
"appName": "gnupg",
|
|
3220
|
+
"repoURL": "CMD",
|
|
3221
|
+
"doc": "🔐 GNU Privacy Guard encryption tool",
|
|
3222
|
+
"fileNamePattern": {
|
|
3223
|
+
"amd64": {
|
|
3224
|
+
"linux": null,
|
|
3225
|
+
"windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3226
|
+
"macos": null
|
|
3227
|
+
},
|
|
3228
|
+
"arm64": {
|
|
3229
|
+
"linux": null,
|
|
3230
|
+
"windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3231
|
+
"macos": null
|
|
3232
|
+
}
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"appName": "graphviz",
|
|
3237
|
+
"repoURL": "CMD",
|
|
3238
|
+
"doc": "📊 Graph visualization software",
|
|
3239
|
+
"fileNamePattern": {
|
|
3240
|
+
"amd64": {
|
|
3241
|
+
"linux": "sudo nala install graphviz -y",
|
|
3242
|
+
"windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3243
|
+
"macos": "brew install graphviz"
|
|
3244
|
+
},
|
|
3245
|
+
"arm64": {
|
|
3246
|
+
"linux": "sudo nala install graphviz -y",
|
|
3247
|
+
"windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3248
|
+
"macos": "brew install graphviz"
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3252
|
+
{
|
|
3253
|
+
"appName": "winfsp",
|
|
3254
|
+
"repoURL": "CMD",
|
|
3255
|
+
"doc": "💾 Windows File System Proxy",
|
|
3256
|
+
"fileNamePattern": {
|
|
3257
|
+
"amd64": {
|
|
3258
|
+
"linux": null,
|
|
3259
|
+
"windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3260
|
+
"macos": null
|
|
3261
|
+
},
|
|
3262
|
+
"arm64": {
|
|
3263
|
+
"linux": null,
|
|
3264
|
+
"windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3265
|
+
"macos": null
|
|
3266
|
+
}
|
|
3267
|
+
}
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"appName": "sshfs",
|
|
3271
|
+
"repoURL": "CMD",
|
|
3272
|
+
"doc": "🌐 Mount remote filesystems over SSH",
|
|
3273
|
+
"fileNamePattern": {
|
|
3274
|
+
"amd64": {
|
|
3275
|
+
"linux": "sudo nala install sshfs",
|
|
3276
|
+
"windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3277
|
+
"macos": "brew install sshfs"
|
|
3278
|
+
},
|
|
3279
|
+
"arm64": {
|
|
3280
|
+
"linux": "sudo nala install sshfs",
|
|
3281
|
+
"windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3282
|
+
"macos": "brew install sshfs"
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"appName": "xming",
|
|
3288
|
+
"repoURL": "CMD",
|
|
3289
|
+
"doc": "🖥️ X11 server for Windows",
|
|
3290
|
+
"fileNamePattern": {
|
|
3291
|
+
"amd64": {
|
|
3292
|
+
"linux": null,
|
|
3293
|
+
"windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3294
|
+
"macos": null
|
|
3295
|
+
},
|
|
3296
|
+
"arm64": {
|
|
3297
|
+
"linux": null,
|
|
3298
|
+
"windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3299
|
+
"macos": null
|
|
3300
|
+
}
|
|
3301
|
+
}
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"appName": "nodejs",
|
|
3305
|
+
"repoURL": "CMD",
|
|
3306
|
+
"doc": "🟢 JavaScript runtime environment",
|
|
3307
|
+
"fileNamePattern": {
|
|
3308
|
+
"amd64": {
|
|
3309
|
+
"linux": null,
|
|
3310
|
+
"windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3311
|
+
"macos": null
|
|
3312
|
+
},
|
|
3313
|
+
"arm64": {
|
|
3314
|
+
"linux": null,
|
|
3315
|
+
"windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3316
|
+
"macos": null
|
|
3317
|
+
}
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"appName": "rustup",
|
|
3322
|
+
"repoURL": "CMD",
|
|
3323
|
+
"doc": "🦀 Rust toolchain installer",
|
|
3324
|
+
"fileNamePattern": {
|
|
3325
|
+
"amd64": {
|
|
3326
|
+
"linux": null,
|
|
3327
|
+
"windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3328
|
+
"macos": null
|
|
3329
|
+
},
|
|
3330
|
+
"arm64": {
|
|
3331
|
+
"linux": null,
|
|
3332
|
+
"windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3333
|
+
"macos": null
|
|
3334
|
+
}
|
|
3335
|
+
}
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"appName": "mouse-without-borders",
|
|
3339
|
+
"repoURL": "CMD",
|
|
3340
|
+
"doc": "🖱️ Control multiple computers with one mouse",
|
|
3341
|
+
"fileNamePattern": {
|
|
3342
|
+
"amd64": {
|
|
3343
|
+
"linux": null,
|
|
3344
|
+
"windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3345
|
+
"macos": null
|
|
3346
|
+
},
|
|
3347
|
+
"arm64": {
|
|
3348
|
+
"linux": null,
|
|
3349
|
+
"windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3350
|
+
"macos": null
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
"appName": "chrome",
|
|
3356
|
+
"repoURL": "CMD",
|
|
3357
|
+
"doc": "🌐 Google Chrome web browser",
|
|
3358
|
+
"fileNamePattern": {
|
|
3359
|
+
"amd64": {
|
|
3360
|
+
"linux": null,
|
|
3361
|
+
"windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3362
|
+
"macos": null
|
|
3363
|
+
},
|
|
3364
|
+
"arm64": {
|
|
3365
|
+
"linux": null,
|
|
3366
|
+
"windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3367
|
+
"macos": null
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
"appName": "chrome-remote-desktop",
|
|
3373
|
+
"repoURL": "CMD",
|
|
3374
|
+
"doc": "🖥️ Chrome Remote Desktop Host",
|
|
3375
|
+
"fileNamePattern": {
|
|
3376
|
+
"amd64": {
|
|
3377
|
+
"linux": null,
|
|
3378
|
+
"windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3379
|
+
"macos": null
|
|
3380
|
+
},
|
|
3381
|
+
"arm64": {
|
|
3382
|
+
"linux": null,
|
|
3383
|
+
"windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3384
|
+
"macos": null
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"appName": "zoom",
|
|
3390
|
+
"repoURL": "CMD",
|
|
3391
|
+
"doc": "📹 Video conferencing software",
|
|
3392
|
+
"fileNamePattern": {
|
|
3393
|
+
"amd64": {
|
|
3394
|
+
"linux": null,
|
|
3395
|
+
"windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3396
|
+
"macos": null
|
|
3397
|
+
},
|
|
3398
|
+
"arm64": {
|
|
3399
|
+
"linux": null,
|
|
3400
|
+
"windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3401
|
+
"macos": null
|
|
3402
|
+
}
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"appName": "7zip",
|
|
3407
|
+
"repoURL": "CMD",
|
|
3408
|
+
"doc": "📦 File archiver with high compression ratio",
|
|
3409
|
+
"fileNamePattern": {
|
|
3410
|
+
"amd64": {
|
|
3411
|
+
"linux": null,
|
|
3412
|
+
"windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3413
|
+
"macos": null
|
|
3414
|
+
},
|
|
3415
|
+
"arm64": {
|
|
3416
|
+
"linux": null,
|
|
3417
|
+
"windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3418
|
+
"macos": null
|
|
3419
|
+
}
|
|
3420
|
+
}
|
|
3421
|
+
},
|
|
3422
|
+
{
|
|
3423
|
+
"appName": "firefox",
|
|
3424
|
+
"repoURL": "CMD",
|
|
3425
|
+
"doc": "🦊 Mozilla Firefox web browser",
|
|
3426
|
+
"fileNamePattern": {
|
|
3427
|
+
"amd64": {
|
|
3428
|
+
"linux": null,
|
|
3429
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3430
|
+
"macos": null
|
|
3431
|
+
},
|
|
3432
|
+
"arm64": {
|
|
3433
|
+
"linux": null,
|
|
3434
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3435
|
+
"macos": null
|
|
3436
|
+
}
|
|
3437
|
+
}
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
"appName": "thunderbird",
|
|
3441
|
+
"repoURL": "CMD",
|
|
3442
|
+
"doc": "📧 Mozilla Thunderbird email client",
|
|
3443
|
+
"fileNamePattern": {
|
|
3444
|
+
"amd64": {
|
|
3445
|
+
"linux": null,
|
|
3446
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3447
|
+
"macos": null
|
|
3448
|
+
},
|
|
3449
|
+
"arm64": {
|
|
3450
|
+
"linux": null,
|
|
3451
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3452
|
+
"macos": null
|
|
3453
|
+
}
|
|
3454
|
+
}
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"appName": "streamlabs-obs",
|
|
3458
|
+
"repoURL": "CMD",
|
|
3459
|
+
"doc": "🎥 Streamlabs OBS streaming software",
|
|
3460
|
+
"fileNamePattern": {
|
|
3461
|
+
"amd64": {
|
|
3462
|
+
"linux": null,
|
|
3463
|
+
"windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3464
|
+
"macos": null
|
|
3465
|
+
},
|
|
3466
|
+
"arm64": {
|
|
3467
|
+
"linux": null,
|
|
3468
|
+
"windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3469
|
+
"macos": null
|
|
3470
|
+
}
|
|
3471
|
+
}
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
"appName": "obs-studio",
|
|
3475
|
+
"repoURL": "CMD",
|
|
3476
|
+
"doc": "🎬 OBS Studio streaming and recording software",
|
|
3477
|
+
"fileNamePattern": {
|
|
3478
|
+
"amd64": {
|
|
3479
|
+
"linux": null,
|
|
3480
|
+
"windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3481
|
+
"macos": null
|
|
3482
|
+
},
|
|
3483
|
+
"arm64": {
|
|
3484
|
+
"linux": null,
|
|
3485
|
+
"windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3486
|
+
"macos": null
|
|
3487
|
+
}
|
|
3488
|
+
}
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"appName": "miktex",
|
|
3492
|
+
"repoURL": "CMD",
|
|
3493
|
+
"doc": "📝 LaTeX distribution for Windows",
|
|
3494
|
+
"fileNamePattern": {
|
|
3495
|
+
"amd64": {
|
|
3496
|
+
"linux": null,
|
|
3497
|
+
"windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3498
|
+
"macos": null
|
|
3499
|
+
},
|
|
3500
|
+
"arm64": {
|
|
3501
|
+
"linux": null,
|
|
3502
|
+
"windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3503
|
+
"macos": null
|
|
3504
|
+
}
|
|
3505
|
+
}
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
"appName": "texmaker",
|
|
3509
|
+
"repoURL": "CMD",
|
|
3510
|
+
"doc": "📄 LaTeX editor",
|
|
3511
|
+
"fileNamePattern": {
|
|
3512
|
+
"amd64": {
|
|
3513
|
+
"linux": null,
|
|
3514
|
+
"windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3515
|
+
"macos": null
|
|
3516
|
+
},
|
|
3517
|
+
"arm64": {
|
|
3518
|
+
"linux": null,
|
|
3519
|
+
"windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3520
|
+
"macos": null
|
|
3521
|
+
}
|
|
3522
|
+
}
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
"appName": "lapce",
|
|
3526
|
+
"repoURL": "CMD",
|
|
3527
|
+
"doc": "⚡ Lightning-fast code editor written in Rust",
|
|
3528
|
+
"fileNamePattern": {
|
|
3529
|
+
"amd64": {
|
|
3530
|
+
"linux": null,
|
|
3531
|
+
"windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3532
|
+
"macos": null
|
|
3533
|
+
},
|
|
3534
|
+
"arm64": {
|
|
3535
|
+
"linux": null,
|
|
3536
|
+
"windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3537
|
+
"macos": null
|
|
3538
|
+
}
|
|
3539
|
+
}
|
|
3540
|
+
},
|
|
3541
|
+
{
|
|
3542
|
+
"appName": "tesseract",
|
|
3543
|
+
"repoURL": "CMD",
|
|
3544
|
+
"doc": "🔤 OCR engine for text recognition",
|
|
3545
|
+
"fileNamePattern": {
|
|
3546
|
+
"amd64": {
|
|
3547
|
+
"linux": null,
|
|
3548
|
+
"windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3549
|
+
"macos": null
|
|
3550
|
+
},
|
|
3551
|
+
"arm64": {
|
|
3552
|
+
"linux": null,
|
|
3553
|
+
"windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3554
|
+
"macos": null
|
|
3555
|
+
}
|
|
3556
|
+
}
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
"appName": "perl",
|
|
3560
|
+
"repoURL": "CMD",
|
|
3561
|
+
"doc": "🍓 Strawberry Perl programming language",
|
|
3562
|
+
"fileNamePattern": {
|
|
3563
|
+
"amd64": {
|
|
3564
|
+
"linux": null,
|
|
3565
|
+
"windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3566
|
+
"macos": null
|
|
3567
|
+
},
|
|
3568
|
+
"arm64": {
|
|
3569
|
+
"linux": null,
|
|
3570
|
+
"windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3571
|
+
"macos": null
|
|
3572
|
+
}
|
|
3573
|
+
}
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
"appName": "db-browser-sqlite",
|
|
3577
|
+
"repoURL": "CMD",
|
|
3578
|
+
"doc": "🗄️ DB Browser for SQLite database tool",
|
|
3579
|
+
"fileNamePattern": {
|
|
3580
|
+
"amd64": {
|
|
3581
|
+
"linux": null,
|
|
3582
|
+
"windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3583
|
+
"macos": null
|
|
3584
|
+
},
|
|
3585
|
+
"arm64": {
|
|
3586
|
+
"linux": null,
|
|
3587
|
+
"windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3588
|
+
"macos": null
|
|
3589
|
+
}
|
|
3590
|
+
}
|
|
3591
|
+
},
|
|
3592
|
+
{
|
|
3593
|
+
"appName": "ssms",
|
|
3594
|
+
"repoURL": "CMD",
|
|
3595
|
+
"doc": "🗄️ SQL Server Management Studio",
|
|
3596
|
+
"fileNamePattern": {
|
|
3597
|
+
"amd64": {
|
|
3598
|
+
"linux": null,
|
|
3599
|
+
"windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3600
|
+
"macos": null
|
|
3601
|
+
},
|
|
3602
|
+
"arm64": {
|
|
3603
|
+
"linux": null,
|
|
3604
|
+
"windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3605
|
+
"macos": null
|
|
3606
|
+
}
|
|
3607
|
+
}
|
|
3608
|
+
},
|
|
3609
|
+
{
|
|
3610
|
+
"appName": "adobe-reader",
|
|
3611
|
+
"repoURL": "CMD",
|
|
3612
|
+
"doc": "📄 Adobe Acrobat Reader DC",
|
|
3613
|
+
"fileNamePattern": {
|
|
3614
|
+
"amd64": {
|
|
3615
|
+
"linux": null,
|
|
3616
|
+
"windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3617
|
+
"macos": null
|
|
3618
|
+
},
|
|
3619
|
+
"arm64": {
|
|
3620
|
+
"linux": null,
|
|
3621
|
+
"windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3622
|
+
"macos": null
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"appName": "julia",
|
|
3628
|
+
"repoURL": "CMD",
|
|
3629
|
+
"doc": "📊 Julia programming language",
|
|
3630
|
+
"fileNamePattern": {
|
|
3631
|
+
"amd64": {
|
|
3632
|
+
"linux": null,
|
|
3633
|
+
"windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3634
|
+
"macos": null
|
|
3635
|
+
},
|
|
3636
|
+
"arm64": {
|
|
3637
|
+
"linux": null,
|
|
3638
|
+
"windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3639
|
+
"macos": null
|
|
3640
|
+
}
|
|
3641
|
+
}
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
"appName": "awscli",
|
|
3645
|
+
"repoURL": "CMD",
|
|
3646
|
+
"doc": "☁️ AWS Command Line Interface",
|
|
3647
|
+
"fileNamePattern": {
|
|
3648
|
+
"amd64": {
|
|
3649
|
+
"linux": null,
|
|
3650
|
+
"windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3651
|
+
"macos": null
|
|
3652
|
+
},
|
|
3653
|
+
"arm64": {
|
|
3654
|
+
"linux": null,
|
|
3655
|
+
"windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3656
|
+
"macos": null
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
},
|
|
3660
|
+
{
|
|
3661
|
+
"appName": "notepadplusplus",
|
|
3662
|
+
"repoURL": "CMD",
|
|
3663
|
+
"doc": "📝 Notepad++ text editor",
|
|
3664
|
+
"fileNamePattern": {
|
|
3665
|
+
"amd64": {
|
|
3666
|
+
"linux": null,
|
|
3667
|
+
"windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3668
|
+
"macos": null
|
|
3669
|
+
},
|
|
3670
|
+
"arm64": {
|
|
3671
|
+
"linux": null,
|
|
3672
|
+
"windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3673
|
+
"macos": null
|
|
3674
|
+
}
|
|
3675
|
+
}
|
|
2605
3676
|
}
|
|
2606
3677
|
]
|
|
2607
|
-
}
|
|
3678
|
+
}
|