machineconfig 5.15__py3-none-any.whl → 7.66__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.
Potentially problematic release.
This version of machineconfig might be problematic. Click here for more details.
- machineconfig/__init__.py +0 -28
- machineconfig/cluster/remote/distribute.py +0 -1
- machineconfig/cluster/remote/file_manager.py +0 -2
- machineconfig/cluster/remote/script_execution.py +0 -1
- machineconfig/cluster/sessions_managers/{utils → helpers}/enhanced_command_runner.py +4 -6
- machineconfig/cluster/sessions_managers/utils/load_balancer.py +1 -1
- machineconfig/cluster/sessions_managers/utils/maker.py +69 -0
- machineconfig/cluster/sessions_managers/wt_local.py +114 -289
- machineconfig/cluster/sessions_managers/wt_local_manager.py +50 -193
- machineconfig/cluster/sessions_managers/wt_remote.py +51 -43
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +49 -197
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +6 -19
- 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_reporter.py +4 -2
- 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.py +81 -375
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +22 -169
- machineconfig/cluster/sessions_managers/zellij_remote.py +40 -41
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +13 -10
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +4 -8
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +5 -20
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +3 -9
- machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +3 -1
- machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper.py +298 -0
- machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_restart.py +77 -0
- machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_with_panes.py +228 -0
- machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_manager_helper.py +165 -0
- machineconfig/jobs/{python → installer}/check_installations.py +2 -3
- machineconfig/jobs/installer/custom/boxes.py +61 -0
- machineconfig/jobs/installer/custom/hx.py +76 -19
- machineconfig/jobs/installer/custom_dev/alacritty.py +4 -4
- machineconfig/jobs/installer/custom_dev/brave.py +1 -7
- 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 +30 -0
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +9 -18
- machineconfig/jobs/installer/custom_dev/sysabc.py +119 -0
- machineconfig/jobs/installer/custom_dev/wezterm.py +2 -19
- machineconfig/jobs/installer/installer_data.json +1101 -115
- machineconfig/jobs/installer/linux_scripts/brave.sh +4 -14
- machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +5 -17
- machineconfig/jobs/installer/linux_scripts/docker.sh +5 -17
- machineconfig/jobs/installer/linux_scripts/docker_start.sh +6 -14
- machineconfig/jobs/installer/linux_scripts/edge.sh +3 -11
- machineconfig/jobs/{linux/msc → installer/linux_scripts}/lid.sh +2 -8
- machineconfig/jobs/installer/linux_scripts/nerdfont.sh +5 -17
- machineconfig/jobs/{linux/msc → installer/linux_scripts}/network.sh +2 -8
- machineconfig/jobs/installer/linux_scripts/q.sh +1 -0
- machineconfig/jobs/installer/linux_scripts/redis.sh +6 -17
- machineconfig/jobs/installer/linux_scripts/vscode.sh +5 -17
- machineconfig/jobs/installer/linux_scripts/wezterm.sh +4 -12
- machineconfig/jobs/installer/package_groups.py +108 -180
- machineconfig/logger.py +0 -1
- machineconfig/profile/backup.toml +49 -0
- machineconfig/profile/bash_shell_profiles.md +11 -0
- machineconfig/profile/create_helper.py +74 -0
- machineconfig/profile/create_links.py +288 -0
- machineconfig/profile/create_links_export.py +100 -0
- machineconfig/profile/create_shell_profile.py +136 -0
- machineconfig/profile/mapper.toml +258 -0
- machineconfig/scripts/Restore-ThunderbirdProfile.ps1 +92 -0
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/linux/{share_cloud.sh → other/share_cloud.sh} +14 -25
- machineconfig/scripts/linux/wrap_mcfg +47 -0
- machineconfig/scripts/nu/wrap_mcfg.nu +69 -0
- machineconfig/scripts/python/agents.py +92 -103
- machineconfig/scripts/python/ai/command_runner/command_runner.sh +9 -0
- machineconfig/scripts/python/ai/command_runner/prompt.txt +9 -0
- machineconfig/scripts/python/ai/generate_files.py +307 -42
- machineconfig/scripts/python/ai/initai.py +3 -28
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +17 -18
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +17 -18
- machineconfig/scripts/python/ai/solutions/_shared.py +9 -1
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +1 -1
- machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
- machineconfig/scripts/python/ai/solutions/generic.py +27 -4
- machineconfig/scripts/python/ai/vscode_tasks.py +37 -0
- machineconfig/scripts/python/cloud.py +29 -0
- machineconfig/scripts/python/croshell.py +111 -114
- machineconfig/scripts/python/define.py +31 -0
- machineconfig/scripts/python/devops.py +44 -103
- machineconfig/scripts/python/devops_navigator.py +10 -0
- machineconfig/scripts/python/env_manager/__init__.py +1 -0
- machineconfig/scripts/python/env_manager/path_manager_backend.py +47 -0
- machineconfig/scripts/python/env_manager/path_manager_tui.py +228 -0
- machineconfig/scripts/python/explore.py +49 -0
- machineconfig/scripts/python/fire_jobs.py +115 -152
- machineconfig/scripts/python/ftpx.py +29 -24
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json +14 -0
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py +37 -0
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py +22 -0
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py +42 -0
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +30 -0
- machineconfig/scripts/python/{fire_agents_help_launch.py → helpers_agents/fire_agents_help_launch.py} +34 -44
- machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py +34 -0
- machineconfig/scripts/python/helpers_agents/templates/prompt.txt +6 -0
- machineconfig/scripts/python/helpers_agents/templates/template.ps1 +14 -0
- machineconfig/scripts/python/helpers_agents/templates/template.sh +24 -0
- machineconfig/scripts/python/{cloud_copy.py → helpers_cloud/cloud_copy.py} +30 -23
- machineconfig/scripts/python/{cloud_mount.py → helpers_cloud/cloud_mount.py} +10 -18
- machineconfig/scripts/python/{cloud_sync.py → helpers_cloud/cloud_sync.py} +12 -18
- machineconfig/scripts/python/{helpers → helpers_cloud}/helpers2.py +1 -1
- machineconfig/scripts/python/helpers_croshell/crosh.py +39 -0
- machineconfig/scripts/python/{start_slidev.py → helpers_croshell/start_slidev.py} +2 -2
- machineconfig/scripts/python/helpers_devops/cli_config.py +95 -0
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +89 -0
- machineconfig/scripts/python/helpers_devops/cli_data.py +25 -0
- machineconfig/scripts/python/helpers_devops/cli_nw.py +134 -0
- machineconfig/scripts/python/helpers_devops/cli_repos.py +182 -0
- machineconfig/scripts/python/helpers_devops/cli_self.py +134 -0
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +137 -0
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +141 -0
- machineconfig/scripts/python/{share_terminal.py → helpers_devops/cli_terminal.py} +35 -23
- machineconfig/scripts/python/helpers_devops/cli_utils.py +96 -0
- machineconfig/scripts/python/{devops_backup_retrieve.py → helpers_devops/devops_backup_retrieve.py} +7 -10
- machineconfig/scripts/python/helpers_devops/devops_status.py +511 -0
- machineconfig/scripts/python/{devops_update_repos.py → helpers_devops/devops_update_repos.py} +68 -49
- machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1 +81 -0
- machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +3 -0
- machineconfig/scripts/python/{choose_wezterm_theme.py → helpers_devops/themes/choose_wezterm_theme.py} +2 -2
- machineconfig/scripts/python/helpers_fire_command/__init__.py +0 -0
- machineconfig/scripts/python/{helpers/helpers4.py → helpers_fire_command/file_wrangler.py} +56 -20
- machineconfig/scripts/python/{fire_jobs_args_helper.py → helpers_fire_command/fire_jobs_args_helper.py} +5 -1
- machineconfig/scripts/python/{fire_jobs_route_helper.py → helpers_fire_command/fire_jobs_route_helper.py} +47 -2
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py +0 -0
- machineconfig/scripts/python/helpers_msearch/__init__.py +5 -0
- machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfag +1 -1
- machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfg +1 -1
- machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfrga +1 -1
- machineconfig/scripts/python/helpers_navigator/__init__.py +20 -0
- machineconfig/scripts/python/helpers_navigator/command_builder.py +111 -0
- machineconfig/scripts/python/helpers_navigator/command_detail.py +44 -0
- machineconfig/scripts/python/helpers_navigator/command_tree.py +588 -0
- machineconfig/scripts/python/helpers_navigator/data_models.py +28 -0
- machineconfig/scripts/python/helpers_navigator/main_app.py +272 -0
- machineconfig/scripts/python/helpers_navigator/search_bar.py +15 -0
- machineconfig/scripts/python/helpers_repos/action.py +209 -0
- machineconfig/scripts/python/helpers_repos/action_helper.py +150 -0
- machineconfig/scripts/python/{repos_helper_clone.py → helpers_repos/clone.py} +2 -3
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +218 -0
- machineconfig/scripts/python/{count_lines.py → helpers_repos/count_lines.py} +10 -10
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +17 -0
- machineconfig/scripts/python/{repos_helper.py → helpers_repos/entrypoint.py} +9 -17
- machineconfig/scripts/python/helpers_repos/grource.py +340 -0
- machineconfig/scripts/python/{repos_helper_record.py → helpers_repos/record.py} +4 -3
- machineconfig/scripts/python/helpers_repos/sync.py +66 -0
- machineconfig/scripts/python/{repos_helper_update.py → helpers_repos/update.py} +3 -3
- machineconfig/scripts/python/helpers_sessions/__init__.py +0 -0
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +58 -0
- machineconfig/scripts/python/helpers_utils/download.py +152 -0
- machineconfig/scripts/python/helpers_utils/path.py +108 -0
- machineconfig/scripts/python/interactive.py +64 -84
- machineconfig/scripts/python/machineconfig.py +63 -0
- machineconfig/scripts/python/msearch.py +21 -0
- machineconfig/scripts/python/nw/__init__.py +0 -0
- machineconfig/scripts/python/{devops_add_identity.py → nw/devops_add_identity.py} +0 -2
- machineconfig/scripts/python/{devops_add_ssh_key.py → nw/devops_add_ssh_key.py} +73 -43
- machineconfig/scripts/{linux → python/nw}/mount_nfs +1 -1
- machineconfig/scripts/python/{mount_nfs.py → nw/mount_nfs.py} +3 -3
- machineconfig/scripts/{linux → python/nw}/mount_nw_drive +1 -2
- machineconfig/scripts/python/{mount_ssh.py → nw/mount_ssh.py} +3 -3
- machineconfig/scripts/python/{onetimeshare.py → nw/onetimeshare.py} +0 -1
- machineconfig/scripts/python/nw/ssh_debug_linux.py +391 -0
- machineconfig/scripts/python/nw/ssh_debug_windows.py +338 -0
- machineconfig/scripts/python/{wifi_conn.py → nw/wifi_conn.py} +1 -53
- machineconfig/scripts/python/{wsl_windows_transfer.py → nw/wsl_windows_transfer.py} +5 -4
- machineconfig/scripts/python/sessions.py +64 -44
- machineconfig/scripts/python/terminal.py +127 -0
- machineconfig/scripts/python/utils.py +66 -0
- machineconfig/scripts/windows/{mount_nfs.ps1 → mounts/mount_nfs.ps1} +1 -3
- machineconfig/scripts/windows/{mount_ssh.ps1 → mounts/mount_ssh.ps1} +1 -1
- machineconfig/scripts/windows/{share_smb.ps1 → mounts/share_smb.ps1} +0 -6
- machineconfig/scripts/windows/wrap_mcfg.ps1 +60 -0
- machineconfig/settings/broot/br.sh +0 -4
- 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 +9 -3
- machineconfig/settings/lf/linux/lfrc +10 -12
- machineconfig/settings/lf/windows/fzf_edit.ps1 +2 -2
- machineconfig/settings/lf/windows/lfrc +18 -38
- machineconfig/settings/lf/windows/mkfile.ps1 +1 -1
- machineconfig/settings/linters/.ruff.toml +1 -1
- machineconfig/settings/lvim/windows/archive/config_additional.lua +0 -6
- machineconfig/settings/marimo/marimo.toml +80 -0
- machineconfig/settings/marimo/snippets/globalize.py +34 -0
- machineconfig/settings/pistol/pistol.conf +1 -1
- machineconfig/settings/shells/bash/init.sh +55 -31
- machineconfig/settings/shells/nushell/config.nu +1 -34
- machineconfig/settings/shells/nushell/init.nu +127 -0
- machineconfig/settings/shells/pwsh/init.ps1 +60 -43
- machineconfig/settings/shells/starship/starship.toml +16 -0
- machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
- machineconfig/settings/shells/wt/settings.json +32 -17
- machineconfig/settings/shells/zsh/init.sh +89 -0
- machineconfig/settings/svim/linux/init.toml +0 -4
- machineconfig/settings/svim/windows/init.toml +0 -3
- machineconfig/settings/yazi/init.lua +57 -0
- machineconfig/settings/yazi/keymap_linux.toml +79 -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/yazi.toml +13 -0
- machineconfig/setup_linux/__init__.py +10 -0
- machineconfig/setup_linux/apps_desktop.sh +89 -0
- machineconfig/setup_linux/apps_gui.sh +64 -0
- machineconfig/setup_linux/{nix → others}/cli_installation.sh +9 -29
- machineconfig/setup_linux/ssh/openssh_all.sh +25 -0
- machineconfig/setup_linux/ssh/openssh_wsl.sh +38 -0
- machineconfig/setup_linux/uv.sh +15 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +26 -6
- machineconfig/setup_mac/__init__.py +16 -0
- machineconfig/setup_mac/apps_gui.sh +248 -0
- machineconfig/setup_mac/ssh/openssh_setup.sh +114 -0
- machineconfig/setup_mac/uv.sh +36 -0
- machineconfig/setup_windows/__init__.py +8 -0
- machineconfig/setup_windows/others/power_options.ps1 +7 -0
- machineconfig/setup_windows/ssh/add-sshkey.ps1 +29 -0
- machineconfig/setup_windows/ssh/add_identity.ps1 +11 -0
- machineconfig/setup_windows/ssh/openssh-server.ps1 +37 -0
- machineconfig/setup_windows/uv.ps1 +10 -0
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +27 -10
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +16 -0
- machineconfig/utils/accessories.py +7 -5
- machineconfig/utils/cloud/onedrive/README.md +139 -0
- machineconfig/utils/code.py +133 -106
- machineconfig/utils/files/art/fat_croco.txt +10 -0
- machineconfig/utils/files/art/halfwit_croco.txt +9 -0
- machineconfig/utils/files/art/happy_croco.txt +22 -0
- machineconfig/utils/files/art/water_croco.txt +11 -0
- machineconfig/utils/files/ascii_art.py +1 -1
- machineconfig/utils/files/dbms.py +257 -0
- machineconfig/utils/files/headers.py +11 -14
- machineconfig/utils/files/ouch/__init__.py +0 -0
- machineconfig/utils/files/ouch/decompress.py +45 -0
- machineconfig/utils/files/read.py +10 -18
- machineconfig/utils/installer_utils/installer_class.py +68 -126
- machineconfig/utils/installer_utils/{installer.py → installer_cli.py} +109 -117
- machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +31 -81
- machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +44 -74
- machineconfig/utils/io.py +77 -23
- machineconfig/utils/links.py +254 -162
- machineconfig/utils/meta.py +255 -0
- machineconfig/utils/notifications.py +1 -1
- machineconfig/utils/options.py +13 -3
- machineconfig/utils/path_extended.py +46 -100
- machineconfig/utils/path_helper.py +75 -22
- machineconfig/utils/procs.py +50 -70
- machineconfig/utils/scheduler.py +94 -97
- machineconfig/utils/scheduling.py +0 -3
- machineconfig/utils/schemas/fire_agents/fire_agents_input.py +1 -1
- machineconfig/utils/schemas/layouts/layout_types.py +1 -1
- machineconfig/utils/source_of_truth.py +3 -6
- machineconfig/utils/ssh.py +742 -264
- machineconfig/utils/ssh_utils/utils.py +0 -0
- machineconfig/utils/terminal.py +2 -113
- machineconfig/utils/tst.py +20 -0
- machineconfig/utils/upgrade_packages.py +109 -28
- machineconfig/utils/ve.py +11 -4
- machineconfig-7.66.dist-info/METADATA +124 -0
- machineconfig-7.66.dist-info/RECORD +451 -0
- machineconfig-7.66.dist-info/entry_points.txt +15 -0
- machineconfig/cluster/sessions_managers/ffile.py +0 -4
- machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -49
- machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -85
- machineconfig/jobs/linux/msc/cli_agents.sh +0 -16
- machineconfig/jobs/python/python_ve_symlink.py +0 -37
- machineconfig/jobs/python/vscode/api.py +0 -57
- machineconfig/jobs/python/vscode/sync_code.py +0 -73
- machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +0 -14
- machineconfig/jobs/windows/start_terminal.ps1 +0 -6
- machineconfig/jobs/windows/startup_file.cmd +0 -2
- machineconfig/profile/create.py +0 -303
- machineconfig/profile/shell.py +0 -176
- machineconfig/scripts/cloud/init.sh +0 -119
- machineconfig/scripts/linux/agents +0 -2
- machineconfig/scripts/linux/choose_wezterm_theme +0 -3
- machineconfig/scripts/linux/cloud_copy +0 -2
- machineconfig/scripts/linux/cloud_mount +0 -2
- machineconfig/scripts/linux/cloud_repo_sync +0 -2
- machineconfig/scripts/linux/cloud_sync +0 -2
- machineconfig/scripts/linux/croshell +0 -3
- machineconfig/scripts/linux/devops +0 -2
- machineconfig/scripts/linux/fire +0 -2
- machineconfig/scripts/linux/ftpx +0 -2
- machineconfig/scripts/linux/fzf2g +0 -21
- machineconfig/scripts/linux/fzffg +0 -25
- machineconfig/scripts/linux/gh_models +0 -2
- machineconfig/scripts/linux/initai +0 -2
- machineconfig/scripts/linux/kill_process +0 -2
- machineconfig/scripts/linux/scheduler +0 -2
- machineconfig/scripts/linux/sessions +0 -2
- machineconfig/scripts/linux/share_smb +0 -1
- machineconfig/scripts/linux/start_slidev +0 -2
- machineconfig/scripts/linux/start_terminals +0 -3
- machineconfig/scripts/linux/warp-cli.sh +0 -122
- machineconfig/scripts/linux/wifi_conn +0 -2
- machineconfig/scripts/linux/z_ls +0 -104
- machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md +0 -5
- machineconfig/scripts/python/cloud_repo_sync.py +0 -190
- machineconfig/scripts/python/count_lines_frontend.py +0 -16
- machineconfig/scripts/python/dotfile.py +0 -78
- machineconfig/scripts/python/fire_agents_helper_types.py +0 -12
- machineconfig/scripts/python/get_zellij_cmd.py +0 -15
- machineconfig/scripts/python/gh_models.py +0 -104
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +0 -116
- machineconfig/scripts/python/repos.py +0 -132
- machineconfig/scripts/python/repos_helper_action.py +0 -378
- machineconfig/scripts/python/snapshot.py +0 -25
- machineconfig/scripts/python/start_terminals.py +0 -121
- machineconfig/scripts/python/t4.py +0 -17
- machineconfig/scripts/windows/agents.ps1 +0 -1
- machineconfig/scripts/windows/choose_wezterm_theme.ps1 +0 -1
- machineconfig/scripts/windows/cloud_copy.ps1 +0 -1
- machineconfig/scripts/windows/cloud_mount.ps1 +0 -1
- machineconfig/scripts/windows/cloud_repo_sync.ps1 +0 -1
- machineconfig/scripts/windows/cloud_sync.ps1 +0 -1
- machineconfig/scripts/windows/croshell.ps1 +0 -1
- machineconfig/scripts/windows/devops.ps1 +0 -1
- machineconfig/scripts/windows/dotfile.ps1 +0 -1
- machineconfig/scripts/windows/fire.ps1 +0 -1
- machineconfig/scripts/windows/ftpx.ps1 +0 -1
- machineconfig/scripts/windows/gpt.ps1 +0 -1
- machineconfig/scripts/windows/grep.ps1 +0 -2
- machineconfig/scripts/windows/initai.ps1 +0 -1
- machineconfig/scripts/windows/kill_process.ps1 +0 -1
- machineconfig/scripts/windows/nano.ps1 +0 -3
- machineconfig/scripts/windows/pomodoro.ps1 +0 -1
- machineconfig/scripts/windows/reload_path.ps1 +0 -3
- machineconfig/scripts/windows/scheduler.ps1 +0 -1
- machineconfig/scripts/windows/sessions.ps1 +0 -1
- machineconfig/scripts/windows/snapshot.ps1 +0 -1
- machineconfig/scripts/windows/start_slidev.ps1 +0 -1
- machineconfig/scripts/windows/start_terminals.ps1 +0 -1
- machineconfig/scripts/windows/wifi_conn.ps1 +0 -2
- machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1 +0 -46
- machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1 +0 -76
- machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
- machineconfig/setup_linux/others/openssh-server_add_pub_key.sh +0 -57
- machineconfig/setup_linux/web_shortcuts/croshell.sh +0 -11
- machineconfig/setup_linux/web_shortcuts/ssh.sh +0 -52
- machineconfig/setup_windows/web_shortcuts/all.ps1 +0 -18
- machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +0 -36
- machineconfig/setup_windows/web_shortcuts/croshell.ps1 +0 -16
- machineconfig/setup_windows/web_shortcuts/ssh.ps1 +0 -11
- machineconfig/utils/ai/generate_file_checklist.py +0 -68
- machineconfig-5.15.dist-info/METADATA +0 -188
- machineconfig-5.15.dist-info/RECORD +0 -415
- machineconfig-5.15.dist-info/entry_points.txt +0 -18
- machineconfig/cluster/sessions_managers/{utils → helpers}/load_balancer_helper.py +0 -0
- machineconfig/scripts/linux/{share_nfs → other/share_nfs} +0 -0
- machineconfig/scripts/linux/{start_docker → other/start_docker} +0 -0
- machineconfig/scripts/linux/{switch_ip → other/switch_ip} +0 -0
- machineconfig/{jobs/python → scripts/python/helpers_agents}/__init__.py +0 -0
- machineconfig/scripts/python/{helpers → helpers_agents/agentic_frameworks}/__init__.py +0 -0
- machineconfig/scripts/python/{fire_agents_help_search.py → helpers_agents/fire_agents_help_search.py} +0 -0
- machineconfig/scripts/python/{fire_agents_load_balancer.py → helpers_agents/fire_agents_load_balancer.py} +0 -0
- machineconfig/{jobs/windows/msc/cli_agents.bat → scripts/python/helpers_cloud/__init__.py} +0 -0
- machineconfig/scripts/python/{helpers → helpers_cloud}/cloud_helpers.py +1 -1
- /machineconfig/scripts/python/{helpers → helpers_cloud}/helpers5.py +0 -0
- /machineconfig/{jobs/windows/msc/cli_agents.ps1 → scripts/python/helpers_croshell/__init__.py} +0 -0
- /machineconfig/scripts/python/{pomodoro.py → helpers_croshell/pomodoro.py} +0 -0
- /machineconfig/scripts/python/{scheduler.py → helpers_croshell/scheduler.py} +0 -0
- /machineconfig/scripts/python/{viewer.py → helpers_croshell/viewer.py} +0 -0
- /machineconfig/scripts/python/{viewer_template.py → helpers_croshell/viewer_template.py} +0 -0
- /machineconfig/scripts/python/{fire_jobs_streamlit_helper.py → helpers_devops/__init__.py} +0 -0
- /machineconfig/scripts/{windows/share_nfs.ps1 → python/helpers_devops/themes/__init__.py} +0 -0
- /machineconfig/{settings/yazi/keymap.toml → scripts/python/helpers_devops/themes/choose_starship_theme.ps1} +0 -0
- /machineconfig/scripts/python/{cloud_manager.py → helpers_fire_command/cloud_manager.py} +0 -0
- /machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/skrg +0 -0
- /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfb.ps1 +0 -0
- /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfg.ps1 +0 -0
- /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfrga.bat +0 -0
- /machineconfig/scripts/{linux → python/nw}/mount_drive +0 -0
- /machineconfig/scripts/python/{mount_nw_drive.py → nw/mount_nw_drive.py} +0 -0
- /machineconfig/scripts/{linux → python/nw}/mount_smb +0 -0
- /machineconfig/scripts/windows/{mount_nw.ps1 → mounts/mount_nw.ps1} +0 -0
- /machineconfig/scripts/windows/{mount_smb.ps1 → mounts/mount_smb.ps1} +0 -0
- /machineconfig/scripts/windows/{share_cloud.cmd → mounts/share_cloud.cmd} +0 -0
- /machineconfig/scripts/windows/{unlock_bitlocker.ps1 → mounts/unlock_bitlocker.ps1} +0 -0
- /machineconfig/setup_linux/{web_shortcuts → others}/android.sh +0 -0
- /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
- /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
- {machineconfig-5.15.dist-info → machineconfig-7.66.dist-info}/WHEEL +0 -0
- {machineconfig-5.15.dist-info → machineconfig-7.66.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,74 @@
|
|
|
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": "fx",
|
|
23
|
+
"repoURL": "https://github.com/antonmedv/fx",
|
|
24
|
+
"doc": "🧙♂️ Command-line JSON viewer",
|
|
25
|
+
"fileNamePattern": {
|
|
26
|
+
"amd64": {
|
|
27
|
+
"linux": "fx_linux_amd64",
|
|
28
|
+
"windows": "fx_windows_amd64.exe",
|
|
29
|
+
"macos": "fx_darwin_amd64"
|
|
30
|
+
},
|
|
31
|
+
"arm64": {
|
|
32
|
+
"linux": "fx_linux_arm64",
|
|
33
|
+
"windows": "fx_windows_arm64.exe",
|
|
34
|
+
"macos": "fx_darwin_arm64"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"appName": "git",
|
|
40
|
+
"repoURL": "CMD",
|
|
41
|
+
"doc": "🧙♂️ Distributed version control system",
|
|
42
|
+
"fileNamePattern": {
|
|
43
|
+
"amd64": {
|
|
44
|
+
"linux": "sudo nala install git",
|
|
45
|
+
"windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
46
|
+
"macos": "brew install git"
|
|
47
|
+
},
|
|
48
|
+
"arm64": {
|
|
49
|
+
"linux": "sudo nala install git",
|
|
50
|
+
"windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
51
|
+
"macos": "brew install git"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"appName": "jq",
|
|
57
|
+
"repoURL": "https://github.com/jqlang/jq",
|
|
58
|
+
"doc": "🧙♂️ Command-line JSON processor",
|
|
59
|
+
"fileNamePattern": {
|
|
60
|
+
"amd64": {
|
|
61
|
+
"linux": "jq-linux-amd64",
|
|
62
|
+
"windows": "jq-windows-amd64.exe",
|
|
63
|
+
"macos": "jq-macos-amd64"
|
|
64
|
+
},
|
|
65
|
+
"arm64": {
|
|
66
|
+
"linux": "jq-linux-arm64",
|
|
67
|
+
"windows": null,
|
|
68
|
+
"macos": "jq-macos-arm64"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
4
72
|
{
|
|
5
73
|
"appName": "speedtest",
|
|
6
74
|
"repoURL": "CMD",
|
|
@@ -35,6 +103,23 @@
|
|
|
35
103
|
}
|
|
36
104
|
}
|
|
37
105
|
},
|
|
106
|
+
{
|
|
107
|
+
"appName": "timg",
|
|
108
|
+
"repoURL": "CMD",
|
|
109
|
+
"doc": "👁️ terminal image previewer.",
|
|
110
|
+
"fileNamePattern": {
|
|
111
|
+
"amd64": {
|
|
112
|
+
"linux": "sudo apt install timg",
|
|
113
|
+
"windows": null,
|
|
114
|
+
"macos": "brew install timg"
|
|
115
|
+
},
|
|
116
|
+
"arm64": {
|
|
117
|
+
"linux": "sudo apt install timg",
|
|
118
|
+
"windows": null,
|
|
119
|
+
"macos": "brew install timg"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
},
|
|
38
123
|
{
|
|
39
124
|
"appName": "diskonaut",
|
|
40
125
|
"repoURL": "https://github.com/imsnif/diskonaut",
|
|
@@ -139,11 +224,11 @@
|
|
|
139
224
|
},
|
|
140
225
|
{
|
|
141
226
|
"appName": "boxes",
|
|
142
|
-
"repoURL": "
|
|
227
|
+
"repoURL": "CMD",
|
|
143
228
|
"doc": "📦 ASCI draws boxes around text.",
|
|
144
229
|
"fileNamePattern": {
|
|
145
230
|
"amd64": {
|
|
146
|
-
"windows": "boxes
|
|
231
|
+
"windows": "boxes.py",
|
|
147
232
|
"linux": null,
|
|
148
233
|
"macos": null
|
|
149
234
|
},
|
|
@@ -171,6 +256,40 @@
|
|
|
171
256
|
}
|
|
172
257
|
}
|
|
173
258
|
},
|
|
259
|
+
{
|
|
260
|
+
"appName": "croc",
|
|
261
|
+
"repoURL": "https://github.com/schollz/croc",
|
|
262
|
+
"doc": "🦎 Easily and securely send and share things from one computer to another",
|
|
263
|
+
"fileNamePattern": {
|
|
264
|
+
"amd64": {
|
|
265
|
+
"linux": "croc_{version}_Linux-64bit.tar.gz",
|
|
266
|
+
"windows": "croc_{version}_Windows-64bit.zip",
|
|
267
|
+
"macos": "croc_{version}_macOS-64bit.tar.gz"
|
|
268
|
+
},
|
|
269
|
+
"arm64": {
|
|
270
|
+
"linux": "croc_{version}_Linux-ARM64.tar.gz",
|
|
271
|
+
"windows": null,
|
|
272
|
+
"macos": "croc_{version}_macOS-ARM64.tar.gz"
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"appName": "wormhole-rs",
|
|
278
|
+
"repoURL": "https://github.com/magic-wormhole/magic-wormhole.rs",
|
|
279
|
+
"doc": "🐛 Get things from one computer to another, safely (Rust implementation)",
|
|
280
|
+
"fileNamePattern": {
|
|
281
|
+
"amd64": {
|
|
282
|
+
"linux": "magic-wormhole-cli-x86_64-unknown-linux-gnu.tgz",
|
|
283
|
+
"windows": "magic-wormhole-cli-x86_64-pc-windows-gnu.tgz",
|
|
284
|
+
"macos": "magic-wormhole-cli-aarch64-apple-darwin.tgz"
|
|
285
|
+
},
|
|
286
|
+
"arm64": {
|
|
287
|
+
"linux": null,
|
|
288
|
+
"windows": null,
|
|
289
|
+
"macos": null
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
174
293
|
{
|
|
175
294
|
"appName": "easy-sharing",
|
|
176
295
|
"repoURL": "CMD",
|
|
@@ -194,14 +313,31 @@
|
|
|
194
313
|
"doc": "🔗 Easy file sharing tool",
|
|
195
314
|
"fileNamePattern": {
|
|
196
315
|
"amd64": {
|
|
197
|
-
"linux": "npm
|
|
198
|
-
"windows": "npm
|
|
199
|
-
"macos": "npm
|
|
316
|
+
"linux": "npm i -g @ezshare/cli",
|
|
317
|
+
"windows": "npm i -g @ezshare/cli",
|
|
318
|
+
"macos": "npm i -g @ezshare/cli"
|
|
319
|
+
},
|
|
320
|
+
"arm64": {
|
|
321
|
+
"linux": "npm i -g @ezshare/cli",
|
|
322
|
+
"windows": "npm i -g @ezshare/cli",
|
|
323
|
+
"macos": "npm i -g @ezshare/cli"
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"appName": "asciinema",
|
|
329
|
+
"repoURL": "https://github.com/asciinema/asciinema",
|
|
330
|
+
"doc": "🎥 Terminal session recorder",
|
|
331
|
+
"fileNamePattern": {
|
|
332
|
+
"amd64": {
|
|
333
|
+
"linux": "asciinema-x86_64-unknown-linux-gnu",
|
|
334
|
+
"windows": null,
|
|
335
|
+
"macos": "asciinema-x86_64-apple-darwin"
|
|
200
336
|
},
|
|
201
337
|
"arm64": {
|
|
202
|
-
"linux":
|
|
203
|
-
"windows":
|
|
204
|
-
"macos":
|
|
338
|
+
"linux": null,
|
|
339
|
+
"windows": null,
|
|
340
|
+
"macos": null
|
|
205
341
|
}
|
|
206
342
|
}
|
|
207
343
|
},
|
|
@@ -392,6 +528,40 @@
|
|
|
392
528
|
}
|
|
393
529
|
}
|
|
394
530
|
},
|
|
531
|
+
{
|
|
532
|
+
"appName": "cloudflare-warp",
|
|
533
|
+
"repoURL": "CMD",
|
|
534
|
+
"doc": "🌐 Cloudflare WARP VPN client",
|
|
535
|
+
"fileNamePattern": {
|
|
536
|
+
"amd64": {
|
|
537
|
+
"linux": null,
|
|
538
|
+
"windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
539
|
+
"macos": null
|
|
540
|
+
},
|
|
541
|
+
"arm64": {
|
|
542
|
+
"linux": null,
|
|
543
|
+
"windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
544
|
+
"macos": null
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"appName": "cloudflare-warp-cli",
|
|
550
|
+
"repoURL": "CMD",
|
|
551
|
+
"doc": "🌐 Cloudflare WARP VPN client in the terminal",
|
|
552
|
+
"fileNamePattern": {
|
|
553
|
+
"amd64": {
|
|
554
|
+
"linux": "cloudflare_warp_cli.py",
|
|
555
|
+
"windows": "cloudflare_warp_cli.py",
|
|
556
|
+
"macos": "cloudflare_warp_cli.py"
|
|
557
|
+
},
|
|
558
|
+
"arm64": {
|
|
559
|
+
"linux": "cloudflare_warp_cli.py",
|
|
560
|
+
"windows": "cloudflare_warp_cli.py",
|
|
561
|
+
"macos": "cloudflare_warp_cli.py"
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
},
|
|
395
565
|
{
|
|
396
566
|
"appName": "cpufetch",
|
|
397
567
|
"repoURL": "https://github.com/Dr-Noob/cpufetch",
|
|
@@ -562,6 +732,23 @@
|
|
|
562
732
|
}
|
|
563
733
|
}
|
|
564
734
|
},
|
|
735
|
+
{
|
|
736
|
+
"appName": "clifm",
|
|
737
|
+
"repoURL": "https://github.com/leo-arch/clifm",
|
|
738
|
+
"doc": "📂 A terminal file manager with vim-like keybindings.",
|
|
739
|
+
"fileNamePattern": {
|
|
740
|
+
"amd64": {
|
|
741
|
+
"linux": "clifm-{version}-linux-x86_64.tar.gz",
|
|
742
|
+
"macos": null,
|
|
743
|
+
"windows": null
|
|
744
|
+
},
|
|
745
|
+
"arm64": {
|
|
746
|
+
"linux": null,
|
|
747
|
+
"macos": null,
|
|
748
|
+
"windows": null
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
},
|
|
565
752
|
{
|
|
566
753
|
"appName": "lsd",
|
|
567
754
|
"repoURL": "https://github.com/lsd-rs/lsd",
|
|
@@ -840,12 +1027,12 @@
|
|
|
840
1027
|
"doc": "⚡ Blazing Fast Terminal File Manager.",
|
|
841
1028
|
"fileNamePattern": {
|
|
842
1029
|
"amd64": {
|
|
843
|
-
"linux": "yazi-x86_64-unknown-linux-
|
|
1030
|
+
"linux": "yazi-x86_64-unknown-linux-musl.zip",
|
|
844
1031
|
"macos": "yazi-x86_64-apple-darwin.zip",
|
|
845
1032
|
"windows": "yazi-x86_64-pc-windows-msvc.zip"
|
|
846
1033
|
},
|
|
847
1034
|
"arm64": {
|
|
848
|
-
"linux": "yazi-aarch64-unknown-linux-
|
|
1035
|
+
"linux": "yazi-aarch64-unknown-linux-musl.zip",
|
|
849
1036
|
"macos": "yazi-aarch64-apple-darwin.zip",
|
|
850
1037
|
"windows": "yazi-aarch64-pc-windows-msvc.zip"
|
|
851
1038
|
}
|
|
@@ -1004,6 +1191,23 @@
|
|
|
1004
1191
|
}
|
|
1005
1192
|
}
|
|
1006
1193
|
},
|
|
1194
|
+
{
|
|
1195
|
+
"appName": "cb",
|
|
1196
|
+
"repoURL": "CMD",
|
|
1197
|
+
"doc": "📋 Clipboard manager for the terminal",
|
|
1198
|
+
"fileNamePattern": {
|
|
1199
|
+
"amd64": {
|
|
1200
|
+
"linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1201
|
+
"macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1202
|
+
"windows": "winget install -e --id Slackadays.Clipboard"
|
|
1203
|
+
},
|
|
1204
|
+
"arm64": {
|
|
1205
|
+
"linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1206
|
+
"macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
|
|
1207
|
+
"windows": "winget install -e --id Slackadays.Clipboard"
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1007
1211
|
{
|
|
1008
1212
|
"appName": "atuin",
|
|
1009
1213
|
"repoURL": "https://github.com/atuinsh/atuin",
|
|
@@ -1027,13 +1231,13 @@
|
|
|
1027
1231
|
"doc": "🌐 browser in the shell",
|
|
1028
1232
|
"fileNamePattern": {
|
|
1029
1233
|
"amd64": {
|
|
1030
|
-
"linux":
|
|
1031
|
-
"macos":
|
|
1234
|
+
"linux": "browsh-v{version}-linux-amd64",
|
|
1235
|
+
"macos": "browsh-v{version}-darwin-amd64",
|
|
1032
1236
|
"windows": null
|
|
1033
1237
|
},
|
|
1034
1238
|
"arm64": {
|
|
1035
|
-
"linux":
|
|
1036
|
-
"macos":
|
|
1239
|
+
"linux": "browsh-v{version}-linux-arm64",
|
|
1240
|
+
"macos": "browsh-v{version}-darwin-arm64",
|
|
1037
1241
|
"windows": null
|
|
1038
1242
|
}
|
|
1039
1243
|
}
|
|
@@ -1089,6 +1293,57 @@
|
|
|
1089
1293
|
}
|
|
1090
1294
|
}
|
|
1091
1295
|
},
|
|
1296
|
+
{
|
|
1297
|
+
"appName": "sqlite3",
|
|
1298
|
+
"repoURL": "CMD",
|
|
1299
|
+
"doc": "A cli for sqlite",
|
|
1300
|
+
"fileNamePattern": {
|
|
1301
|
+
"amd64": {
|
|
1302
|
+
"linux": "sudo nala install sqlite3 -y",
|
|
1303
|
+
"macos": null,
|
|
1304
|
+
"windows": null
|
|
1305
|
+
},
|
|
1306
|
+
"arm64": {
|
|
1307
|
+
"linux": null,
|
|
1308
|
+
"macos": null,
|
|
1309
|
+
"windows": null
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"appName": "postgresql-client",
|
|
1315
|
+
"repoURL": "CMD",
|
|
1316
|
+
"doc": "A cli for postgresql",
|
|
1317
|
+
"fileNamePattern": {
|
|
1318
|
+
"amd64": {
|
|
1319
|
+
"linux": "sudo nala install postgresql-client -y",
|
|
1320
|
+
"macos": null,
|
|
1321
|
+
"windows": null
|
|
1322
|
+
},
|
|
1323
|
+
"arm64": {
|
|
1324
|
+
"linux": null,
|
|
1325
|
+
"macos": null,
|
|
1326
|
+
"windows": null
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"appName": "redis-cli",
|
|
1332
|
+
"repoURL": "CMD",
|
|
1333
|
+
"doc": "A cli for redis",
|
|
1334
|
+
"fileNamePattern": {
|
|
1335
|
+
"amd64": {
|
|
1336
|
+
"linux": "sudo nala install redis-tools -y",
|
|
1337
|
+
"macos": null,
|
|
1338
|
+
"windows": null
|
|
1339
|
+
},
|
|
1340
|
+
"arm64": {
|
|
1341
|
+
"linux": null,
|
|
1342
|
+
"macos": null,
|
|
1343
|
+
"windows": null
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1092
1347
|
{
|
|
1093
1348
|
"appName": "DBeaver",
|
|
1094
1349
|
"repoURL": "https://github.com/dbeaver/dbeaver",
|
|
@@ -1123,6 +1378,40 @@
|
|
|
1123
1378
|
}
|
|
1124
1379
|
}
|
|
1125
1380
|
},
|
|
1381
|
+
{
|
|
1382
|
+
"appName": "pgweb",
|
|
1383
|
+
"repoURL": "https://github.com/sosedoff/pgweb/",
|
|
1384
|
+
"doc": "🗃️ Web-based PostgreSQL database browser written in Go",
|
|
1385
|
+
"fileNamePattern": {
|
|
1386
|
+
"amd64": {
|
|
1387
|
+
"linux": "pgweb-linux-amd64.zip",
|
|
1388
|
+
"macos": "pgweb_darwin_amd64.zip",
|
|
1389
|
+
"windows": "pgweb_windows_amd64.zip"
|
|
1390
|
+
},
|
|
1391
|
+
"arm64": {
|
|
1392
|
+
"linux": "pgweb-linux-arm64.zip",
|
|
1393
|
+
"macos": "pgweb_darwin_arm64.zip",
|
|
1394
|
+
"windows": "pgweb_windows_arm64.zip"
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"appName": "dbgate",
|
|
1400
|
+
"repoURL": "https://github.com/dbgate/dbgate",
|
|
1401
|
+
"doc": "🗃️ Cross-platform database manager for developers and database administrators",
|
|
1402
|
+
"fileNamePattern": {
|
|
1403
|
+
"amd64": {
|
|
1404
|
+
"linux": "dbgate-{version}-linux_x64.tar.gz",
|
|
1405
|
+
"macos": "dbgate-{version}-mac_x64.zip",
|
|
1406
|
+
"windows": "dbgate-windows-latest.zip"
|
|
1407
|
+
},
|
|
1408
|
+
"arm64": {
|
|
1409
|
+
"linux": "dbgate-{version}-linux_arm64.tar.gz",
|
|
1410
|
+
"macos": "dbgate-{version}-mac_arm64.zip",
|
|
1411
|
+
"windows": "dbgate-windows-latest-arm64.exe"
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1126
1415
|
{
|
|
1127
1416
|
"appName": "duckdb",
|
|
1128
1417
|
"repoURL": "https://github.com/duckdb/duckdb",
|
|
@@ -1311,9 +1600,9 @@
|
|
|
1311
1600
|
}
|
|
1312
1601
|
},
|
|
1313
1602
|
{
|
|
1314
|
-
"appName": "
|
|
1603
|
+
"appName": "bw",
|
|
1315
1604
|
"repoURL": "CMD",
|
|
1316
|
-
"doc": "🔐
|
|
1605
|
+
"doc": "🔐 bitwarden is a password manager.",
|
|
1317
1606
|
"fileNamePattern": {
|
|
1318
1607
|
"amd64": {
|
|
1319
1608
|
"linux": "npm install -g @bitwarden/cli",
|
|
@@ -1418,14 +1707,14 @@
|
|
|
1418
1707
|
"doc": "🌐 cli to get info of ips",
|
|
1419
1708
|
"fileNamePattern": {
|
|
1420
1709
|
"amd64": {
|
|
1421
|
-
"linux": "
|
|
1422
|
-
"windows": "
|
|
1423
|
-
"macos": "
|
|
1710
|
+
"linux": "{version}_linux_amd64.tar.gz",
|
|
1711
|
+
"windows": "{version}_windows_amd64.zip",
|
|
1712
|
+
"macos": "{version}_darwin_amd64.tar.gz"
|
|
1424
1713
|
},
|
|
1425
1714
|
"arm64": {
|
|
1426
|
-
"linux": "
|
|
1427
|
-
"windows": "
|
|
1428
|
-
"macos": "
|
|
1715
|
+
"linux": "{version}_linux_arm64.tar.gz",
|
|
1716
|
+
"windows": "{version}_windows_arm64.zip",
|
|
1717
|
+
"macos": "{version}_darwin_arm64.tar.gz"
|
|
1429
1718
|
}
|
|
1430
1719
|
}
|
|
1431
1720
|
},
|
|
@@ -1520,9 +1809,9 @@
|
|
|
1520
1809
|
"doc": "📷 qr code scanner",
|
|
1521
1810
|
"fileNamePattern": {
|
|
1522
1811
|
"amd64": {
|
|
1523
|
-
"linux":
|
|
1524
|
-
"macos":
|
|
1525
|
-
"windows":
|
|
1812
|
+
"linux": "qrscan-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
1813
|
+
"macos": "qrscan-{version}-x86_64-apple-darwin.tar.gz",
|
|
1814
|
+
"windows": "qrscan-{version}-i686-pc-windows-msvc.zip"
|
|
1526
1815
|
},
|
|
1527
1816
|
"arm64": {
|
|
1528
1817
|
"linux": null,
|
|
@@ -1537,13 +1826,13 @@
|
|
|
1537
1826
|
"doc": "📂 A TUI like winscp",
|
|
1538
1827
|
"fileNamePattern": {
|
|
1539
1828
|
"amd64": {
|
|
1540
|
-
"linux":
|
|
1541
|
-
"macos":
|
|
1829
|
+
"linux": "termscp-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
1830
|
+
"macos": "termscp-{version}-x86_64-apple-darwin.tar.gz",
|
|
1542
1831
|
"windows": null
|
|
1543
1832
|
},
|
|
1544
1833
|
"arm64": {
|
|
1545
|
-
"linux":
|
|
1546
|
-
"macos":
|
|
1834
|
+
"linux": "termscp-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
1835
|
+
"macos": "termscp-{version}-aarch64-apple-darwin.tar.gz",
|
|
1547
1836
|
"windows": null
|
|
1548
1837
|
}
|
|
1549
1838
|
}
|
|
@@ -1571,14 +1860,31 @@
|
|
|
1571
1860
|
"doc": "🗂️ filebrowser provides a file managing interface within a specified directory",
|
|
1572
1861
|
"fileNamePattern": {
|
|
1573
1862
|
"amd64": {
|
|
1574
|
-
"linux":
|
|
1575
|
-
"macos":
|
|
1576
|
-
"windows":
|
|
1863
|
+
"linux": "linux-amd64-filebrowser.tar.gz",
|
|
1864
|
+
"macos": "darwin-amd64-filebrowser.tar.gz",
|
|
1865
|
+
"windows": "windows-amd64-filebrowser.zip"
|
|
1577
1866
|
},
|
|
1578
1867
|
"arm64": {
|
|
1579
|
-
"linux":
|
|
1580
|
-
"macos":
|
|
1581
|
-
"windows":
|
|
1868
|
+
"linux": "linux-arm64-filebrowser.tar.gz",
|
|
1869
|
+
"macos": "darwin-arm64-filebrowser.tar.gz",
|
|
1870
|
+
"windows": "windows-arm64-filebrowser.zip"
|
|
1871
|
+
}
|
|
1872
|
+
}
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"appName": "miniserve",
|
|
1876
|
+
"repoURL": "https://github.com/svenstaro/miniserve",
|
|
1877
|
+
"doc": "📂 A small, self-contained file server with directory listings",
|
|
1878
|
+
"fileNamePattern": {
|
|
1879
|
+
"amd64": {
|
|
1880
|
+
"linux": "miniserve-{version}-x86_64-unknown-linux-musl",
|
|
1881
|
+
"macos": "miniserve-{version}-x86_64-apple-darwin",
|
|
1882
|
+
"windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
|
|
1883
|
+
},
|
|
1884
|
+
"arm64": {
|
|
1885
|
+
"linux": "miniserve-{version}-aarch64-unknown-linux-musl",
|
|
1886
|
+
"macos": "miniserve-{version}-aarch64-apple-darwin",
|
|
1887
|
+
"windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
|
|
1582
1888
|
}
|
|
1583
1889
|
}
|
|
1584
1890
|
},
|
|
@@ -1588,13 +1894,13 @@
|
|
|
1588
1894
|
"doc": "☁️ Self-hosted file management system with muilt-cloud support.",
|
|
1589
1895
|
"fileNamePattern": {
|
|
1590
1896
|
"amd64": {
|
|
1591
|
-
"linux":
|
|
1592
|
-
"macos":
|
|
1897
|
+
"linux": "cloudreve_{version}_linux_amd64.tar.gz",
|
|
1898
|
+
"macos": "cloudreve_{version}_darwin_amd64.tar.gz",
|
|
1593
1899
|
"windows": null
|
|
1594
1900
|
},
|
|
1595
1901
|
"arm64": {
|
|
1596
|
-
"linux":
|
|
1597
|
-
"macos":
|
|
1902
|
+
"linux": "cloudreve_{version}_linux_arm64.tar.gz",
|
|
1903
|
+
"macos": "cloudreve_{version}_darwin_arm64.tar.gz",
|
|
1598
1904
|
"windows": null
|
|
1599
1905
|
}
|
|
1600
1906
|
}
|
|
@@ -1605,13 +1911,13 @@
|
|
|
1605
1911
|
"doc": "💾 backup program that is fast, efficient and secure. It supports the three major operating systems",
|
|
1606
1912
|
"fileNamePattern": {
|
|
1607
1913
|
"amd64": {
|
|
1608
|
-
"linux":
|
|
1609
|
-
"macos":
|
|
1610
|
-
"windows":
|
|
1914
|
+
"linux": "restic_{version}_linux_amd64.bz2",
|
|
1915
|
+
"macos": "restic_{version}_darwin_amd64.bz2",
|
|
1916
|
+
"windows": "restic_{version}_windows_amd64.zip"
|
|
1611
1917
|
},
|
|
1612
1918
|
"arm64": {
|
|
1613
|
-
"linux":
|
|
1614
|
-
"macos":
|
|
1919
|
+
"linux": "restic_{version}_linux_arm64.bz2",
|
|
1920
|
+
"macos": "restic_{version}_darwin_arm64.bz2",
|
|
1615
1921
|
"windows": null
|
|
1616
1922
|
}
|
|
1617
1923
|
}
|
|
@@ -1622,13 +1928,13 @@
|
|
|
1622
1928
|
"doc": "🔄 Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers.",
|
|
1623
1929
|
"fileNamePattern": {
|
|
1624
1930
|
"amd64": {
|
|
1625
|
-
"linux":
|
|
1626
|
-
"macos":
|
|
1627
|
-
"windows":
|
|
1931
|
+
"linux": "syncthing-linux-amd64-v{version}.tar.gz",
|
|
1932
|
+
"macos": "syncthing-osx-amd64-v{version}.tar.gz",
|
|
1933
|
+
"windows": "syncthing-windows-amd64-v{version}.zip"
|
|
1628
1934
|
},
|
|
1629
1935
|
"arm64": {
|
|
1630
|
-
"linux":
|
|
1631
|
-
"macos":
|
|
1936
|
+
"linux": "syncthing-linux-arm64-v{version}.tar.gz",
|
|
1937
|
+
"macos": "syncthing-osx-arm64-v{version}.tar.gz",
|
|
1632
1938
|
"windows": null
|
|
1633
1939
|
}
|
|
1634
1940
|
}
|
|
@@ -1639,13 +1945,13 @@
|
|
|
1639
1945
|
"doc": "🌐 Istio is an open source service mesh that layers transparently onto existing distributed applications",
|
|
1640
1946
|
"fileNamePattern": {
|
|
1641
1947
|
"amd64": {
|
|
1642
|
-
"linux":
|
|
1643
|
-
"macos":
|
|
1948
|
+
"linux": "istio-{version}-linux-amd64.tar.gz",
|
|
1949
|
+
"macos": "istio-{version}-osx-amd64.tar.gz",
|
|
1644
1950
|
"windows": null
|
|
1645
1951
|
},
|
|
1646
1952
|
"arm64": {
|
|
1647
|
-
"linux":
|
|
1648
|
-
"macos":
|
|
1953
|
+
"linux": "istio-{version}-linux-arm64.tar.gz",
|
|
1954
|
+
"macos": "istio-{version}-osx-arm64.tar.gz",
|
|
1649
1955
|
"windows": null
|
|
1650
1956
|
}
|
|
1651
1957
|
}
|
|
@@ -1656,13 +1962,13 @@
|
|
|
1656
1962
|
"doc": "⏲️ Pomodoro timer for the command-line",
|
|
1657
1963
|
"fileNamePattern": {
|
|
1658
1964
|
"amd64": {
|
|
1659
|
-
"linux":
|
|
1660
|
-
"macos":
|
|
1661
|
-
"windows":
|
|
1965
|
+
"linux": "openpomodoro-cli_{version}_linux_x86_64.tar.gz",
|
|
1966
|
+
"macos": "openpomodoro-cli_{version}_darwin_x86_64.tar.gz",
|
|
1967
|
+
"windows": "openpomodoro-cli_{version}_windows_x86_64.zip"
|
|
1662
1968
|
},
|
|
1663
1969
|
"arm64": {
|
|
1664
|
-
"linux":
|
|
1665
|
-
"macos":
|
|
1970
|
+
"linux": "openpomodoro-cli_{version}_linux_aarch64.tar.gz",
|
|
1971
|
+
"macos": "openpomodoro-cli_{version}_darwin_aarch64.tar.gz",
|
|
1666
1972
|
"windows": null
|
|
1667
1973
|
}
|
|
1668
1974
|
}
|
|
@@ -1673,14 +1979,14 @@
|
|
|
1673
1979
|
"doc": "🦀 Rust Language Server (LSP)",
|
|
1674
1980
|
"fileNamePattern": {
|
|
1675
1981
|
"amd64": {
|
|
1676
|
-
"linux":
|
|
1677
|
-
"macos":
|
|
1678
|
-
"windows":
|
|
1982
|
+
"linux": "rust-analyzer-x86_64-unknown-linux-gnu.gz",
|
|
1983
|
+
"macos": "rust-analyzer-x86_64-apple-darwin.gz",
|
|
1984
|
+
"windows": "rust-analyzer-x86_64-pc-windows-msvc.zip"
|
|
1679
1985
|
},
|
|
1680
1986
|
"arm64": {
|
|
1681
|
-
"linux":
|
|
1682
|
-
"macos":
|
|
1683
|
-
"windows":
|
|
1987
|
+
"linux": "rust-analyzer-aarch64-unknown-linux-gnu.gz",
|
|
1988
|
+
"macos": "rust-analyzer-aarch64-apple-darwin.gz",
|
|
1989
|
+
"windows": "rust-analyzer-aarch64-pc-windows-msvc.zip"
|
|
1684
1990
|
}
|
|
1685
1991
|
}
|
|
1686
1992
|
},
|
|
@@ -1690,31 +1996,31 @@
|
|
|
1690
1996
|
"doc": "🧹 cleans projects from litter files.",
|
|
1691
1997
|
"fileNamePattern": {
|
|
1692
1998
|
"amd64": {
|
|
1693
|
-
"linux":
|
|
1694
|
-
"macos":
|
|
1695
|
-
"windows":
|
|
1999
|
+
"linux": "kondo-linux-x86_64.tar.gz",
|
|
2000
|
+
"macos": "kondo-macos-x86_64.tar.gz",
|
|
2001
|
+
"windows": "kondo-windows-x86_64.zip"
|
|
1696
2002
|
},
|
|
1697
2003
|
"arm64": {
|
|
1698
|
-
"linux":
|
|
1699
|
-
"macos":
|
|
2004
|
+
"linux": "kondo-linux-aarch64.tar.gz",
|
|
2005
|
+
"macos": "kondo-macos-aarch64.tar.gz",
|
|
1700
2006
|
"windows": null
|
|
1701
2007
|
}
|
|
1702
2008
|
}
|
|
1703
2009
|
},
|
|
1704
2010
|
{
|
|
1705
2011
|
"appName": "tokei",
|
|
1706
|
-
"repoURL": "
|
|
2012
|
+
"repoURL": "CMD",
|
|
1707
2013
|
"doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
|
|
1708
2014
|
"fileNamePattern": {
|
|
1709
2015
|
"amd64": {
|
|
1710
|
-
"linux":
|
|
1711
|
-
"macos":
|
|
1712
|
-
"windows":
|
|
2016
|
+
"linux": "cargo install tokei",
|
|
2017
|
+
"macos": "brew install tokei",
|
|
2018
|
+
"windows": "winget install XAMPPRocky.tokei"
|
|
1713
2019
|
},
|
|
1714
2020
|
"arm64": {
|
|
1715
|
-
"linux":
|
|
1716
|
-
"macos":
|
|
1717
|
-
"windows":
|
|
2021
|
+
"linux": "cargo install tokei",
|
|
2022
|
+
"macos": "brew install tokei",
|
|
2023
|
+
"windows": "winget install XAMPPRocky.tokei"
|
|
1718
2024
|
}
|
|
1719
2025
|
}
|
|
1720
2026
|
},
|
|
@@ -1724,47 +2030,64 @@
|
|
|
1724
2030
|
"doc": "🐙 A simple terminal UI for git commands",
|
|
1725
2031
|
"fileNamePattern": {
|
|
1726
2032
|
"amd64": {
|
|
1727
|
-
"linux":
|
|
1728
|
-
"macos":
|
|
1729
|
-
"windows":
|
|
2033
|
+
"linux": "lazygit_{version}_linux_x86_64.tar.gz",
|
|
2034
|
+
"macos": "lazygit_{version}_darwin_x86_64.tar.gz",
|
|
2035
|
+
"windows": "lazygit_{version}_windows_x86_64.zip"
|
|
1730
2036
|
},
|
|
1731
2037
|
"arm64": {
|
|
1732
|
-
"linux":
|
|
1733
|
-
"macos":
|
|
2038
|
+
"linux": "lazygit_{version}_linux_arm64.tar.gz",
|
|
2039
|
+
"macos": "lazygit_{version}_darwin_arm64.tar.gz",
|
|
1734
2040
|
"windows": null
|
|
1735
2041
|
}
|
|
1736
2042
|
}
|
|
1737
2043
|
},
|
|
1738
2044
|
{
|
|
1739
|
-
"appName": "
|
|
1740
|
-
"repoURL": "
|
|
1741
|
-
"doc": "
|
|
2045
|
+
"appName": "docker",
|
|
2046
|
+
"repoURL": "CMD",
|
|
2047
|
+
"doc": "🐳 Docker is an open platform for developing, shipping, and running applications.",
|
|
1742
2048
|
"fileNamePattern": {
|
|
1743
2049
|
"amd64": {
|
|
1744
|
-
"linux":
|
|
1745
|
-
"macos":
|
|
2050
|
+
"linux": "docker.sh",
|
|
2051
|
+
"macos": "docker.sh",
|
|
1746
2052
|
"windows": null
|
|
1747
2053
|
},
|
|
1748
2054
|
"arm64": {
|
|
1749
|
-
"linux":
|
|
1750
|
-
"macos":
|
|
2055
|
+
"linux": "docker.sh",
|
|
2056
|
+
"macos": "docker.sh",
|
|
1751
2057
|
"windows": null
|
|
1752
2058
|
}
|
|
1753
2059
|
}
|
|
1754
2060
|
},
|
|
2061
|
+
{
|
|
2062
|
+
"appName": "lazydocker",
|
|
2063
|
+
"repoURL": "https://github.com/jesseduffield/lazydocker",
|
|
2064
|
+
"doc": "🐋 A simple terminal UI for both docker and docker-compose",
|
|
2065
|
+
"fileNamePattern": {
|
|
2066
|
+
"amd64": {
|
|
2067
|
+
"linux": "lazydocker_{version}_Linux_x86_64.tar.gz",
|
|
2068
|
+
"macos": "lazydocker_{version}_Darwin_x86_64.tar.gz",
|
|
2069
|
+
"windows": "lazydocker_{version}_Windows_x86_64.zip"
|
|
2070
|
+
},
|
|
2071
|
+
"arm64": {
|
|
2072
|
+
"linux": "lazydocker_{version}_Linux_arm64.tar.gz",
|
|
2073
|
+
"macos": "lazydocker_{version}_Darwin_arm64.tar.gz",
|
|
2074
|
+
"windows": "lazydocker_{version}_Windows_arm64.zip"
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
1755
2078
|
{
|
|
1756
2079
|
"appName": "onefetch",
|
|
1757
2080
|
"repoURL": "https://github.com/o2sh/onefetch",
|
|
1758
2081
|
"doc": "📊 Git repository summary on your terminal",
|
|
1759
2082
|
"fileNamePattern": {
|
|
1760
2083
|
"amd64": {
|
|
1761
|
-
"linux":
|
|
1762
|
-
"macos":
|
|
1763
|
-
"windows":
|
|
2084
|
+
"linux": "onefetch-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2085
|
+
"macos": "onefetch-{version}-x86_64-apple-darwin.tar.gz",
|
|
2086
|
+
"windows": "onefetch-{version}-x86_64-pc-windows-msvc.zip"
|
|
1764
2087
|
},
|
|
1765
2088
|
"arm64": {
|
|
1766
|
-
"linux":
|
|
1767
|
-
"macos":
|
|
2089
|
+
"linux": "onefetch-{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2090
|
+
"macos": "onefetch-{version}-aarch64-apple-darwin.tar.gz",
|
|
1768
2091
|
"windows": null
|
|
1769
2092
|
}
|
|
1770
2093
|
}
|
|
@@ -1792,9 +2115,9 @@
|
|
|
1792
2115
|
"doc": "🎯 A command runner",
|
|
1793
2116
|
"fileNamePattern": {
|
|
1794
2117
|
"amd64": {
|
|
1795
|
-
"linux":
|
|
1796
|
-
"macos":
|
|
1797
|
-
"windows":
|
|
2118
|
+
"linux": "gitcs_linux_amd64",
|
|
2119
|
+
"macos": "gitcs_darwin_amd64",
|
|
2120
|
+
"windows": "gitcs_windows_amd64.exe"
|
|
1798
2121
|
},
|
|
1799
2122
|
"arm64": {
|
|
1800
2123
|
"linux": null,
|
|
@@ -1911,14 +2234,14 @@
|
|
|
1911
2234
|
"doc": "🖥️ Text-based desktop environment inside your terminal",
|
|
1912
2235
|
"fileNamePattern": {
|
|
1913
2236
|
"amd64": {
|
|
1914
|
-
"linux":
|
|
1915
|
-
"macos":
|
|
1916
|
-
"windows":
|
|
2237
|
+
"linux": "vtm_linux_x86_64.tar.7z",
|
|
2238
|
+
"macos": "vtm_macos_any.tar.7z",
|
|
2239
|
+
"windows": "vtm_windows_x86_64.7z"
|
|
1917
2240
|
},
|
|
1918
2241
|
"arm64": {
|
|
1919
|
-
"linux":
|
|
1920
|
-
"macos":
|
|
1921
|
-
"windows":
|
|
2242
|
+
"linux": "vtm_linux_arm64.tar.7z",
|
|
2243
|
+
"macos": "vtm_macos_any.tar.7z",
|
|
2244
|
+
"windows": "vtm_windows_arm64.7z"
|
|
1922
2245
|
}
|
|
1923
2246
|
}
|
|
1924
2247
|
},
|
|
@@ -1957,14 +2280,14 @@
|
|
|
1957
2280
|
}
|
|
1958
2281
|
},
|
|
1959
2282
|
{
|
|
1960
|
-
"appName": "
|
|
2283
|
+
"appName": "nu",
|
|
1961
2284
|
"repoURL": "https://github.com/nushell/nushell",
|
|
1962
|
-
"doc": "🐚
|
|
2285
|
+
"doc": "🐚 Nushell, a cross-platform shell in Rust.",
|
|
1963
2286
|
"fileNamePattern": {
|
|
1964
2287
|
"amd64": {
|
|
1965
|
-
"linux":
|
|
1966
|
-
"macos":
|
|
1967
|
-
"windows":
|
|
2288
|
+
"linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2289
|
+
"macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
|
|
2290
|
+
"windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
|
|
1968
2291
|
},
|
|
1969
2292
|
"arm64": {
|
|
1970
2293
|
"linux": null,
|
|
@@ -2043,7 +2366,75 @@
|
|
|
2043
2366
|
}
|
|
2044
2367
|
},
|
|
2045
2368
|
{
|
|
2046
|
-
"appName": "
|
|
2369
|
+
"appName": "aichat",
|
|
2370
|
+
"repoURL": "https://github.com/sigoden/aichat",
|
|
2371
|
+
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2372
|
+
"fileNamePattern": {
|
|
2373
|
+
"amd64": {
|
|
2374
|
+
"linux": "aichat-{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
2375
|
+
"macos": "aichat-{version}-x86_64-apple-darwin.tar.gz",
|
|
2376
|
+
"windows": "aichat-{version}-x86_64-pc-windows-msvc.zip"
|
|
2377
|
+
},
|
|
2378
|
+
"arm64": {
|
|
2379
|
+
"linux": "aichat-{version}-aarch64-unknown-linux-musl.tar.gz",
|
|
2380
|
+
"macos": "aichat-{version}-aarch64-apple-darwin.tar.gz",
|
|
2381
|
+
"windows": "aichat-{version}-aarch64-pc-windows-msvc.zip"
|
|
2382
|
+
}
|
|
2383
|
+
}
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"appName": "qwen-code",
|
|
2387
|
+
"repoURL": "CMD",
|
|
2388
|
+
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2389
|
+
"fileNamePattern": {
|
|
2390
|
+
"amd64": {
|
|
2391
|
+
"linux": "npm install -g @qwen-code/qwen-code@latest",
|
|
2392
|
+
"windows": "npm install -g @qwen-code/qwen-code@latest",
|
|
2393
|
+
"macos": "npm install -g @qwen-code/qwen-code@latest"
|
|
2394
|
+
},
|
|
2395
|
+
"arm64": {
|
|
2396
|
+
"linux": "npm install -g @qwen-code/qwen-code@latest",
|
|
2397
|
+
"windows": "npm install -g @qwen-code/qwen-code@latest",
|
|
2398
|
+
"macos": "npm install -g @qwen-code/qwen-code@latest"
|
|
2399
|
+
}
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"appName": "cline",
|
|
2404
|
+
"repoURL": "CMD",
|
|
2405
|
+
"doc": "Cline agent extension in the terminal",
|
|
2406
|
+
"fileNamePattern": {
|
|
2407
|
+
"amd64": {
|
|
2408
|
+
"linux": "npm install -g cline",
|
|
2409
|
+
"windows": "npm install -g cline",
|
|
2410
|
+
"macos": "npm install -g cline"
|
|
2411
|
+
},
|
|
2412
|
+
"arm64": {
|
|
2413
|
+
"linux": "npm install -g cline",
|
|
2414
|
+
"windows": "npm install -g cline",
|
|
2415
|
+
"macos": "npm install -g cline"
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"appName": "kilocode",
|
|
2421
|
+
"repoURL": "CMD",
|
|
2422
|
+
"doc": "Kilocode agent extension in the terminal",
|
|
2423
|
+
"fileNamePattern": {
|
|
2424
|
+
"amd64": {
|
|
2425
|
+
"linux": "npm install -g @kilocode/cli",
|
|
2426
|
+
"windows": "npm install -g @kilocode/cli",
|
|
2427
|
+
"macos": "npm install -g @kilocode/cli"
|
|
2428
|
+
},
|
|
2429
|
+
"arm64": {
|
|
2430
|
+
"linux": "npm install -g @kilocode/cli",
|
|
2431
|
+
"windows": "npm install -g @kilocode/cli",
|
|
2432
|
+
"macos": "npm install -g @kilocode/cli"
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"appName": "copilot",
|
|
2047
2438
|
"repoURL": "CMD",
|
|
2048
2439
|
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2049
2440
|
"fileNamePattern": {
|
|
@@ -2094,7 +2485,7 @@
|
|
|
2094
2485
|
}
|
|
2095
2486
|
},
|
|
2096
2487
|
{
|
|
2097
|
-
"appName": "opencode
|
|
2488
|
+
"appName": "opencode",
|
|
2098
2489
|
"repoURL": "CMD",
|
|
2099
2490
|
"doc": "Terminal-based CLI agents and tools for productivity and coding.",
|
|
2100
2491
|
"fileNamePattern": {
|
|
@@ -2131,16 +2522,33 @@
|
|
|
2131
2522
|
"appName": "warp",
|
|
2132
2523
|
"repoURL": "CMD",
|
|
2133
2524
|
"doc": "Modern terminal with AI-powered features",
|
|
2525
|
+
"fileNamePattern": {
|
|
2526
|
+
"amd64": {
|
|
2527
|
+
"linux": "https://app.warp.dev/get_warp?package=deb",
|
|
2528
|
+
"windows": "winget install Warp.Warp",
|
|
2529
|
+
"macos": "brew install --cask warp"
|
|
2530
|
+
},
|
|
2531
|
+
"arm64": {
|
|
2532
|
+
"linux": "https://app.warp.dev/get_warp?package=deb_arm64",
|
|
2533
|
+
"windows": "winget install Warp.Warp",
|
|
2534
|
+
"macos": "brew install --cask warp"
|
|
2535
|
+
}
|
|
2536
|
+
}
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
"appName": "warp-terminal-cli",
|
|
2540
|
+
"repoURL": "CMD",
|
|
2541
|
+
"doc": "Modern terminal cli with AI-powered features",
|
|
2134
2542
|
"fileNamePattern": {
|
|
2135
2543
|
"amd64": {
|
|
2136
2544
|
"linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
|
|
2137
2545
|
"windows": null,
|
|
2138
|
-
"macos":
|
|
2546
|
+
"macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
|
|
2139
2547
|
},
|
|
2140
2548
|
"arm64": {
|
|
2141
2549
|
"linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
|
|
2142
2550
|
"windows": null,
|
|
2143
|
-
"macos":
|
|
2551
|
+
"macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
|
|
2144
2552
|
}
|
|
2145
2553
|
}
|
|
2146
2554
|
},
|
|
@@ -2213,7 +2621,7 @@
|
|
|
2213
2621
|
}
|
|
2214
2622
|
},
|
|
2215
2623
|
{
|
|
2216
|
-
"appName": "
|
|
2624
|
+
"appName": "brave",
|
|
2217
2625
|
"repoURL": "CMD",
|
|
2218
2626
|
"doc": "Privacy-focused web browser with built-in ad blocking",
|
|
2219
2627
|
"fileNamePattern": {
|
|
@@ -2281,7 +2689,7 @@
|
|
|
2281
2689
|
}
|
|
2282
2690
|
},
|
|
2283
2691
|
{
|
|
2284
|
-
"appName": "
|
|
2692
|
+
"appName": "gorilla",
|
|
2285
2693
|
"repoURL": "https://github.com/ShishirPatil/gorilla",
|
|
2286
2694
|
"doc": "natural language to API",
|
|
2287
2695
|
"fileNamePattern": {
|
|
@@ -2332,7 +2740,7 @@
|
|
|
2332
2740
|
}
|
|
2333
2741
|
},
|
|
2334
2742
|
{
|
|
2335
|
-
"appName": "
|
|
2743
|
+
"appName": "redis",
|
|
2336
2744
|
"repoURL": "CMD",
|
|
2337
2745
|
"doc": "submillisecond fast key-value db",
|
|
2338
2746
|
"fileNamePattern": {
|
|
@@ -2349,7 +2757,7 @@
|
|
|
2349
2757
|
}
|
|
2350
2758
|
},
|
|
2351
2759
|
{
|
|
2352
|
-
"appName": "
|
|
2760
|
+
"appName": "wezterm",
|
|
2353
2761
|
"repoURL": "CMD",
|
|
2354
2762
|
"doc": "Modern, GPU-accelerated terminal emulator",
|
|
2355
2763
|
"fileNamePattern": {
|
|
@@ -2415,6 +2823,584 @@
|
|
|
2415
2823
|
"macos": "hx.py"
|
|
2416
2824
|
}
|
|
2417
2825
|
}
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"appName": "file",
|
|
2829
|
+
"repoURL": "CMD",
|
|
2830
|
+
"doc": "🔍 File type identification utility",
|
|
2831
|
+
"fileNamePattern": {
|
|
2832
|
+
"amd64": {
|
|
2833
|
+
"linux": null,
|
|
2834
|
+
"windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
|
|
2835
|
+
"macos": null
|
|
2836
|
+
},
|
|
2837
|
+
"arm64": {
|
|
2838
|
+
"linux": null,
|
|
2839
|
+
"windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
|
|
2840
|
+
"macos": null
|
|
2841
|
+
}
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"appName": "oh-my-posh",
|
|
2846
|
+
"repoURL": "CMD",
|
|
2847
|
+
"doc": "✨ Prompt theme engine for any shell",
|
|
2848
|
+
"fileNamePattern": {
|
|
2849
|
+
"amd64": {
|
|
2850
|
+
"linux": null,
|
|
2851
|
+
"windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2852
|
+
"macos": null
|
|
2853
|
+
},
|
|
2854
|
+
"arm64": {
|
|
2855
|
+
"linux": null,
|
|
2856
|
+
"windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2857
|
+
"macos": null
|
|
2858
|
+
}
|
|
2859
|
+
}
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"appName": "vsredistrib",
|
|
2863
|
+
"repoURL": "CMD",
|
|
2864
|
+
"doc": "📦 Microsoft Visual C++ Redistributable",
|
|
2865
|
+
"fileNamePattern": {
|
|
2866
|
+
"amd64": {
|
|
2867
|
+
"linux": null,
|
|
2868
|
+
"windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2869
|
+
"macos": null
|
|
2870
|
+
},
|
|
2871
|
+
"arm64": {
|
|
2872
|
+
"linux": null,
|
|
2873
|
+
"windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2874
|
+
"macos": null
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"appName": "vsbuildtools",
|
|
2880
|
+
"repoURL": "CMD",
|
|
2881
|
+
"doc": "🔨 Visual Studio Build Tools",
|
|
2882
|
+
"fileNamePattern": {
|
|
2883
|
+
"amd64": {
|
|
2884
|
+
"linux": null,
|
|
2885
|
+
"windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2886
|
+
"macos": null
|
|
2887
|
+
},
|
|
2888
|
+
"arm64": {
|
|
2889
|
+
"linux": null,
|
|
2890
|
+
"windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2891
|
+
"macos": null
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"appName": "codeblocks",
|
|
2897
|
+
"repoURL": "CMD",
|
|
2898
|
+
"doc": "💻 IDE for C/C++",
|
|
2899
|
+
"fileNamePattern": {
|
|
2900
|
+
"amd64": {
|
|
2901
|
+
"linux": null,
|
|
2902
|
+
"windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2903
|
+
"macos": null
|
|
2904
|
+
},
|
|
2905
|
+
"arm64": {
|
|
2906
|
+
"linux": null,
|
|
2907
|
+
"windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2908
|
+
"macos": null
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2911
|
+
},
|
|
2912
|
+
{
|
|
2913
|
+
"appName": "make",
|
|
2914
|
+
"repoURL": "CMD",
|
|
2915
|
+
"doc": "🔧 GNU Make utility for building projects",
|
|
2916
|
+
"fileNamePattern": {
|
|
2917
|
+
"amd64": {
|
|
2918
|
+
"linux": null,
|
|
2919
|
+
"windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2920
|
+
"macos": null
|
|
2921
|
+
},
|
|
2922
|
+
"arm64": {
|
|
2923
|
+
"linux": null,
|
|
2924
|
+
"windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2925
|
+
"macos": null
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"appName": "gnupg",
|
|
2931
|
+
"repoURL": "CMD",
|
|
2932
|
+
"doc": "🔐 GNU Privacy Guard encryption tool",
|
|
2933
|
+
"fileNamePattern": {
|
|
2934
|
+
"amd64": {
|
|
2935
|
+
"linux": null,
|
|
2936
|
+
"windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2937
|
+
"macos": null
|
|
2938
|
+
},
|
|
2939
|
+
"arm64": {
|
|
2940
|
+
"linux": null,
|
|
2941
|
+
"windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2942
|
+
"macos": null
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
"appName": "graphviz",
|
|
2948
|
+
"repoURL": "CMD",
|
|
2949
|
+
"doc": "📊 Graph visualization software",
|
|
2950
|
+
"fileNamePattern": {
|
|
2951
|
+
"amd64": {
|
|
2952
|
+
"linux": "sudo nala install graphviz -y",
|
|
2953
|
+
"windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2954
|
+
"macos": "brew install graphviz"
|
|
2955
|
+
},
|
|
2956
|
+
"arm64": {
|
|
2957
|
+
"linux": "sudo nala install graphviz -y",
|
|
2958
|
+
"windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2959
|
+
"macos": "brew install graphviz"
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
"appName": "winfsp",
|
|
2965
|
+
"repoURL": "CMD",
|
|
2966
|
+
"doc": "💾 Windows File System Proxy",
|
|
2967
|
+
"fileNamePattern": {
|
|
2968
|
+
"amd64": {
|
|
2969
|
+
"linux": null,
|
|
2970
|
+
"windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2971
|
+
"macos": null
|
|
2972
|
+
},
|
|
2973
|
+
"arm64": {
|
|
2974
|
+
"linux": null,
|
|
2975
|
+
"windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2976
|
+
"macos": null
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"appName": "sshfs",
|
|
2982
|
+
"repoURL": "CMD",
|
|
2983
|
+
"doc": "🌐 Mount remote filesystems over SSH",
|
|
2984
|
+
"fileNamePattern": {
|
|
2985
|
+
"amd64": {
|
|
2986
|
+
"linux": "sudo nala install sshfs",
|
|
2987
|
+
"windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2988
|
+
"macos": "brew install sshfs"
|
|
2989
|
+
},
|
|
2990
|
+
"arm64": {
|
|
2991
|
+
"linux": "sudo nala install sshfs",
|
|
2992
|
+
"windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
2993
|
+
"macos": "brew install sshfs"
|
|
2994
|
+
}
|
|
2995
|
+
}
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"appName": "xming",
|
|
2999
|
+
"repoURL": "CMD",
|
|
3000
|
+
"doc": "🖥️ X11 server for Windows",
|
|
3001
|
+
"fileNamePattern": {
|
|
3002
|
+
"amd64": {
|
|
3003
|
+
"linux": null,
|
|
3004
|
+
"windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3005
|
+
"macos": null
|
|
3006
|
+
},
|
|
3007
|
+
"arm64": {
|
|
3008
|
+
"linux": null,
|
|
3009
|
+
"windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3010
|
+
"macos": null
|
|
3011
|
+
}
|
|
3012
|
+
}
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
"appName": "nodejs",
|
|
3016
|
+
"repoURL": "CMD",
|
|
3017
|
+
"doc": "🟢 JavaScript runtime environment",
|
|
3018
|
+
"fileNamePattern": {
|
|
3019
|
+
"amd64": {
|
|
3020
|
+
"linux": null,
|
|
3021
|
+
"windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3022
|
+
"macos": null
|
|
3023
|
+
},
|
|
3024
|
+
"arm64": {
|
|
3025
|
+
"linux": null,
|
|
3026
|
+
"windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3027
|
+
"macos": null
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
"appName": "rustup",
|
|
3033
|
+
"repoURL": "CMD",
|
|
3034
|
+
"doc": "🦀 Rust toolchain installer",
|
|
3035
|
+
"fileNamePattern": {
|
|
3036
|
+
"amd64": {
|
|
3037
|
+
"linux": null,
|
|
3038
|
+
"windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3039
|
+
"macos": null
|
|
3040
|
+
},
|
|
3041
|
+
"arm64": {
|
|
3042
|
+
"linux": null,
|
|
3043
|
+
"windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3044
|
+
"macos": null
|
|
3045
|
+
}
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
"appName": "mouse-without-borders",
|
|
3050
|
+
"repoURL": "CMD",
|
|
3051
|
+
"doc": "🖱️ Control multiple computers with one mouse",
|
|
3052
|
+
"fileNamePattern": {
|
|
3053
|
+
"amd64": {
|
|
3054
|
+
"linux": null,
|
|
3055
|
+
"windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3056
|
+
"macos": null
|
|
3057
|
+
},
|
|
3058
|
+
"arm64": {
|
|
3059
|
+
"linux": null,
|
|
3060
|
+
"windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3061
|
+
"macos": null
|
|
3062
|
+
}
|
|
3063
|
+
}
|
|
3064
|
+
},
|
|
3065
|
+
{
|
|
3066
|
+
"appName": "chrome",
|
|
3067
|
+
"repoURL": "CMD",
|
|
3068
|
+
"doc": "🌐 Google Chrome web browser",
|
|
3069
|
+
"fileNamePattern": {
|
|
3070
|
+
"amd64": {
|
|
3071
|
+
"linux": null,
|
|
3072
|
+
"windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3073
|
+
"macos": null
|
|
3074
|
+
},
|
|
3075
|
+
"arm64": {
|
|
3076
|
+
"linux": null,
|
|
3077
|
+
"windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3078
|
+
"macos": null
|
|
3079
|
+
}
|
|
3080
|
+
}
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"appName": "chrome-remote-desktop",
|
|
3084
|
+
"repoURL": "CMD",
|
|
3085
|
+
"doc": "🖥️ Chrome Remote Desktop Host",
|
|
3086
|
+
"fileNamePattern": {
|
|
3087
|
+
"amd64": {
|
|
3088
|
+
"linux": null,
|
|
3089
|
+
"windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3090
|
+
"macos": null
|
|
3091
|
+
},
|
|
3092
|
+
"arm64": {
|
|
3093
|
+
"linux": null,
|
|
3094
|
+
"windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3095
|
+
"macos": null
|
|
3096
|
+
}
|
|
3097
|
+
}
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"appName": "zoom",
|
|
3101
|
+
"repoURL": "CMD",
|
|
3102
|
+
"doc": "📹 Video conferencing software",
|
|
3103
|
+
"fileNamePattern": {
|
|
3104
|
+
"amd64": {
|
|
3105
|
+
"linux": null,
|
|
3106
|
+
"windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3107
|
+
"macos": null
|
|
3108
|
+
},
|
|
3109
|
+
"arm64": {
|
|
3110
|
+
"linux": null,
|
|
3111
|
+
"windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3112
|
+
"macos": null
|
|
3113
|
+
}
|
|
3114
|
+
}
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"appName": "7zip",
|
|
3118
|
+
"repoURL": "CMD",
|
|
3119
|
+
"doc": "📦 File archiver with high compression ratio",
|
|
3120
|
+
"fileNamePattern": {
|
|
3121
|
+
"amd64": {
|
|
3122
|
+
"linux": null,
|
|
3123
|
+
"windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3124
|
+
"macos": null
|
|
3125
|
+
},
|
|
3126
|
+
"arm64": {
|
|
3127
|
+
"linux": null,
|
|
3128
|
+
"windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3129
|
+
"macos": null
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"appName": "firefox",
|
|
3135
|
+
"repoURL": "CMD",
|
|
3136
|
+
"doc": "🦊 Mozilla Firefox web browser",
|
|
3137
|
+
"fileNamePattern": {
|
|
3138
|
+
"amd64": {
|
|
3139
|
+
"linux": null,
|
|
3140
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --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 \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3146
|
+
"macos": null
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"appName": "thunderbird",
|
|
3152
|
+
"repoURL": "CMD",
|
|
3153
|
+
"doc": "📧 Mozilla Thunderbird email client",
|
|
3154
|
+
"fileNamePattern": {
|
|
3155
|
+
"amd64": {
|
|
3156
|
+
"linux": null,
|
|
3157
|
+
"windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --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 \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3163
|
+
"macos": null
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
"appName": "streamlabs-obs",
|
|
3169
|
+
"repoURL": "CMD",
|
|
3170
|
+
"doc": "🎥 Streamlabs OBS streaming software",
|
|
3171
|
+
"fileNamePattern": {
|
|
3172
|
+
"amd64": {
|
|
3173
|
+
"linux": null,
|
|
3174
|
+
"windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --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 \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3180
|
+
"macos": null
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
"appName": "obs-studio",
|
|
3186
|
+
"repoURL": "CMD",
|
|
3187
|
+
"doc": "🎬 OBS Studio streaming and recording software",
|
|
3188
|
+
"fileNamePattern": {
|
|
3189
|
+
"amd64": {
|
|
3190
|
+
"linux": null,
|
|
3191
|
+
"windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --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 \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3197
|
+
"macos": null
|
|
3198
|
+
}
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
"appName": "miktex",
|
|
3203
|
+
"repoURL": "CMD",
|
|
3204
|
+
"doc": "📝 LaTeX distribution for Windows",
|
|
3205
|
+
"fileNamePattern": {
|
|
3206
|
+
"amd64": {
|
|
3207
|
+
"linux": null,
|
|
3208
|
+
"windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --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 \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3214
|
+
"macos": null
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
"appName": "texmaker",
|
|
3220
|
+
"repoURL": "CMD",
|
|
3221
|
+
"doc": "📄 LaTeX editor",
|
|
3222
|
+
"fileNamePattern": {
|
|
3223
|
+
"amd64": {
|
|
3224
|
+
"linux": null,
|
|
3225
|
+
"windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --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 \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3231
|
+
"macos": null
|
|
3232
|
+
}
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"appName": "lapce",
|
|
3237
|
+
"repoURL": "CMD",
|
|
3238
|
+
"doc": "⚡ Lightning-fast code editor written in Rust",
|
|
3239
|
+
"fileNamePattern": {
|
|
3240
|
+
"amd64": {
|
|
3241
|
+
"linux": null,
|
|
3242
|
+
"windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3243
|
+
"macos": null
|
|
3244
|
+
},
|
|
3245
|
+
"arm64": {
|
|
3246
|
+
"linux": null,
|
|
3247
|
+
"windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3248
|
+
"macos": null
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3252
|
+
{
|
|
3253
|
+
"appName": "tesseract",
|
|
3254
|
+
"repoURL": "CMD",
|
|
3255
|
+
"doc": "🔤 OCR engine for text recognition",
|
|
3256
|
+
"fileNamePattern": {
|
|
3257
|
+
"amd64": {
|
|
3258
|
+
"linux": null,
|
|
3259
|
+
"windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --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 \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3265
|
+
"macos": null
|
|
3266
|
+
}
|
|
3267
|
+
}
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"appName": "perl",
|
|
3271
|
+
"repoURL": "CMD",
|
|
3272
|
+
"doc": "🍓 Strawberry Perl programming language",
|
|
3273
|
+
"fileNamePattern": {
|
|
3274
|
+
"amd64": {
|
|
3275
|
+
"linux": null,
|
|
3276
|
+
"windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3277
|
+
"macos": null
|
|
3278
|
+
},
|
|
3279
|
+
"arm64": {
|
|
3280
|
+
"linux": null,
|
|
3281
|
+
"windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3282
|
+
"macos": null
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"appName": "db-browser-sqlite",
|
|
3288
|
+
"repoURL": "CMD",
|
|
3289
|
+
"doc": "🗄️ DB Browser for SQLite database tool",
|
|
3290
|
+
"fileNamePattern": {
|
|
3291
|
+
"amd64": {
|
|
3292
|
+
"linux": null,
|
|
3293
|
+
"windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --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 \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3299
|
+
"macos": null
|
|
3300
|
+
}
|
|
3301
|
+
}
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"appName": "ssms",
|
|
3305
|
+
"repoURL": "CMD",
|
|
3306
|
+
"doc": "🗄️ SQL Server Management Studio",
|
|
3307
|
+
"fileNamePattern": {
|
|
3308
|
+
"amd64": {
|
|
3309
|
+
"linux": null,
|
|
3310
|
+
"windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --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 \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3316
|
+
"macos": null
|
|
3317
|
+
}
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"appName": "adobe-reader",
|
|
3322
|
+
"repoURL": "CMD",
|
|
3323
|
+
"doc": "📄 Adobe Acrobat Reader DC",
|
|
3324
|
+
"fileNamePattern": {
|
|
3325
|
+
"amd64": {
|
|
3326
|
+
"linux": null,
|
|
3327
|
+
"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",
|
|
3328
|
+
"macos": null
|
|
3329
|
+
},
|
|
3330
|
+
"arm64": {
|
|
3331
|
+
"linux": null,
|
|
3332
|
+
"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",
|
|
3333
|
+
"macos": null
|
|
3334
|
+
}
|
|
3335
|
+
}
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"appName": "julia",
|
|
3339
|
+
"repoURL": "CMD",
|
|
3340
|
+
"doc": "📊 Julia programming language",
|
|
3341
|
+
"fileNamePattern": {
|
|
3342
|
+
"amd64": {
|
|
3343
|
+
"linux": null,
|
|
3344
|
+
"windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --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 \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3350
|
+
"macos": null
|
|
3351
|
+
}
|
|
3352
|
+
}
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
"appName": "chafa",
|
|
3356
|
+
"repoURL": "CMD",
|
|
3357
|
+
"doc": "🖼️ Terminal graphics and image viewer",
|
|
3358
|
+
"fileNamePattern": {
|
|
3359
|
+
"amd64": {
|
|
3360
|
+
"linux": "sudo nala install chafa -y",
|
|
3361
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3362
|
+
"macos": "brew install chafa"
|
|
3363
|
+
},
|
|
3364
|
+
"arm64": {
|
|
3365
|
+
"linux": "sudo nala install chafa -y",
|
|
3366
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3367
|
+
"macos": "brew install chafa"
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
"appName": "awscli",
|
|
3373
|
+
"repoURL": "CMD",
|
|
3374
|
+
"doc": "☁️ AWS Command Line Interface",
|
|
3375
|
+
"fileNamePattern": {
|
|
3376
|
+
"amd64": {
|
|
3377
|
+
"linux": null,
|
|
3378
|
+
"windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --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 \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3384
|
+
"macos": null
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"appName": "notepadplusplus",
|
|
3390
|
+
"repoURL": "CMD",
|
|
3391
|
+
"doc": "📝 Notepad++ text editor",
|
|
3392
|
+
"fileNamePattern": {
|
|
3393
|
+
"amd64": {
|
|
3394
|
+
"linux": null,
|
|
3395
|
+
"windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --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 \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3401
|
+
"macos": null
|
|
3402
|
+
}
|
|
3403
|
+
}
|
|
2418
3404
|
}
|
|
2419
3405
|
]
|
|
2420
3406
|
}
|