machineconfig 3.7__py3-none-any.whl → 7.69__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.

Files changed (465) hide show
  1. machineconfig/__init__.py +0 -28
  2. machineconfig/cluster/remote/distribute.py +0 -1
  3. machineconfig/cluster/remote/file_manager.py +0 -2
  4. machineconfig/cluster/remote/script_execution.py +1 -2
  5. machineconfig/cluster/sessions_managers/{enhanced_command_runner.py → helpers/enhanced_command_runner.py} +4 -6
  6. machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py +145 -0
  7. machineconfig/cluster/sessions_managers/utils/load_balancer.py +53 -0
  8. machineconfig/cluster/sessions_managers/utils/maker.py +69 -0
  9. machineconfig/cluster/sessions_managers/wt_local.py +128 -330
  10. machineconfig/cluster/sessions_managers/wt_local_manager.py +53 -187
  11. machineconfig/cluster/sessions_managers/wt_remote.py +51 -43
  12. machineconfig/cluster/sessions_managers/wt_remote_manager.py +49 -197
  13. machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +6 -19
  14. machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py +52 -0
  15. machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py +50 -0
  16. machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py +4 -2
  17. machineconfig/cluster/sessions_managers/wt_utils/status_reporting.py +76 -0
  18. machineconfig/cluster/sessions_managers/wt_utils/wt_helpers.py +199 -0
  19. machineconfig/cluster/sessions_managers/zellij_local.py +81 -375
  20. machineconfig/cluster/sessions_managers/zellij_local_manager.py +22 -172
  21. machineconfig/cluster/sessions_managers/zellij_remote.py +40 -41
  22. machineconfig/cluster/sessions_managers/zellij_remote_manager.py +13 -10
  23. machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +4 -8
  24. machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +5 -20
  25. machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +3 -9
  26. machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +3 -1
  27. machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper.py +298 -0
  28. machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_restart.py +77 -0
  29. machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_with_panes.py +228 -0
  30. machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_manager_helper.py +165 -0
  31. machineconfig/jobs/{python → installer}/check_installations.py +7 -21
  32. machineconfig/jobs/installer/custom/boxes.py +61 -0
  33. machineconfig/jobs/installer/custom/gh.py +128 -0
  34. machineconfig/jobs/{python_custom_installers → installer/custom}/hx.py +84 -18
  35. machineconfig/jobs/installer/custom_dev/alacritty.py +86 -0
  36. machineconfig/jobs/installer/custom_dev/brave.py +82 -0
  37. machineconfig/jobs/installer/custom_dev/bypass_paywall.py +59 -0
  38. machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
  39. machineconfig/jobs/installer/custom_dev/code.py +63 -0
  40. machineconfig/jobs/{python_custom_installers/dev → installer/custom_dev}/cursor.py +7 -7
  41. machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +30 -0
  42. machineconfig/jobs/installer/custom_dev/espanso.py +117 -0
  43. machineconfig/jobs/installer/custom_dev/goes.py +68 -0
  44. machineconfig/jobs/installer/custom_dev/lvim.py +89 -0
  45. machineconfig/jobs/installer/custom_dev/nerdfont.py +111 -0
  46. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +149 -0
  47. machineconfig/jobs/installer/custom_dev/redis.py +88 -0
  48. machineconfig/jobs/installer/custom_dev/sysabc.py +145 -0
  49. machineconfig/jobs/installer/custom_dev/wezterm.py +92 -0
  50. machineconfig/jobs/{python_custom_installers/dev → installer/custom_dev}/winget.py +2 -3
  51. machineconfig/jobs/installer/installer_data.json +3440 -0
  52. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/brave.sh +4 -14
  53. machineconfig/jobs/{python_custom_installers/scripts/linux/warp-cli.sh → installer/linux_scripts/cloudflare_warp_cli.sh} +5 -17
  54. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/docker.sh +6 -18
  55. machineconfig/jobs/installer/linux_scripts/docker_start.sh +37 -0
  56. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/edge.sh +3 -11
  57. machineconfig/jobs/{linux/msc → installer/linux_scripts}/lid.sh +2 -8
  58. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/nerdfont.sh +5 -17
  59. machineconfig/jobs/{linux/msc → installer/linux_scripts}/network.sh +2 -8
  60. machineconfig/jobs/installer/linux_scripts/ngrok.sh +6 -0
  61. machineconfig/jobs/installer/linux_scripts/q.sh +9 -0
  62. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/redis.sh +6 -17
  63. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/vscode.sh +5 -17
  64. machineconfig/jobs/{python_custom_installers/scripts/linux → installer/linux_scripts}/wezterm.sh +4 -12
  65. machineconfig/jobs/installer/package_groups.py +255 -0
  66. machineconfig/logger.py +0 -1
  67. machineconfig/profile/backup.toml +49 -0
  68. machineconfig/profile/bash_shell_profiles.md +11 -0
  69. machineconfig/profile/create_helper.py +74 -0
  70. machineconfig/profile/create_links.py +288 -0
  71. machineconfig/profile/create_links_export.py +100 -0
  72. machineconfig/profile/create_shell_profile.py +136 -0
  73. machineconfig/profile/mapper.toml +258 -0
  74. machineconfig/scripts/__init__.py +0 -4
  75. machineconfig/scripts/linux/{share_cloud.sh → other/share_cloud.sh} +14 -25
  76. machineconfig/scripts/linux/wrap_mcfg +47 -0
  77. machineconfig/scripts/nu/wrap_mcfg.nu +69 -0
  78. machineconfig/scripts/python/agents.py +198 -0
  79. machineconfig/scripts/python/ai/command_runner/command_runner.sh +9 -0
  80. machineconfig/scripts/python/ai/command_runner/prompt.txt +9 -0
  81. machineconfig/scripts/python/ai/generate_files.py +307 -42
  82. machineconfig/scripts/python/ai/{mcinit.py → initai.py} +3 -38
  83. machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +114 -0
  84. machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +88 -22
  85. machineconfig/scripts/python/ai/solutions/_shared.py +9 -1
  86. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +4 -1
  87. machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
  88. machineconfig/scripts/python/ai/solutions/gemini/settings.json +1 -1
  89. machineconfig/scripts/python/ai/solutions/generic.py +27 -4
  90. machineconfig/scripts/python/ai/vscode_tasks.py +37 -0
  91. machineconfig/scripts/python/cloud.py +29 -0
  92. machineconfig/scripts/python/croshell.py +129 -198
  93. machineconfig/scripts/python/define.py +31 -0
  94. machineconfig/scripts/python/devops.py +45 -131
  95. machineconfig/scripts/python/devops_navigator.py +6 -0
  96. machineconfig/scripts/python/env_manager/__init__.py +1 -0
  97. machineconfig/scripts/python/env_manager/path_manager_backend.py +47 -0
  98. machineconfig/scripts/python/env_manager/path_manager_tui.py +228 -0
  99. machineconfig/scripts/python/fire_jobs.py +166 -235
  100. machineconfig/scripts/python/ftpx.py +164 -100
  101. machineconfig/scripts/python/helpers/ast_search.py +74 -0
  102. machineconfig/scripts/python/helpers/repo_rag.py +325 -0
  103. machineconfig/scripts/python/helpers/symantic_search.py +25 -0
  104. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json +14 -0
  105. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py +37 -0
  106. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py +22 -0
  107. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py +42 -0
  108. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +30 -0
  109. machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py +110 -0
  110. machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py +34 -0
  111. machineconfig/scripts/python/helpers_agents/fire_agents_load_balancer.py +22 -0
  112. machineconfig/scripts/python/helpers_agents/templates/prompt.txt +6 -0
  113. machineconfig/scripts/python/helpers_agents/templates/template.ps1 +14 -0
  114. machineconfig/scripts/python/helpers_agents/templates/template.sh +24 -0
  115. machineconfig/scripts/python/{cloud_copy.py → helpers_cloud/cloud_copy.py} +52 -39
  116. machineconfig/scripts/python/{cloud_mount.py → helpers_cloud/cloud_mount.py} +13 -18
  117. machineconfig/scripts/python/helpers_cloud/cloud_sync.py +81 -0
  118. machineconfig/scripts/python/{helpers → helpers_cloud}/helpers2.py +3 -3
  119. machineconfig/scripts/python/helpers_croshell/crosh.py +39 -0
  120. machineconfig/scripts/python/{scheduler.py → helpers_croshell/scheduler.py} +0 -1
  121. machineconfig/scripts/python/{start_slidev.py → helpers_croshell/start_slidev.py} +32 -20
  122. machineconfig/scripts/python/helpers_devops/cli_config.py +95 -0
  123. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +89 -0
  124. machineconfig/scripts/python/helpers_devops/cli_data.py +25 -0
  125. machineconfig/scripts/python/helpers_devops/cli_nw.py +134 -0
  126. machineconfig/scripts/python/helpers_devops/cli_repos.py +182 -0
  127. machineconfig/scripts/python/helpers_devops/cli_self.py +134 -0
  128. machineconfig/scripts/python/helpers_devops/cli_share_file.py +137 -0
  129. machineconfig/scripts/python/helpers_devops/cli_share_server.py +141 -0
  130. machineconfig/scripts/python/helpers_devops/cli_terminal.py +156 -0
  131. machineconfig/scripts/python/helpers_devops/cli_utils.py +96 -0
  132. machineconfig/scripts/python/{devops_backup_retrieve.py → helpers_devops/devops_backup_retrieve.py} +7 -10
  133. machineconfig/scripts/python/helpers_devops/devops_status.py +511 -0
  134. machineconfig/scripts/python/helpers_devops/devops_update_repos.py +269 -0
  135. machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1 +81 -0
  136. machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +3 -0
  137. machineconfig/scripts/python/{choose_wezterm_theme.py → helpers_devops/themes/choose_wezterm_theme.py} +2 -2
  138. machineconfig/scripts/python/{cloud_manager.py → helpers_fire_command/cloud_manager.py} +0 -2
  139. machineconfig/scripts/python/{helpers/helpers4.py → helpers_fire_command/file_wrangler.py} +57 -89
  140. machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py +145 -0
  141. machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +110 -0
  142. machineconfig/scripts/python/helpers_msearch/__init__.py +5 -0
  143. machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfag +1 -1
  144. machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfg +1 -1
  145. machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfrga +1 -1
  146. machineconfig/scripts/python/helpers_navigator/__init__.py +20 -0
  147. machineconfig/scripts/python/helpers_navigator/command_builder.py +111 -0
  148. machineconfig/scripts/python/helpers_navigator/command_detail.py +44 -0
  149. machineconfig/scripts/python/helpers_navigator/command_tree.py +620 -0
  150. machineconfig/scripts/python/helpers_navigator/data_models.py +28 -0
  151. machineconfig/scripts/python/helpers_navigator/main_app.py +272 -0
  152. machineconfig/scripts/python/helpers_navigator/search_bar.py +15 -0
  153. machineconfig/scripts/python/helpers_repos/action.py +209 -0
  154. machineconfig/scripts/python/helpers_repos/action_helper.py +150 -0
  155. machineconfig/scripts/python/{repos_helper_clone.py → helpers_repos/clone.py} +6 -7
  156. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +218 -0
  157. machineconfig/scripts/python/helpers_repos/count_lines.py +348 -0
  158. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +17 -0
  159. machineconfig/scripts/python/helpers_repos/entrypoint.py +77 -0
  160. machineconfig/scripts/python/helpers_repos/grource.py +340 -0
  161. machineconfig/scripts/python/{repos_helper_record.py → helpers_repos/record.py} +7 -4
  162. machineconfig/scripts/python/helpers_repos/sync.py +66 -0
  163. machineconfig/scripts/python/{repos_helper_update.py → helpers_repos/update.py} +3 -3
  164. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +58 -0
  165. machineconfig/scripts/python/helpers_utils/download.py +152 -0
  166. machineconfig/scripts/python/helpers_utils/path.py +108 -0
  167. machineconfig/scripts/python/interactive.py +187 -0
  168. machineconfig/scripts/python/mcfg_entry.py +63 -0
  169. machineconfig/scripts/python/msearch.py +40 -0
  170. machineconfig/scripts/python/{devops_add_identity.py → nw/devops_add_identity.py} +1 -3
  171. machineconfig/scripts/python/{devops_add_ssh_key.py → nw/devops_add_ssh_key.py} +74 -44
  172. machineconfig/scripts/{linux → python/nw}/mount_nfs +1 -1
  173. machineconfig/scripts/python/{mount_nfs.py → nw/mount_nfs.py} +19 -16
  174. machineconfig/scripts/{linux → python/nw}/mount_nw_drive +1 -2
  175. machineconfig/scripts/python/{mount_ssh.py → nw/mount_ssh.py} +7 -8
  176. machineconfig/scripts/python/{onetimeshare.py → nw/onetimeshare.py} +0 -1
  177. machineconfig/scripts/python/nw/ssh_debug_linux.py +391 -0
  178. machineconfig/scripts/python/nw/ssh_debug_windows.py +338 -0
  179. machineconfig/scripts/python/{wifi_conn.py → nw/wifi_conn.py} +1 -51
  180. machineconfig/scripts/python/nw/wsl_windows_transfer.py +67 -0
  181. machineconfig/scripts/python/sessions.py +167 -0
  182. machineconfig/scripts/python/terminal.py +127 -0
  183. machineconfig/scripts/python/utils.py +66 -0
  184. machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1 +92 -0
  185. machineconfig/scripts/windows/{mount_nfs.ps1 → mounts/mount_nfs.ps1} +1 -3
  186. machineconfig/scripts/windows/{mount_ssh.ps1 → mounts/mount_ssh.ps1} +1 -1
  187. machineconfig/scripts/windows/{share_smb.ps1 → mounts/share_smb.ps1} +0 -6
  188. machineconfig/scripts/windows/wrap_mcfg.ps1 +60 -0
  189. machineconfig/settings/broot/br.sh +0 -4
  190. machineconfig/settings/broot/conf.toml +1 -1
  191. machineconfig/settings/helix/config.toml +16 -0
  192. machineconfig/settings/helix/languages.toml +13 -4
  193. machineconfig/settings/helix/yazi-picker.sh +12 -0
  194. machineconfig/settings/lf/linux/exe/lfcd.sh +1 -0
  195. machineconfig/settings/lf/linux/exe/previewer.sh +9 -3
  196. machineconfig/settings/lf/linux/lfrc +10 -12
  197. machineconfig/settings/lf/windows/fzf_edit.ps1 +2 -2
  198. machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
  199. machineconfig/settings/lf/windows/lfrc +18 -38
  200. machineconfig/settings/lf/windows/mkfile.ps1 +1 -1
  201. machineconfig/settings/linters/.ruff.toml +1 -1
  202. machineconfig/settings/lvim/windows/archive/config_additional.lua +0 -6
  203. machineconfig/settings/marimo/marimo.toml +80 -0
  204. machineconfig/settings/marimo/snippets/globalize.py +34 -0
  205. machineconfig/settings/pistol/pistol.conf +1 -1
  206. machineconfig/settings/shells/bash/init.sh +55 -31
  207. machineconfig/settings/shells/nushell/config.nu +1 -34
  208. machineconfig/settings/shells/nushell/init.nu +127 -0
  209. machineconfig/settings/shells/pwsh/init.ps1 +61 -43
  210. machineconfig/settings/shells/starship/starship.toml +16 -0
  211. machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
  212. machineconfig/settings/shells/wt/settings.json +32 -17
  213. machineconfig/settings/shells/zsh/init.sh +89 -0
  214. machineconfig/settings/svim/linux/init.toml +0 -4
  215. machineconfig/settings/svim/windows/init.toml +0 -3
  216. machineconfig/settings/yazi/init.lua +57 -0
  217. machineconfig/settings/yazi/keymap_linux.toml +79 -0
  218. machineconfig/settings/yazi/keymap_windows.toml +78 -0
  219. machineconfig/settings/yazi/shell/yazi_cd.ps1 +33 -0
  220. machineconfig/settings/yazi/shell/yazi_cd.sh +8 -0
  221. machineconfig/settings/yazi/yazi.toml +14 -1
  222. machineconfig/setup_linux/__init__.py +10 -0
  223. machineconfig/setup_linux/apps_desktop.sh +89 -0
  224. machineconfig/setup_linux/apps_gui.sh +64 -0
  225. machineconfig/setup_linux/{nix → others}/cli_installation.sh +9 -29
  226. machineconfig/setup_linux/ssh/openssh_all.sh +25 -0
  227. machineconfig/setup_linux/ssh/openssh_wsl.sh +38 -0
  228. machineconfig/setup_linux/uv.sh +15 -0
  229. machineconfig/setup_linux/web_shortcuts/interactive.sh +28 -203
  230. machineconfig/setup_mac/__init__.py +16 -0
  231. machineconfig/setup_mac/apps_gui.sh +248 -0
  232. machineconfig/setup_mac/ssh/openssh_setup.sh +114 -0
  233. machineconfig/setup_mac/uv.sh +36 -0
  234. machineconfig/setup_windows/__init__.py +8 -0
  235. machineconfig/setup_windows/others/power_options.ps1 +7 -0
  236. machineconfig/setup_windows/ssh/add-sshkey.ps1 +29 -0
  237. machineconfig/setup_windows/ssh/add_identity.ps1 +11 -0
  238. machineconfig/setup_windows/ssh/openssh-server.ps1 +37 -0
  239. machineconfig/setup_windows/uv.ps1 +17 -0
  240. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +28 -189
  241. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +17 -0
  242. machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +37 -23
  243. machineconfig/utils/accessories.py +52 -12
  244. machineconfig/utils/cloud/onedrive/README.md +139 -0
  245. machineconfig/utils/code.py +140 -93
  246. machineconfig/utils/files/art/fat_croco.txt +10 -0
  247. machineconfig/utils/files/art/halfwit_croco.txt +9 -0
  248. machineconfig/utils/files/art/happy_croco.txt +22 -0
  249. machineconfig/utils/files/art/water_croco.txt +11 -0
  250. machineconfig/utils/files/ascii_art.py +118 -0
  251. machineconfig/utils/files/dbms.py +257 -0
  252. machineconfig/utils/files/headers.py +68 -0
  253. machineconfig/utils/files/ouch/decompress.py +45 -0
  254. machineconfig/utils/files/read.py +95 -0
  255. machineconfig/utils/installer_utils/github_release_bulk.py +188 -0
  256. machineconfig/utils/installer_utils/install_from_url.py +180 -0
  257. machineconfig/utils/installer_utils/installer_class.py +239 -316
  258. machineconfig/utils/installer_utils/installer_cli.py +186 -0
  259. machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +90 -5
  260. machineconfig/utils/installer_utils/installer_runner.py +191 -0
  261. machineconfig/utils/io.py +77 -24
  262. machineconfig/utils/links.py +309 -100
  263. machineconfig/utils/meta.py +255 -0
  264. machineconfig/utils/notifications.py +1 -1
  265. machineconfig/utils/options.py +19 -47
  266. machineconfig/utils/path_extended.py +111 -121
  267. machineconfig/utils/path_helper.py +75 -22
  268. machineconfig/utils/procs.py +50 -74
  269. machineconfig/utils/scheduler.py +94 -97
  270. machineconfig/utils/scheduling.py +0 -3
  271. machineconfig/utils/schemas/fire_agents/fire_agents_input.py +5 -17
  272. machineconfig/utils/schemas/installer/installer_types.py +28 -6
  273. machineconfig/utils/schemas/layouts/layout_types.py +34 -1
  274. machineconfig/utils/source_of_truth.py +3 -6
  275. machineconfig/utils/ssh.py +742 -254
  276. machineconfig/utils/ssh_utils/utils.py +0 -0
  277. machineconfig/utils/terminal.py +3 -140
  278. machineconfig/utils/tst.py +20 -0
  279. machineconfig/utils/upgrade_packages.py +109 -28
  280. machineconfig/utils/ve.py +13 -5
  281. machineconfig-7.69.dist-info/METADATA +124 -0
  282. machineconfig-7.69.dist-info/RECORD +454 -0
  283. machineconfig-7.69.dist-info/entry_points.txt +15 -0
  284. machineconfig/cluster/templates/cli_click.py +0 -102
  285. machineconfig/cluster/templates/cli_gooey.py +0 -115
  286. machineconfig/cluster/templates/utils.py +0 -51
  287. machineconfig/jobs/linux/msc/cli_agents.sh +0 -32
  288. machineconfig/jobs/python/create_bootable_media.py +0 -16
  289. machineconfig/jobs/python/python_cargo_build_share.py +0 -59
  290. machineconfig/jobs/python/python_ve_symlink.py +0 -29
  291. machineconfig/jobs/python/tasks.py +0 -3
  292. machineconfig/jobs/python/vscode/api.py +0 -48
  293. machineconfig/jobs/python/vscode/link_ve.py +0 -63
  294. machineconfig/jobs/python/vscode/select_interpreter.py +0 -87
  295. machineconfig/jobs/python/vscode/sync_code.py +0 -58
  296. machineconfig/jobs/python_custom_installers/archive/ngrok.py +0 -63
  297. machineconfig/jobs/python_custom_installers/dev/aider.py +0 -37
  298. machineconfig/jobs/python_custom_installers/dev/alacritty.py +0 -65
  299. machineconfig/jobs/python_custom_installers/dev/brave.py +0 -71
  300. machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +0 -50
  301. machineconfig/jobs/python_custom_installers/dev/code.py +0 -51
  302. machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +0 -78
  303. machineconfig/jobs/python_custom_installers/dev/espanso.py +0 -90
  304. machineconfig/jobs/python_custom_installers/dev/goes.py +0 -55
  305. machineconfig/jobs/python_custom_installers/dev/lvim.py +0 -77
  306. machineconfig/jobs/python_custom_installers/dev/nerdfont.py +0 -68
  307. machineconfig/jobs/python_custom_installers/dev/redis.py +0 -65
  308. machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md +0 -31
  309. machineconfig/jobs/python_custom_installers/dev/wezterm.py +0 -70
  310. machineconfig/jobs/python_custom_installers/docker.py +0 -74
  311. machineconfig/jobs/python_custom_installers/gh.py +0 -97
  312. machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh +0 -45
  313. machineconfig/jobs/python_custom_installers/scripts/linux/pgsql.sh +0 -49
  314. machineconfig/jobs/python_custom_installers/scripts/linux/timescaledb.sh +0 -85
  315. machineconfig/jobs/python_custom_installers/warp-cli.py +0 -71
  316. machineconfig/jobs/python_generic_installers/config.json +0 -603
  317. machineconfig/jobs/python_generic_installers/config.json.bak +0 -414
  318. machineconfig/jobs/python_generic_installers/dev/config.archive.json +0 -18
  319. machineconfig/jobs/python_generic_installers/dev/config.json +0 -825
  320. machineconfig/jobs/python_generic_installers/dev/config.json.bak +0 -565
  321. machineconfig/jobs/python_linux_installers/archive/config.json +0 -18
  322. machineconfig/jobs/python_linux_installers/archive/config.json.bak +0 -10
  323. machineconfig/jobs/python_linux_installers/config.json +0 -145
  324. machineconfig/jobs/python_linux_installers/config.json.bak +0 -110
  325. machineconfig/jobs/python_linux_installers/dev/config.json +0 -276
  326. machineconfig/jobs/python_linux_installers/dev/config.json.bak +0 -206
  327. machineconfig/jobs/python_windows_installers/archive/file.json +0 -11
  328. machineconfig/jobs/python_windows_installers/config.json +0 -82
  329. machineconfig/jobs/python_windows_installers/config.json.bak +0 -56
  330. machineconfig/jobs/python_windows_installers/dev/config.json +0 -4
  331. machineconfig/jobs/python_windows_installers/dev/config.json.bak +0 -3
  332. machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +0 -14
  333. machineconfig/jobs/windows/start_terminal.ps1 +0 -6
  334. machineconfig/jobs/windows/startup_file.cmd +0 -2
  335. machineconfig/profile/create.py +0 -169
  336. machineconfig/profile/shell.py +0 -176
  337. machineconfig/scripts/cloud/init.sh +0 -119
  338. machineconfig/scripts/linux/choose_wezterm_theme +0 -3
  339. machineconfig/scripts/linux/cloud_copy +0 -2
  340. machineconfig/scripts/linux/cloud_mount +0 -2
  341. machineconfig/scripts/linux/cloud_repo_sync +0 -2
  342. machineconfig/scripts/linux/cloud_sync +0 -2
  343. machineconfig/scripts/linux/croshell +0 -3
  344. machineconfig/scripts/linux/devops +0 -2
  345. machineconfig/scripts/linux/fire +0 -2
  346. machineconfig/scripts/linux/fire_agents +0 -2
  347. machineconfig/scripts/linux/ftpx +0 -2
  348. machineconfig/scripts/linux/fzf2g +0 -21
  349. machineconfig/scripts/linux/fzffg +0 -25
  350. machineconfig/scripts/linux/gh_models +0 -2
  351. machineconfig/scripts/linux/kill_process +0 -2
  352. machineconfig/scripts/linux/mcinit +0 -2
  353. machineconfig/scripts/linux/programs +0 -21
  354. machineconfig/scripts/linux/repos +0 -2
  355. machineconfig/scripts/linux/scheduler +0 -2
  356. machineconfig/scripts/linux/share_smb +0 -1
  357. machineconfig/scripts/linux/start_slidev +0 -2
  358. machineconfig/scripts/linux/start_terminals +0 -3
  359. machineconfig/scripts/linux/warp-cli.sh +0 -122
  360. machineconfig/scripts/linux/wifi_conn +0 -2
  361. machineconfig/scripts/linux/z_ls +0 -104
  362. machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md +0 -5
  363. machineconfig/scripts/python/archive/im2text.py +0 -34
  364. machineconfig/scripts/python/archive/tmate_conn.py +0 -41
  365. machineconfig/scripts/python/archive/tmate_start.py +0 -44
  366. machineconfig/scripts/python/cloud_repo_sync.py +0 -192
  367. machineconfig/scripts/python/cloud_sync.py +0 -85
  368. machineconfig/scripts/python/devops_devapps_install.py +0 -202
  369. machineconfig/scripts/python/devops_update_repos.py +0 -180
  370. machineconfig/scripts/python/dotfile.py +0 -52
  371. machineconfig/scripts/python/fire_agents.py +0 -176
  372. machineconfig/scripts/python/fire_agents_help_launch.py +0 -143
  373. machineconfig/scripts/python/fire_agents_load_balancer.py +0 -50
  374. machineconfig/scripts/python/fire_jobs_args_helper.py +0 -84
  375. machineconfig/scripts/python/fire_jobs_layout_helper.py +0 -66
  376. machineconfig/scripts/python/get_zellij_cmd.py +0 -15
  377. machineconfig/scripts/python/gh_models.py +0 -104
  378. machineconfig/scripts/python/helpers/repo_sync_helpers.py +0 -114
  379. machineconfig/scripts/python/repos.py +0 -160
  380. machineconfig/scripts/python/snapshot.py +0 -25
  381. machineconfig/scripts/python/start_terminals.py +0 -121
  382. machineconfig/scripts/python/wsl_windows_transfer.py +0 -72
  383. machineconfig/scripts/windows/choose_wezterm_theme.ps1 +0 -1
  384. machineconfig/scripts/windows/cloud_copy.ps1 +0 -1
  385. machineconfig/scripts/windows/cloud_mount.ps1 +0 -1
  386. machineconfig/scripts/windows/cloud_repo_sync.ps1 +0 -1
  387. machineconfig/scripts/windows/cloud_sync.ps1 +0 -1
  388. machineconfig/scripts/windows/croshell.ps1 +0 -1
  389. machineconfig/scripts/windows/devops.ps1 +0 -1
  390. machineconfig/scripts/windows/dotfile.ps1 +0 -1
  391. machineconfig/scripts/windows/fire.ps1 +0 -1
  392. machineconfig/scripts/windows/ftpx.ps1 +0 -1
  393. machineconfig/scripts/windows/gpt.ps1 +0 -1
  394. machineconfig/scripts/windows/grep.ps1 +0 -2
  395. machineconfig/scripts/windows/kill_process.ps1 +0 -1
  396. machineconfig/scripts/windows/mcinit.ps1 +0 -1
  397. machineconfig/scripts/windows/nano.ps1 +0 -3
  398. machineconfig/scripts/windows/pomodoro.ps1 +0 -1
  399. machineconfig/scripts/windows/reload_path.ps1 +0 -3
  400. machineconfig/scripts/windows/repos.ps1 +0 -1
  401. machineconfig/scripts/windows/scheduler.ps1 +0 -1
  402. machineconfig/scripts/windows/snapshot.ps1 +0 -1
  403. machineconfig/scripts/windows/start_slidev.ps1 +0 -1
  404. machineconfig/scripts/windows/start_terminals.ps1 +0 -1
  405. machineconfig/scripts/windows/wifi_conn.ps1 +0 -2
  406. machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1 +0 -46
  407. machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1 +0 -76
  408. machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
  409. machineconfig/setup_linux/others/openssh-server_add_pub_key.sh +0 -57
  410. machineconfig/setup_linux/web_shortcuts/ascii_art.sh +0 -93
  411. machineconfig/setup_linux/web_shortcuts/croshell.sh +0 -11
  412. machineconfig/setup_linux/web_shortcuts/ssh.sh +0 -52
  413. machineconfig/setup_windows/web_shortcuts/all.ps1 +0 -18
  414. machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +0 -36
  415. machineconfig/setup_windows/web_shortcuts/croshell.ps1 +0 -16
  416. machineconfig/setup_windows/web_shortcuts/ssh.ps1 +0 -11
  417. machineconfig/setup_windows/wt_and_pwsh/install_nerd_fonts.py +0 -100
  418. machineconfig/utils/ai/generate_file_checklist.py +0 -68
  419. machineconfig/utils/installer.py +0 -255
  420. machineconfig-3.7.dist-info/METADATA +0 -165
  421. machineconfig-3.7.dist-info/RECORD +0 -432
  422. machineconfig-3.7.dist-info/entry_points.txt +0 -18
  423. machineconfig/cluster/{templates → remote}/run_cloud.py +0 -0
  424. machineconfig/cluster/{templates → remote}/run_cluster.py +0 -0
  425. machineconfig/cluster/{templates → remote}/run_remote.py +0 -0
  426. machineconfig/jobs/{python → installer}/__init__.py +0 -0
  427. machineconfig/jobs/{python_custom_installers → installer/custom_dev}/__init__.py +0 -0
  428. machineconfig/{setup_windows/wt_and_pwsh → jobs/installer/powershell_scripts}/install_fonts.ps1 +0 -0
  429. machineconfig/scripts/linux/{share_nfs → other/share_nfs} +0 -0
  430. machineconfig/scripts/linux/{start_docker → other/start_docker} +0 -0
  431. machineconfig/scripts/linux/{switch_ip → other/switch_ip} +0 -0
  432. machineconfig/{jobs/python_generic_installers → scripts/python/helpers_agents}/__init__.py +0 -0
  433. machineconfig/{jobs/python_linux_installers → scripts/python/helpers_agents/agentic_frameworks}/__init__.py +0 -0
  434. machineconfig/scripts/python/{fire_agents_help_search.py → helpers_agents/fire_agents_help_search.py} +0 -0
  435. machineconfig/{jobs/python_linux_installers/dev → scripts/python/helpers_cloud}/__init__.py +0 -0
  436. machineconfig/scripts/python/{helpers → helpers_cloud}/cloud_helpers.py +1 -1
  437. /machineconfig/scripts/python/{helpers → helpers_cloud}/helpers5.py +0 -0
  438. /machineconfig/{jobs/python_windows_installers → scripts/python/helpers_croshell}/__init__.py +0 -0
  439. /machineconfig/scripts/python/{pomodoro.py → helpers_croshell/pomodoro.py} +0 -0
  440. /machineconfig/scripts/python/{viewer.py → helpers_croshell/viewer.py} +0 -0
  441. /machineconfig/scripts/python/{viewer_template.py → helpers_croshell/viewer_template.py} +0 -0
  442. /machineconfig/{jobs/python_windows_installers/archive → scripts/python/helpers_devops}/__init__.py +0 -0
  443. /machineconfig/{jobs/python_windows_installers/dev → scripts/python/helpers_devops/themes}/__init__.py +0 -0
  444. /machineconfig/{jobs/windows/msc/cli_agents.bat → scripts/python/helpers_devops/themes/choose_starship_theme.ps1} +0 -0
  445. /machineconfig/scripts/python/{helpers → helpers_fire_command}/__init__.py +0 -0
  446. /machineconfig/scripts/python/{fire_jobs_streamlit_helper.py → helpers_fire_command/fire_jobs_streamlit_helper.py} +0 -0
  447. /machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/skrg +0 -0
  448. /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfb.ps1 +0 -0
  449. /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfg.ps1 +0 -0
  450. /machineconfig/scripts/{windows → python/helpers_msearch/scripts_windows}/fzfrga.bat +0 -0
  451. /machineconfig/{jobs/windows/msc/cli_agents.ps1 → scripts/python/helpers_sessions/__init__.py} +0 -0
  452. /machineconfig/scripts/{windows/share_nfs.ps1 → python/nw/__init__.py} +0 -0
  453. /machineconfig/scripts/{linux → python/nw}/mount_drive +0 -0
  454. /machineconfig/scripts/python/{mount_nw_drive.py → nw/mount_nw_drive.py} +0 -0
  455. /machineconfig/scripts/{linux → python/nw}/mount_smb +0 -0
  456. /machineconfig/scripts/windows/{mount_nw.ps1 → mounts/mount_nw.ps1} +0 -0
  457. /machineconfig/scripts/windows/{mount_smb.ps1 → mounts/mount_smb.ps1} +0 -0
  458. /machineconfig/scripts/windows/{share_cloud.cmd → mounts/share_cloud.cmd} +0 -0
  459. /machineconfig/scripts/windows/{unlock_bitlocker.ps1 → mounts/unlock_bitlocker.ps1} +0 -0
  460. /machineconfig/setup_linux/{web_shortcuts → others}/android.sh +0 -0
  461. /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
  462. /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
  463. /machineconfig/{settings/yazi/keymap.toml → utils/files/ouch/__init__.py} +0 -0
  464. {machineconfig-3.7.dist-info → machineconfig-7.69.dist-info}/WHEEL +0 -0
  465. {machineconfig-3.7.dist-info → machineconfig-7.69.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3440 @@
1
+ {
2
+ "version": "1",
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
+ },
72
+ {
73
+ "appName": "speedtest",
74
+ "repoURL": "CMD",
75
+ "doc": "🚀 Test your internet connection speed and ping using speedtest.net from the CLI",
76
+ "fileNamePattern": {
77
+ "amd64": {
78
+ "linux": "https://install.speedtest.net/app/cli/ookla-speedtest-1.2.0-linux-x86_64.tgz",
79
+ "windows": null,
80
+ "macos": null
81
+ },
82
+ "arm64": {
83
+ "linux": null,
84
+ "windows": null,
85
+ "macos": null
86
+ }
87
+ }
88
+ },
89
+ {
90
+ "appName": "pistol",
91
+ "repoURL": "https://github.com/doronbehar/pistol",
92
+ "doc": "👁️ file previewer.",
93
+ "fileNamePattern": {
94
+ "amd64": {
95
+ "linux": "pistol-static-linux-x86_64",
96
+ "windows": null,
97
+ "macos": null
98
+ },
99
+ "arm64": {
100
+ "linux": "pistol-static-linux-aarch64",
101
+ "windows": null,
102
+ "macos": null
103
+ }
104
+ }
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
+ },
123
+ {
124
+ "appName": "diskonaut",
125
+ "repoURL": "https://github.com/imsnif/diskonaut",
126
+ "doc": "💾 like dua, diskonaut is a terminal disk space navigator.",
127
+ "fileNamePattern": {
128
+ "amd64": {
129
+ "linux": "diskonaut-{version}-unknown-linux-musl.tar.gz",
130
+ "windows": null,
131
+ "macos": null
132
+ },
133
+ "arm64": {
134
+ "linux": null,
135
+ "windows": null,
136
+ "macos": null
137
+ }
138
+ }
139
+ },
140
+ {
141
+ "appName": "xplr",
142
+ "repoURL": "https://github.com/sayanarijit/xplr",
143
+ "doc": "📂 A terminal file explorer with vi keybindings",
144
+ "fileNamePattern": {
145
+ "amd64": {
146
+ "linux": "xplr-linux.tar.gz",
147
+ "windows": null,
148
+ "macos": "xplr-macos.tar.gz"
149
+ },
150
+ "arm64": {
151
+ "linux": "xplr-linux-aarch64.tar.gz",
152
+ "windows": null,
153
+ "macos": "xplr-macos-aarch64.tar.gz"
154
+ }
155
+ }
156
+ },
157
+ {
158
+ "appName": "btop",
159
+ "repoURL": "https://github.com/aristocratos/btop",
160
+ "doc": "📊 btop is a resource monitor for Linux, FreeBSD and MacOS.",
161
+ "fileNamePattern": {
162
+ "amd64": {
163
+ "linux": "btop-x86_64-linux-musl.tbz",
164
+ "macos": null,
165
+ "windows": null
166
+ },
167
+ "arm64": {
168
+ "linux": "btop-aarch64-linux-musl.tbz",
169
+ "macos": null,
170
+ "windows": null
171
+ }
172
+ }
173
+ },
174
+ {
175
+ "appName": "gotty",
176
+ "repoURL": "https://github.com/sorenisanerd/gotty",
177
+ "doc": "🌐 gotty is a simple command line tool that turns your CLI tools into web applications.",
178
+ "fileNamePattern": {
179
+ "amd64": {
180
+ "linux": "gotty_v{version}_linux_amd64.tar.gz",
181
+ "macos": "gotty_v{version}_darwin_amd64.tar.gz",
182
+ "windows": null
183
+ },
184
+ "arm64": {
185
+ "linux": "gotty_v{version}_linux_arm64.tar.gz",
186
+ "macos": "gotty_v{version}_darwin_arm64.tar.gz",
187
+ "windows": null
188
+ }
189
+ }
190
+ },
191
+ {
192
+ "appName": "joshuto",
193
+ "repoURL": "https://github.com/kamiyaa/joshuto",
194
+ "doc": "📂 A terminal file manager written in Rust.",
195
+ "fileNamePattern": {
196
+ "amd64": {
197
+ "linux": "joshuto-v{version}-x86_64-unknown-linux-musl.tar.gz",
198
+ "macos": "joshuto-v{version}-x86_64-apple-darwin.tar.gz",
199
+ "windows": null
200
+ },
201
+ "arm64": {
202
+ "linux": "joshuto-v{version}-aarch64-unknown-linux-musl.tar.gz",
203
+ "macos": "joshuto-v{version}-aarch64-apple-darwin.tar.gz",
204
+ "windows": null
205
+ }
206
+ }
207
+ },
208
+ {
209
+ "appName": "zellij",
210
+ "repoURL": "https://github.com/zellij-org/zellij",
211
+ "doc": "🖥️ Zellij is a terminal workspace with support for multiple plugins, such as a terminal, status bar, tabs, splits, etc.",
212
+ "fileNamePattern": {
213
+ "amd64": {
214
+ "linux": "zellij-x86_64-unknown-linux-musl.tar.gz",
215
+ "macos": "zellij-x86_64-apple-darwin.tar.gz",
216
+ "windows": null
217
+ },
218
+ "arm64": {
219
+ "linux": "zellij-aarch64-unknown-linux-musl.tar.gz",
220
+ "macos": "zellij-aarch64-apple-darwin.tar.gz",
221
+ "windows": null
222
+ }
223
+ }
224
+ },
225
+ {
226
+ "appName": "boxes",
227
+ "repoURL": "CMD",
228
+ "doc": "📦 ASCI draws boxes around text.",
229
+ "fileNamePattern": {
230
+ "amd64": {
231
+ "windows": "boxes.py",
232
+ "linux": null,
233
+ "macos": null
234
+ },
235
+ "arm64": {
236
+ "linux": null,
237
+ "macos": null,
238
+ "windows": null
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "appName": "sharewifi",
244
+ "repoURL": "CMD",
245
+ "doc": "📶 Share WiFi credentials via QR code",
246
+ "fileNamePattern": {
247
+ "amd64": {
248
+ "linux": "npm install -g sharewifi",
249
+ "windows": "npm install -g sharewifi",
250
+ "macos": "npm install -g sharewifi"
251
+ },
252
+ "arm64": {
253
+ "linux": "npm install -g sharewifi",
254
+ "windows": "npm install -g sharewifi",
255
+ "macos": "npm install -g sharewifi"
256
+ }
257
+ }
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
+ },
293
+ {
294
+ "appName": "easy-sharing",
295
+ "repoURL": "CMD",
296
+ "doc": "🔗 Easy file sharing from command line",
297
+ "fileNamePattern": {
298
+ "amd64": {
299
+ "linux": "npm install -g easy-sharing",
300
+ "windows": "npm install -g easy-sharing",
301
+ "macos": "npm install -g easy-sharing"
302
+ },
303
+ "arm64": {
304
+ "linux": "npm install -g easy-sharing",
305
+ "windows": "npm install -g easy-sharing",
306
+ "macos": "npm install -g easy-sharing"
307
+ }
308
+ }
309
+ },
310
+ {
311
+ "appName": "ezshare",
312
+ "repoURL": "CMD",
313
+ "doc": "🔗 Easy file sharing tool",
314
+ "fileNamePattern": {
315
+ "amd64": {
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"
336
+ },
337
+ "arm64": {
338
+ "linux": null,
339
+ "windows": null,
340
+ "macos": null
341
+ }
342
+ }
343
+ },
344
+ {
345
+ "appName": "lolcatjs",
346
+ "repoURL": "CMD",
347
+ "doc": "🌈 Rainbow colored text output for terminal",
348
+ "fileNamePattern": {
349
+ "amd64": {
350
+ "linux": "npm install -g lolcatjs",
351
+ "windows": "npm install -g lolcatjs",
352
+ "macos": "npm install -g lolcatjs"
353
+ },
354
+ "arm64": {
355
+ "linux": "npm install -g lolcatjs",
356
+ "windows": "npm install -g lolcatjs",
357
+ "macos": "npm install -g lolcatjs"
358
+ }
359
+ }
360
+ },
361
+ {
362
+ "appName": "figlet-cli",
363
+ "repoURL": "CMD",
364
+ "doc": "📝 ASCII art text generator for terminal",
365
+ "fileNamePattern": {
366
+ "amd64": {
367
+ "linux": "npm install -g figlet-cli",
368
+ "windows": "npm install -g figlet-cli",
369
+ "macos": "npm install -g figlet-cli"
370
+ },
371
+ "arm64": {
372
+ "linux": "npm install -g figlet-cli",
373
+ "windows": "npm install -g figlet-cli",
374
+ "macos": "npm install -g figlet-cli"
375
+ }
376
+ }
377
+ },
378
+ {
379
+ "appName": "ugrep",
380
+ "repoURL": "https://github.com/Genivia/ugrep",
381
+ "doc": "🔍 A fast, portable, feature-rich command-line search tool",
382
+ "fileNamePattern": {
383
+ "amd64": {
384
+ "windows": "ugrep-windows-x64.zip",
385
+ "linux": null,
386
+ "macos": null
387
+ },
388
+ "arm64": {
389
+ "linux": null,
390
+ "macos": null,
391
+ "windows": null
392
+ }
393
+ }
394
+ },
395
+ {
396
+ "appName": "zoomit",
397
+ "repoURL": "https://download.sysinternals.com/files/ZoomIt.zip",
398
+ "doc": "🔍 A screen zoom and annotation tool for presentations",
399
+ "fileNamePattern": {
400
+ "amd64": {
401
+ "windows": "ZoomIt.zip",
402
+ "linux": null,
403
+ "macos": null
404
+ },
405
+ "arm64": {
406
+ "linux": null,
407
+ "macos": null,
408
+ "windows": null
409
+ }
410
+ }
411
+ },
412
+ {
413
+ "appName": "ntop",
414
+ "repoURL": "https://github.com/gsass1/NTop",
415
+ "doc": "📊 Like htop, for Windows",
416
+ "fileNamePattern": {
417
+ "amd64": {
418
+ "windows": "NTop.exe",
419
+ "linux": null,
420
+ "macos": null
421
+ },
422
+ "arm64": {
423
+ "linux": null,
424
+ "macos": null,
425
+ "windows": null
426
+ }
427
+ }
428
+ },
429
+ {
430
+ "appName": "devtunnel",
431
+ "repoURL": "CMD",
432
+ "doc": "🔄 devtunnel secure introspectable tunnels to localhost",
433
+ "fileNamePattern": {
434
+ "amd64": {
435
+ "windows": "winget install --Id Microsoft.devtunnel --scope user",
436
+ "linux": "curl -sL https://aka.ms/DevTunnelCliInstall | bash",
437
+ "macos": null
438
+ },
439
+ "arm64": {
440
+ "linux": "curl -sL https://aka.ms/DevTunnelCliInstall | bash",
441
+ "macos": null,
442
+ "windows": "winget install --Id Microsoft.devtunnel --scope user"
443
+ }
444
+ }
445
+ },
446
+ {
447
+ "appName": "bat",
448
+ "repoURL": "https://github.com/sharkdp/bat",
449
+ "doc": "🦇 A cat(1) clone with wings.",
450
+ "fileNamePattern": {
451
+ "amd64": {
452
+ "linux": "bat-v{version}-x86_64-unknown-linux-gnu.tar.gz",
453
+ "macos": "bat-v{version}-x86_64-apple-darwin.tar.gz",
454
+ "windows": "bat-v{version}-x86_64-pc-windows-msvc.zip"
455
+ },
456
+ "arm64": {
457
+ "linux": "bat-v{version}-aarch64-unknown-linux-gnu.tar.gz",
458
+ "macos": "bat-v{version}-aarch64-apple-darwin.tar.gz",
459
+ "windows": "bat-v{version}-x86_64-pc-windows-msvc.zip"
460
+ }
461
+ }
462
+ },
463
+ {
464
+ "appName": "broot",
465
+ "repoURL": "https://github.com/Canop/broot",
466
+ "doc": "🌳 broot is an fzf variant for folder structure and layered search.",
467
+ "fileNamePattern": {
468
+ "amd64": {
469
+ "linux": "broot_{version}.zip",
470
+ "macos": "broot_{version}.zip",
471
+ "windows": "broot_{version}.zip"
472
+ },
473
+ "arm64": {
474
+ "linux": "broot_{version}.zip",
475
+ "macos": "broot_{version}.zip",
476
+ "windows": "broot_{version}.zip"
477
+ }
478
+ }
479
+ },
480
+ {
481
+ "appName": "btm",
482
+ "repoURL": "https://github.com/ClementTsang/bottom",
483
+ "doc": "📊 bottom is a cross-platform graphical process/system monitor with a customizable interface and a multitude of features.",
484
+ "fileNamePattern": {
485
+ "amd64": {
486
+ "linux": "bottom_x86_64-unknown-linux-gnu.tar.gz",
487
+ "macos": "bottom_x86_64-apple-darwin.tar.gz",
488
+ "windows": "bottom_x86_64-pc-windows-msvc.zip"
489
+ },
490
+ "arm64": {
491
+ "linux": "bottom_aarch64-unknown-linux-gnu.tar.gz",
492
+ "macos": "bottom_aarch64-apple-darwin.tar.gz",
493
+ "windows": "bottom_x86_64-pc-windows-msvc.zip"
494
+ }
495
+ }
496
+ },
497
+ {
498
+ "appName": "chatgpt",
499
+ "repoURL": "https://github.com/j178/chatgpt",
500
+ "doc": "🤖 chagpt cli",
501
+ "fileNamePattern": {
502
+ "amd64": {
503
+ "linux": "chatgpt_Linux_x86_64.tar.gz",
504
+ "macos": "chatgpt_Darwin_x86_64.tar.gz",
505
+ "windows": "chatgpt_Windows_x86_64.zip"
506
+ },
507
+ "arm64": {
508
+ "linux": "chatgpt_Linux_arm64.tar.gz",
509
+ "macos": "chatgpt_Darwin_arm64.tar.gz",
510
+ "windows": "chatgpt_Windows_arm64.zip"
511
+ }
512
+ }
513
+ },
514
+ {
515
+ "appName": "cloudflared",
516
+ "repoURL": "https://github.com/cloudflare/cloudflared",
517
+ "doc": "☁️ Cloudflared installer. Should only be installed at main computer and servers of tunnels.",
518
+ "fileNamePattern": {
519
+ "amd64": {
520
+ "linux": "cloudflared-linux-amd64",
521
+ "macos": "cloudflared-darwin-amd64.tgz",
522
+ "windows": "cloudflared-windows-amd64.exe"
523
+ },
524
+ "arm64": {
525
+ "linux": "cloudflared-linux-arm64",
526
+ "macos": "cloudflared-darwin-arm64.tgz",
527
+ "windows": "cloudflared-windows-amd64.exe"
528
+ }
529
+ }
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
+ },
565
+ {
566
+ "appName": "cpufetch",
567
+ "repoURL": "https://github.com/Dr-Noob/cpufetch",
568
+ "doc": "💻 cpufetch is a small yet fancy CPU architecture fetching tool, like fastfetch but for CPUs.",
569
+ "fileNamePattern": {
570
+ "amd64": {
571
+ "linux": "cpufetch_x86-64_linux",
572
+ "macos": null,
573
+ "windows": "cpufetch_x86-64_windows.exe"
574
+ },
575
+ "arm64": {
576
+ "linux": "cpufetch_arm64_linux",
577
+ "macos": null,
578
+ "windows": "cpufetch_x86-64_windows.exe"
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "appName": "delta",
584
+ "repoURL": "https://github.com/dandavison/delta",
585
+ "doc": "👀 A viewer for git and diff output",
586
+ "fileNamePattern": {
587
+ "amd64": {
588
+ "linux": "delta-{version}-x86_64-unknown-linux-gnu.tar.gz",
589
+ "macos": "delta-{version}-x86_64-apple-darwin.tar.gz",
590
+ "windows": "delta-{version}-x86_64-pc-windows-msvc.zip"
591
+ },
592
+ "arm64": {
593
+ "linux": "delta-{version}-aarch64-unknown-linux-gnu.tar.gz",
594
+ "macos": "delta-{version}-aarch64-apple-darwin.tar.gz",
595
+ "windows": "delta-{version}-x86_64-pc-windows-msvc.zip"
596
+ }
597
+ }
598
+ },
599
+ {
600
+ "appName": "dua",
601
+ "repoURL": "https://github.com/Byron/dua-cli",
602
+ "doc": "💾 Rust-based cli tool to get a quick overview of disk usage.",
603
+ "fileNamePattern": {
604
+ "amd64": {
605
+ "linux": "dua-v{version}-x86_64-unknown-linux-musl.tar.gz",
606
+ "macos": "dua-v{version}-x86_64-apple-darwin.tar.gz",
607
+ "windows": "dua-v{version}-x86_64-pc-windows-msvc.zip"
608
+ },
609
+ "arm64": {
610
+ "linux": "dua-v{version}-aarch64-unknown-linux-musl.tar.gz",
611
+ "macos": "dua-v{version}-x86_64-apple-darwin.tar.gz",
612
+ "windows": "dua-v{version}-x86_64-pc-windows-msvc.zip"
613
+ }
614
+ }
615
+ },
616
+ {
617
+ "appName": "fastfetch",
618
+ "repoURL": "https://github.com/fastfetch-cli/fastfetch",
619
+ "doc": "💻 fastfetch is a system information tool written in C.",
620
+ "fileNamePattern": {
621
+ "amd64": {
622
+ "linux": "fastfetch-linux-amd64.tar.gz",
623
+ "macos": "fastfetch-macos-amd64.tar.gz",
624
+ "windows": "fastfetch-windows-amd64.zip"
625
+ },
626
+ "arm64": {
627
+ "linux": "fastfetch-linux-aarch64.tar.gz",
628
+ "macos": "fastfetch-macos-aarch64.tar.gz",
629
+ "windows": "fastfetch-windows-aarch64.zip"
630
+ }
631
+ }
632
+ },
633
+ {
634
+ "appName": "fd",
635
+ "repoURL": "https://github.com/sharkdp/fd",
636
+ "doc": "🔍 fd is a simple, fast and user-friendly alternative to find.",
637
+ "fileNamePattern": {
638
+ "amd64": {
639
+ "linux": "fd-v{version}-x86_64-unknown-linux-gnu.tar.gz",
640
+ "macos": "fd-v{version}-x86_64-apple-darwin.tar.gz",
641
+ "windows": "fd-v{version}-x86_64-pc-windows-msvc.zip"
642
+ },
643
+ "arm64": {
644
+ "linux": "fd-v{version}-aarch64-unknown-linux-gnu.tar.gz",
645
+ "macos": "fd-v{version}-aarch64-apple-darwin.tar.gz",
646
+ "windows": "fd-v{version}-aarch64-pc-windows-msvc.zip"
647
+ }
648
+ }
649
+ },
650
+ {
651
+ "appName": "fzf",
652
+ "repoURL": "https://github.com/junegunn/fzf",
653
+ "doc": "🔍 a general-purpose cli fuzzy finder.",
654
+ "fileNamePattern": {
655
+ "amd64": {
656
+ "linux": "fzf-{version}-linux_amd64.tar.gz",
657
+ "macos": "fzf-{version}-darwin_amd64.tar.gz",
658
+ "windows": "fzf-{version}-windows_amd64.zip"
659
+ },
660
+ "arm64": {
661
+ "linux": "fzf-{version}-linux_arm64.tar.gz",
662
+ "macos": "fzf-{version}-darwin_arm64.tar.gz",
663
+ "windows": "fzf-{version}-windows_arm64.zip"
664
+ }
665
+ }
666
+ },
667
+ {
668
+ "appName": "gitui",
669
+ "repoURL": "https://github.com/gitui-org/gitui",
670
+ "doc": "🐙 gitui is a terminal ui for git written in rust.",
671
+ "fileNamePattern": {
672
+ "amd64": {
673
+ "linux": "gitui-linux-x86_64.tar.gz",
674
+ "macos": "gitui-mac-x86.tar.gz",
675
+ "windows": "gitui-win.tar.gz"
676
+ },
677
+ "arm64": {
678
+ "linux": "gitui-linux-aarch64.tar.gz",
679
+ "macos": "gitui-mac.tar.gz",
680
+ "windows": "gitui-win.tar.gz"
681
+ }
682
+ }
683
+ },
684
+ {
685
+ "appName": "glow",
686
+ "repoURL": "https://github.com/charmbracelet/glow/",
687
+ "doc": "✨ Render markdown on the CLI, with pizzazz!",
688
+ "fileNamePattern": {
689
+ "amd64": {
690
+ "linux": "glow_{version}_Linux_x86_64.tar.gz",
691
+ "macos": "glow_{version}_Darwin_x86_64.tar.gz",
692
+ "windows": "glow_{version}_Windows_x86_64.zip"
693
+ },
694
+ "arm64": {
695
+ "linux": "glow_{version}_Linux_arm64.tar.gz",
696
+ "macos": "glow_{version}_Darwin_arm64.tar.gz",
697
+ "windows": "glow_{version}_Windows_x86_64.zip"
698
+ }
699
+ }
700
+ },
701
+ {
702
+ "appName": "gum",
703
+ "repoURL": "https://github.com/charmbracelet/gum",
704
+ "doc": "🎯 Prompt user to select from options, written in golang.",
705
+ "fileNamePattern": {
706
+ "amd64": {
707
+ "linux": "gum_{version}_Linux_x86_64.tar.gz",
708
+ "macos": "gum_{version}_Darwin_x86_64.tar.gz",
709
+ "windows": "gum_{version}_Windows_x86_64.zip"
710
+ },
711
+ "arm64": {
712
+ "linux": "gum_{version}_Linux_arm64.tar.gz",
713
+ "macos": "gum_{version}_Darwin_arm64.tar.gz",
714
+ "windows": "gum_{version}_Windows_x86_64.zip"
715
+ }
716
+ }
717
+ },
718
+ {
719
+ "appName": "lf",
720
+ "repoURL": "https://github.com/gokcehan/lf",
721
+ "doc": "📂 lf is a terminal file manager written in go.",
722
+ "fileNamePattern": {
723
+ "amd64": {
724
+ "linux": "lf-linux-amd64.tar.gz",
725
+ "macos": "lf-darwin-amd64.tar.gz",
726
+ "windows": "lf-windows-amd64.zip"
727
+ },
728
+ "arm64": {
729
+ "linux": "lf-linux-arm64.tar.gz",
730
+ "macos": "lf-darwin-arm64.tar.gz",
731
+ "windows": "lf-windows-amd64.zip"
732
+ }
733
+ }
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
+ },
752
+ {
753
+ "appName": "lsd",
754
+ "repoURL": "https://github.com/lsd-rs/lsd",
755
+ "doc": "📂 A modern replacement for ls written in Rust.",
756
+ "fileNamePattern": {
757
+ "amd64": {
758
+ "linux": "lsd-v{version}-x86_64-unknown-linux-gnu.tar.gz",
759
+ "macos": "lsd-v{version}-x86_64-apple-darwin.tar.gz",
760
+ "windows": "lsd-v{version}-x86_64-pc-windows-msvc.zip"
761
+ },
762
+ "arm64": {
763
+ "linux": "lsd-v{version}-aarch64-unknown-linux-gnu.tar.gz",
764
+ "macos": "lsd-v{version}-aarch64-apple-darwin.tar.gz",
765
+ "windows": "lsd-v{version}-x86_64-pc-windows-msvc.zip"
766
+ }
767
+ }
768
+ },
769
+ {
770
+ "appName": "m365",
771
+ "repoURL": "CMD",
772
+ "doc": "☁️ CLI for Microsoft 365",
773
+ "fileNamePattern": {
774
+ "amd64": {
775
+ "linux": "npm install -g @pnp/cli-microsoft365",
776
+ "macos": "npm install -g @pnp/cli-microsoft365",
777
+ "windows": "npm install -g @pnp/cli-microsoft365"
778
+ },
779
+ "arm64": {
780
+ "linux": "npm install -g @pnp/cli-microsoft365",
781
+ "macos": "npm install -g @pnp/cli-microsoft365",
782
+ "windows": "npm install -g @pnp/cli-microsoft365"
783
+ }
784
+ }
785
+ },
786
+ {
787
+ "appName": "mcfly",
788
+ "repoURL": "https://github.com/cantino/mcfly",
789
+ "doc": "🚀 Fly through your shell history. Great Scott!",
790
+ "fileNamePattern": {
791
+ "amd64": {
792
+ "linux": "mcfly-{version}-x86_64-unknown-linux-musl.tar.gz",
793
+ "macos": "mcfly-{version}-x86_64-apple-darwin.tar.gz",
794
+ "windows": "mcfly-{version}-x86_64-pc-windows-msvc.zip"
795
+ },
796
+ "arm64": {
797
+ "linux": "mcfly-{version}-aarch64-unknown-linux-musl.tar.gz",
798
+ "macos": "mcfly-{version}-aarch64-apple-darwin.tar.gz",
799
+ "windows": "mcfly-{version}-aarch64-pc-windows-msvc.zip"
800
+ }
801
+ }
802
+ },
803
+ {
804
+ "appName": "mods",
805
+ "repoURL": "https://github.com/charmbracelet/mods/",
806
+ "doc": "🤖 AI for the command line, built for pipelines",
807
+ "fileNamePattern": {
808
+ "amd64": {
809
+ "linux": "mods_{version}_Linux_x86_64.tar.gz",
810
+ "macos": "mods_{version}_Darwin_x86_64.tar.gz",
811
+ "windows": "mods_{version}_Windows_x86_64.zip"
812
+ },
813
+ "arm64": {
814
+ "linux": "mods_{version}_Linux_arm64.tar.gz",
815
+ "macos": "mods_{version}_Darwin_arm64.tar.gz",
816
+ "windows": "mods_{version}_Windows_arm64.zip"
817
+ }
818
+ }
819
+ },
820
+ {
821
+ "appName": "mprocs",
822
+ "repoURL": "https://github.com/pvolok/mprocs",
823
+ "doc": "🖥️ Windows/Linux/macOS poorman's zellij",
824
+ "fileNamePattern": {
825
+ "amd64": {
826
+ "linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
827
+ "macos": "mprocs-{version}-darwin-x86_64.tar.gz",
828
+ "windows": "mprocs-{version}-windows-x86_64.zip"
829
+ },
830
+ "arm64": {
831
+ "linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
832
+ "macos": "mprocs-{version}-darwin-aarch64.tar.gz",
833
+ "windows": "mprocs-{version}-windows-x86_64.zip"
834
+ }
835
+ }
836
+ },
837
+ {
838
+ "appName": "ouch",
839
+ "repoURL": "https://github.com/ouch-org/ouch",
840
+ "doc": "📦 A cli for extracting and creating archives in unified way.",
841
+ "fileNamePattern": {
842
+ "amd64": {
843
+ "linux": "ouch-x86_64-unknown-linux-musl.tar.gz",
844
+ "macos": "ouch-x86_64-apple-darwin.tar.gz",
845
+ "windows": "ouch-x86_64-pc-windows-msvc.zip"
846
+ },
847
+ "arm64": {
848
+ "linux": "ouch-aarch64-unknown-linux-musl.tar.gz",
849
+ "macos": "ouch-aarch64-apple-darwin.tar.gz",
850
+ "windows": "ouch-aarch64-pc-windows-msvc.zip"
851
+ }
852
+ }
853
+ },
854
+ {
855
+ "appName": "procs",
856
+ "repoURL": "https://github.com/dalance/procs/",
857
+ "doc": "📊 procs is a modern replacement for ps written in Rust.",
858
+ "fileNamePattern": {
859
+ "amd64": {
860
+ "linux": "procs-v{version}-x86_64-linux.zip",
861
+ "macos": "procs-v{version}-x86_64-mac.zip",
862
+ "windows": "procs-v{version}-x86_64-windows.zip"
863
+ },
864
+ "arm64": {
865
+ "linux": "procs-v{version}-aarch64-linux.zip",
866
+ "macos": "procs-v{version}-aarch64-mac.zip",
867
+ "windows": "procs-v{version}-aarch64-windows.zip"
868
+ }
869
+ }
870
+ },
871
+ {
872
+ "appName": "rclone",
873
+ "repoURL": "https://github.com/rclone/rclone",
874
+ "doc": "☁️ cli to sync to cloud storage providers.",
875
+ "fileNamePattern": {
876
+ "amd64": {
877
+ "linux": "rclone-v{version}-linux-amd64.zip",
878
+ "macos": "rclone-v{version}-osx-amd64.zip",
879
+ "windows": "rclone-v{version}-windows-amd64.zip"
880
+ },
881
+ "arm64": {
882
+ "linux": "rclone-v{version}-linux-arm64.zip",
883
+ "macos": "rclone-v{version}-osx-arm64.zip",
884
+ "windows": "rclone-v{version}-windows-arm64.zip"
885
+ }
886
+ }
887
+ },
888
+ {
889
+ "appName": "meilisearch",
890
+ "repoURL": "https://github.com/meilisearch/meilisearch",
891
+ "doc": "🔍 symantic search at lightening speed",
892
+ "fileNamePattern": {
893
+ "amd64": {
894
+ "linux": "meilisearch-linux-amd64",
895
+ "macos": "meilisearch-macos-amd64",
896
+ "windows": "meilisearch-windows-amd64.exe"
897
+ },
898
+ "arm64": {
899
+ "linux": "meilisearch-linux-aarch64",
900
+ "macos": "meilisearch-macos-aarch64",
901
+ "windows": "meilisearch-windows-aarch64.exe"
902
+ }
903
+ }
904
+ },
905
+ {
906
+ "appName": "ast-grep",
907
+ "repoURL": "https://github.com/ast-grep/ast-grep",
908
+ "doc": "🔍 grep for code - search and rewrite code with ASTs",
909
+ "fileNamePattern": {
910
+ "amd64": {
911
+ "linux": "app-x86_64-unknown-linux-gnu.zip",
912
+ "macos": "app-x86_64-apple-darwin.zip",
913
+ "windows": "app-x86_64-pc-windows-msvc.zip"
914
+ },
915
+ "arm64": {
916
+ "linux": "app-aarch64-unknown-linux-gnu.zip",
917
+ "macos": "app-aarch64-apple-darwin.zip",
918
+ "windows": "app-aarch64-pc-windows-msvc.zip"
919
+ }
920
+ }
921
+ },
922
+ {
923
+ "appName": "rg",
924
+ "repoURL": "https://github.com/BurntSushi/ripgrep",
925
+ "doc": "🔍 recursively searches directories for a regex pattern while respecting your gitignore rules",
926
+ "fileNamePattern": {
927
+ "amd64": {
928
+ "linux": "ripgrep-{version}-x86_64-unknown-linux-musl.tar.gz",
929
+ "macos": "ripgrep-{version}-x86_64-apple-darwin.tar.gz",
930
+ "windows": "ripgrep-{version}-x86_64-pc-windows-msvc.zip"
931
+ },
932
+ "arm64": {
933
+ "linux": "ripgrep-{version}-aarch64-unknown-linux-gnu.tar.gz",
934
+ "macos": "ripgrep-{version}-aarch64-apple-darwin.tar.gz",
935
+ "windows": "ripgrep-{version}-x86_64-pc-windows-msvc.zip"
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "appName": "rga",
941
+ "repoURL": "https://github.com/phiresky/ripgrep-all",
942
+ "doc": "🔍 ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.",
943
+ "fileNamePattern": {
944
+ "amd64": {
945
+ "linux": "ripgrep_all-v{version}-x86_64-unknown-linux-musl.tar.gz",
946
+ "macos": "ripgrep_all-v{version}-x86_64-apple-darwin.tar.gz",
947
+ "windows": "ripgrep_all-v{version}-x86_64-pc-windows-msvc.zip"
948
+ },
949
+ "arm64": {
950
+ "linux": null,
951
+ "macos": null,
952
+ "windows": null
953
+ }
954
+ }
955
+ },
956
+ {
957
+ "appName": "starship",
958
+ "repoURL": "https://github.com/starship/starship",
959
+ "doc": "⭐ The minimal, blazing-fast, and infinitely customizable prompt for any shell!",
960
+ "fileNamePattern": {
961
+ "amd64": {
962
+ "linux": "starship-x86_64-unknown-linux-musl.tar.gz",
963
+ "macos": "starship-x86_64-apple-darwin.tar.gz",
964
+ "windows": "starship-x86_64-pc-windows-msvc.zip"
965
+ },
966
+ "arm64": {
967
+ "linux": "starship-aarch64-unknown-linux-musl.tar.gz",
968
+ "macos": "starship-aarch64-apple-darwin.tar.gz",
969
+ "windows": "starship-aarch64-pc-windows-msvc.zip"
970
+ }
971
+ }
972
+ },
973
+ {
974
+ "appName": "tere",
975
+ "repoURL": "https://github.com/mgunyho/tere",
976
+ "doc": "📂 Tere is a terminal file explorer written in Rust. No more ls + cd",
977
+ "fileNamePattern": {
978
+ "amd64": {
979
+ "linux": "tere-{version}-x86_64-unknown-linux-gnu.zip",
980
+ "macos": "tere-{version}-x86_64-apple-darwin.zip",
981
+ "windows": "tere-{version}-x86_64-pc-windows-gnu.zip"
982
+ },
983
+ "arm64": {
984
+ "linux": "tere-{version}-aarch64-unknown-linux-gnu.zip",
985
+ "macos": "tere-{version}-aarch64-apple-darwin.zip",
986
+ "windows": "tere-{version}-aarch64-pc-windows-gnu.zip"
987
+ }
988
+ }
989
+ },
990
+ {
991
+ "appName": "topgrade",
992
+ "repoURL": "https://github.com/topgrade-rs/topgrade",
993
+ "doc": "⬆️ Keeping your system up to date usually involves invoking multiple package managers.",
994
+ "fileNamePattern": {
995
+ "amd64": {
996
+ "linux": "topgrade-v{version}-x86_64-unknown-linux-gnu.tar.gz",
997
+ "macos": "topgrade-v{version}-x86_64-apple-darwin.tar.gz",
998
+ "windows": "topgrade-v{version}-x86_64-pc-windows-msvc.zip"
999
+ },
1000
+ "arm64": {
1001
+ "linux": "topgrade-v{version}-aarch64-unknown-linux-gnu.tar.gz",
1002
+ "macos": "topgrade-v{version}-aarch64-apple-darwin.tar.gz",
1003
+ "windows": "topgrade-v{version}-aarch64-pc-windows-msvc.zip"
1004
+ }
1005
+ }
1006
+ },
1007
+ {
1008
+ "appName": "ttyd",
1009
+ "repoURL": "https://github.com/tsl0922/ttyd",
1010
+ "doc": "🌐 ttyd shares your terminal on the web.",
1011
+ "fileNamePattern": {
1012
+ "amd64": {
1013
+ "linux": "ttyd.x86_64",
1014
+ "macos": null,
1015
+ "windows": "ttyd.win32.exe"
1016
+ },
1017
+ "arm64": {
1018
+ "linux": "ttyd.aarch64",
1019
+ "macos": null,
1020
+ "windows": null
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "appName": "viu",
1026
+ "repoURL": "https://github.com/atanunq/viu",
1027
+ "doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
1028
+ "fileNamePattern": {
1029
+ "amd64": {
1030
+ "linux": "viu-x86_64-unknown-linux-musl",
1031
+ "macos": "viu-x86_64-apple-darwin",
1032
+ "windows": "viu-x86_64-pc-windows-msvc.exe"
1033
+ },
1034
+ "arm64": {
1035
+ "linux": "viu-aarch64-unknown-linux-musl",
1036
+ "macos": "viu-x86_64-apple-darwin",
1037
+ "windows": "viu-x86_64-pc-windows-msvc.exe"
1038
+ }
1039
+ }
1040
+ },
1041
+ {
1042
+ "appName": "watchexec",
1043
+ "repoURL": "https://github.com/watchexec/watchexec",
1044
+ "doc": "👀 Executes commands in response to file modifications.",
1045
+ "fileNamePattern": {
1046
+ "amd64": {
1047
+ "linux": "watchexec-{version}-x86_64-unknown-linux-gnu.tar.xz",
1048
+ "macos": "watchexec-{version}-x86_64-apple-darwin.tar.xz",
1049
+ "windows": "watchexec-{version}-x86_64-pc-windows-msvc.zip"
1050
+ },
1051
+ "arm64": {
1052
+ "linux": "watchexec-{version}-aarch64-unknown-linux-gnu.tar.xz",
1053
+ "macos": "watchexec-{version}-aarch64-apple-darwin.tar.xz",
1054
+ "windows": "watchexec-{version}-x86_64-pc-windows-msvc.zip"
1055
+ }
1056
+ }
1057
+ },
1058
+ {
1059
+ "appName": "yazi",
1060
+ "repoURL": "https://github.com/sxyazi/yazi",
1061
+ "doc": "⚡ Blazing Fast Terminal File Manager.",
1062
+ "fileNamePattern": {
1063
+ "amd64": {
1064
+ "linux": "yazi-x86_64-unknown-linux-musl.zip",
1065
+ "macos": "yazi-x86_64-apple-darwin.zip",
1066
+ "windows": "yazi-x86_64-pc-windows-msvc.zip"
1067
+ },
1068
+ "arm64": {
1069
+ "linux": "yazi-aarch64-unknown-linux-musl.zip",
1070
+ "macos": "yazi-aarch64-apple-darwin.zip",
1071
+ "windows": "yazi-aarch64-pc-windows-msvc.zip"
1072
+ }
1073
+ }
1074
+ },
1075
+ {
1076
+ "appName": "zoxide",
1077
+ "repoURL": "https://github.com/ajeetdsouza/zoxide",
1078
+ "doc": "🚀 A cd command that learns - easily navigate directories from the command-line",
1079
+ "fileNamePattern": {
1080
+ "amd64": {
1081
+ "linux": "zoxide-{version}-x86_64-unknown-linux-musl.tar.gz",
1082
+ "macos": "zoxide-{version}-x86_64-apple-darwin.tar.gz",
1083
+ "windows": "zoxide-{version}-x86_64-pc-windows-msvc.zip"
1084
+ },
1085
+ "arm64": {
1086
+ "linux": "zoxide-{version}-aarch64-unknown-linux-musl.tar.gz",
1087
+ "macos": "zoxide-{version}-aarch64-apple-darwin.tar.gz",
1088
+ "windows": "zoxide-{version}-aarch64-pc-windows-msvc.zip"
1089
+ }
1090
+ }
1091
+ },
1092
+ {
1093
+ "appName": "ytui-music",
1094
+ "repoURL": "https://github.com/sudipghimire533/ytui-music",
1095
+ "doc": "🎵 A terminal based YouTube music player written in Rust.",
1096
+ "fileNamePattern": {
1097
+ "amd64": {
1098
+ "linux": "ytui_music-linux-amd64",
1099
+ "macos": null,
1100
+ "windows": null
1101
+ },
1102
+ "arm64": {
1103
+ "linux": null,
1104
+ "macos": null,
1105
+ "windows": null
1106
+ }
1107
+ }
1108
+ },
1109
+ {
1110
+ "appName": "youtube-tui",
1111
+ "repoURL": "https://github.com/Siriusmart/youtube-tui",
1112
+ "doc": "🎵 A terminal based YouTube music player written in Rust.",
1113
+ "fileNamePattern": {
1114
+ "amd64": {
1115
+ "linux": "youtube-tui-full_arch-x86_64",
1116
+ "macos": null,
1117
+ "windows": null
1118
+ },
1119
+ "arm64": {
1120
+ "linux": null,
1121
+ "macos": null,
1122
+ "windows": null
1123
+ }
1124
+ }
1125
+ },
1126
+ {
1127
+ "appName": "termusic",
1128
+ "repoURL": "https://github.com/tramhao/termusic",
1129
+ "doc": "🎵 A terminal-based music player written in Rust.",
1130
+ "fileNamePattern": {
1131
+ "amd64": {
1132
+ "linux": "termusic-v{version}-x86_64-linux.tar.xz",
1133
+ "macos": null,
1134
+ "windows": null
1135
+ },
1136
+ "arm64": {
1137
+ "linux": null,
1138
+ "macos": null,
1139
+ "windows": null
1140
+ }
1141
+ }
1142
+ },
1143
+ {
1144
+ "appName": "kronos",
1145
+ "repoURL": "https://github.com/TrevorSatori/kronos",
1146
+ "doc": "🎵 A Customizable Terminal Music Player For Offline Listening",
1147
+ "fileNamePattern": {
1148
+ "amd64": {
1149
+ "linux": "Kronos",
1150
+ "macos": null,
1151
+ "windows": null
1152
+ },
1153
+ "arm64": {
1154
+ "linux": null,
1155
+ "macos": null,
1156
+ "windows": null
1157
+ }
1158
+ }
1159
+ },
1160
+ {
1161
+ "appName": "transmission",
1162
+ "repoURL": "https://github.com/transmission/transmission",
1163
+ "doc": "📥 A fast, easy, and free BitTorrent client.",
1164
+ "fileNamePattern": {
1165
+ "amd64": {
1166
+ "linux": "transmission-{version}.tar.xz",
1167
+ "macos": null,
1168
+ "windows": null
1169
+ },
1170
+ "arm64": {
1171
+ "linux": null,
1172
+ "macos": null,
1173
+ "windows": null
1174
+ }
1175
+ }
1176
+ },
1177
+ {
1178
+ "appName": "nnn",
1179
+ "repoURL": "https://github.com/jarun/nnn",
1180
+ "doc": "📂 A terminal-based file manager.",
1181
+ "fileNamePattern": {
1182
+ "amd64": {
1183
+ "linux": "nnn-static-{version}.x86_64.tar.gz",
1184
+ "macos": null,
1185
+ "windows": null
1186
+ },
1187
+ "arm64": {
1188
+ "linux": null,
1189
+ "macos": null,
1190
+ "windows": null
1191
+ }
1192
+ }
1193
+ },
1194
+ {
1195
+ "appName": "exa",
1196
+ "repoURL": "https://github.com/ogham/exa",
1197
+ "doc": "📂 A modern replacement for ls. lsd alternative.",
1198
+ "fileNamePattern": {
1199
+ "amd64": {
1200
+ "linux": "exa-linux-x86_64-v{version}.zip",
1201
+ "macos": null,
1202
+ "windows": null
1203
+ },
1204
+ "arm64": {
1205
+ "linux": null,
1206
+ "macos": null,
1207
+ "windows": null
1208
+ }
1209
+ }
1210
+ },
1211
+ {
1212
+ "appName": "bytehound",
1213
+ "repoURL": "https://github.com/koute/bytehound",
1214
+ "doc": "🔍 Inspecting the memory usage of a running process",
1215
+ "fileNamePattern": {
1216
+ "amd64": {
1217
+ "linux": "bytehound-x86_64-unknown-linux-gnu.tgz",
1218
+ "macos": null,
1219
+ "windows": null
1220
+ },
1221
+ "arm64": {
1222
+ "linux": null,
1223
+ "macos": null,
1224
+ "windows": null
1225
+ }
1226
+ }
1227
+ },
1228
+ {
1229
+ "appName": "cb",
1230
+ "repoURL": "CMD",
1231
+ "doc": "📋 Clipboard manager for the terminal",
1232
+ "fileNamePattern": {
1233
+ "amd64": {
1234
+ "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1235
+ "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1236
+ "windows": "winget install -e --id Slackadays.Clipboard"
1237
+ },
1238
+ "arm64": {
1239
+ "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1240
+ "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1241
+ "windows": "winget install -e --id Slackadays.Clipboard"
1242
+ }
1243
+ }
1244
+ },
1245
+ {
1246
+ "appName": "atuin",
1247
+ "repoURL": "https://github.com/atuinsh/atuin",
1248
+ "doc": "🔍 Shell history search tool. Mcfly alternative",
1249
+ "fileNamePattern": {
1250
+ "amd64": {
1251
+ "linux": "atuin-x86_64-unknown-linux-gnu.tar.gz",
1252
+ "macos": null,
1253
+ "windows": null
1254
+ },
1255
+ "arm64": {
1256
+ "linux": "atuin-aarch64-unknown-linux-gnu.tar.gz",
1257
+ "macos": null,
1258
+ "windows": null
1259
+ }
1260
+ }
1261
+ },
1262
+ {
1263
+ "appName": "browsh",
1264
+ "repoURL": "https://github.com/browsh-org/browsh",
1265
+ "doc": "🌐 browser in the shell",
1266
+ "fileNamePattern": {
1267
+ "amd64": {
1268
+ "linux": "browsh-v{version}-linux-amd64",
1269
+ "macos": "browsh-v{version}-darwin-amd64",
1270
+ "windows": null
1271
+ },
1272
+ "arm64": {
1273
+ "linux": "browsh-v{version}-linux-arm64",
1274
+ "macos": "browsh-v{version}-darwin-arm64",
1275
+ "windows": null
1276
+ }
1277
+ }
1278
+ },
1279
+ {
1280
+ "appName": "carbonyl",
1281
+ "repoURL": "https://github.com/fathyb/carbonyl",
1282
+ "doc": "A Chromium based browser built to run in a terminal",
1283
+ "fileNamePattern": {
1284
+ "amd64": {
1285
+ "linux": "carbonyl.linux-amd64.zip",
1286
+ "macos": null,
1287
+ "windows": null
1288
+ },
1289
+ "arm64": {
1290
+ "linux": "carbonyl.linux-arm64.zip",
1291
+ "macos": null,
1292
+ "windows": null
1293
+ }
1294
+ }
1295
+ },
1296
+ {
1297
+ "appName": "patat",
1298
+ "repoURL": "https://github.com/jaspervdj/patat",
1299
+ "doc": "🎯 Terminal-based presentations using Pandoc. Presenterm alternative.",
1300
+ "fileNamePattern": {
1301
+ "amd64": {
1302
+ "linux": "patat-v{version}-linux-x86_64.tar.gz",
1303
+ "macos": null,
1304
+ "windows": null
1305
+ },
1306
+ "arm64": {
1307
+ "linux": null,
1308
+ "macos": null,
1309
+ "windows": null
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "appName": "SqliteBrowser",
1315
+ "repoURL": "https://github.com/sqlitebrowser/sqlitebrowser",
1316
+ "doc": "🗃️ A visual tool to create, design, and edit database files compatible with SQLite.",
1317
+ "fileNamePattern": {
1318
+ "amd64": {
1319
+ "linux": "DB.Browser.for.SQLite-v{version}-x86.64-v2.AppImage",
1320
+ "macos": null,
1321
+ "windows": null
1322
+ },
1323
+ "arm64": {
1324
+ "linux": null,
1325
+ "macos": null,
1326
+ "windows": null
1327
+ }
1328
+ }
1329
+ },
1330
+ {
1331
+ "appName": "sqlite3",
1332
+ "repoURL": "CMD",
1333
+ "doc": "A cli for sqlite",
1334
+ "fileNamePattern": {
1335
+ "amd64": {
1336
+ "linux": "sudo nala install sqlite3 -y",
1337
+ "macos": null,
1338
+ "windows": null
1339
+ },
1340
+ "arm64": {
1341
+ "linux": null,
1342
+ "macos": null,
1343
+ "windows": null
1344
+ }
1345
+ }
1346
+ },
1347
+ {
1348
+ "appName": "postgresql-client",
1349
+ "repoURL": "CMD",
1350
+ "doc": "A cli for postgresql",
1351
+ "fileNamePattern": {
1352
+ "amd64": {
1353
+ "linux": "sudo nala install postgresql-client -y",
1354
+ "macos": null,
1355
+ "windows": null
1356
+ },
1357
+ "arm64": {
1358
+ "linux": null,
1359
+ "macos": null,
1360
+ "windows": null
1361
+ }
1362
+ }
1363
+ },
1364
+ {
1365
+ "appName": "redis-cli",
1366
+ "repoURL": "CMD",
1367
+ "doc": "A cli for redis",
1368
+ "fileNamePattern": {
1369
+ "amd64": {
1370
+ "linux": "sudo nala install redis-tools -y",
1371
+ "macos": null,
1372
+ "windows": null
1373
+ },
1374
+ "arm64": {
1375
+ "linux": null,
1376
+ "macos": null,
1377
+ "windows": null
1378
+ }
1379
+ }
1380
+ },
1381
+ {
1382
+ "appName": "DBeaver",
1383
+ "repoURL": "https://github.com/dbeaver/dbeaver",
1384
+ "doc": "🗃️ Free universal database tool and SQL client.",
1385
+ "fileNamePattern": {
1386
+ "amd64": {
1387
+ "linux": "dbeaver-ce-{version}-linux.gtk.x86_64.tar.gz",
1388
+ "macos": null,
1389
+ "windows": null
1390
+ },
1391
+ "arm64": {
1392
+ "linux": "dbeaver-ce-{version}-linux.gtk.aarch64.tar.gz",
1393
+ "macos": null,
1394
+ "windows": null
1395
+ }
1396
+ }
1397
+ },
1398
+ {
1399
+ "appName": "rainfrog",
1400
+ "repoURL": "https://github.com/achristmascarl/rainfrog",
1401
+ "doc": "🗃️ TUI DB Visualizer",
1402
+ "fileNamePattern": {
1403
+ "amd64": {
1404
+ "linux": "rainfrog-{version}-x86_64-unknown-linux-musl.tar.gz",
1405
+ "macos": null,
1406
+ "windows": null
1407
+ },
1408
+ "arm64": {
1409
+ "linux": "rainfrog-{version}-aarch64-unknown-linux-musl.tar.gz",
1410
+ "macos": null,
1411
+ "windows": null
1412
+ }
1413
+ }
1414
+ },
1415
+ {
1416
+ "appName": "pgweb",
1417
+ "repoURL": "https://github.com/sosedoff/pgweb/",
1418
+ "doc": "🗃️ Web-based PostgreSQL database browser written in Go",
1419
+ "fileNamePattern": {
1420
+ "amd64": {
1421
+ "linux": "pgweb-linux-amd64.zip",
1422
+ "macos": "pgweb_darwin_amd64.zip",
1423
+ "windows": "pgweb_windows_amd64.zip"
1424
+ },
1425
+ "arm64": {
1426
+ "linux": "pgweb-linux-arm64.zip",
1427
+ "macos": "pgweb_darwin_arm64.zip",
1428
+ "windows": "pgweb_windows_arm64.zip"
1429
+ }
1430
+ }
1431
+ },
1432
+ {
1433
+ "appName": "dbgate",
1434
+ "repoURL": "https://github.com/dbgate/dbgate",
1435
+ "doc": "🗃️ Cross-platform database manager for developers and database administrators",
1436
+ "fileNamePattern": {
1437
+ "amd64": {
1438
+ "linux": "dbgate-{version}-linux_x64.tar.gz",
1439
+ "macos": "dbgate-{version}-mac_x64.zip",
1440
+ "windows": "dbgate-windows-latest.zip"
1441
+ },
1442
+ "arm64": {
1443
+ "linux": "dbgate-{version}-linux_arm64.tar.gz",
1444
+ "macos": "dbgate-{version}-mac_arm64.zip",
1445
+ "windows": "dbgate-windows-latest-arm64.exe"
1446
+ }
1447
+ }
1448
+ },
1449
+ {
1450
+ "appName": "duckdb",
1451
+ "repoURL": "https://github.com/duckdb/duckdb",
1452
+ "doc": "🗃️ An in-process SQL OLAP database management system",
1453
+ "fileNamePattern": {
1454
+ "amd64": {
1455
+ "linux": "duckdb_cli-linux-amd64.zip",
1456
+ "macos": "duckdb_cli-osx-universal.zip",
1457
+ "windows": "duckdb_cli-windows-amd64.zip"
1458
+ },
1459
+ "arm64": {
1460
+ "linux": "duckdb_cli-linux-arm64.zip",
1461
+ "macos": "duckdb_cli-osx-universal.zip",
1462
+ "windows": "duckdb_cli-windows-arm64.zip"
1463
+ }
1464
+ }
1465
+ },
1466
+ {
1467
+ "appName": "cpz",
1468
+ "repoURL": "https://github.com/SUPERCILEX/fuc",
1469
+ "doc": "📋 Fast copy",
1470
+ "fileNamePattern": {
1471
+ "amd64": {
1472
+ "linux": "x86_64-unknown-linux-gnu-cpz",
1473
+ "windows": "x86_64-pc-windows-msvc-cpz.exe",
1474
+ "macos": "x86_64-apple-darwin-cpz"
1475
+ },
1476
+ "arm64": {
1477
+ "linux": "aarch64-unknown-linux-gnu-cpz",
1478
+ "windows": "aarch64-pc-windows-msvc-cpz.exe",
1479
+ "macos": "aarch64-apple-darwin-cpz"
1480
+ }
1481
+ }
1482
+ },
1483
+ {
1484
+ "appName": "rmz",
1485
+ "repoURL": "https://github.com/SUPERCILEX/fuc",
1486
+ "doc": "🗑️ Fast remove",
1487
+ "fileNamePattern": {
1488
+ "amd64": {
1489
+ "linux": "x86_64-unknown-linux-gnu-rmz",
1490
+ "windows": "x86_64-pc-windows-msvc-rmz.exe",
1491
+ "macos": "x86_64-apple-darwin-rmz"
1492
+ },
1493
+ "arm64": {
1494
+ "linux": "aarch64-unknown-linux-gnu-rmz",
1495
+ "windows": "aarch64-pc-windows-msvc-rmz.exe",
1496
+ "macos": "aarch64-apple-darwin-rmz"
1497
+ }
1498
+ }
1499
+ },
1500
+ {
1501
+ "appName": "mermaid-cli",
1502
+ "repoURL": "CMD",
1503
+ "doc": "📊 Generate diagrams and flowcharts from text in a similar manner as markdown",
1504
+ "fileNamePattern": {
1505
+ "amd64": {
1506
+ "linux": "npm install -g @mermaid-js/mermaid-cli",
1507
+ "windows": "npm install -g @mermaid-js/mermaid-cli",
1508
+ "macos": "npm install -g @mermaid-js/mermaid-cli"
1509
+ },
1510
+ "arm64": {
1511
+ "linux": "npm install -g @mermaid-js/mermaid-cli",
1512
+ "windows": "npm install -g @mermaid-js/mermaid-cli",
1513
+ "macos": "npm install -g @mermaid-js/mermaid-cli"
1514
+ }
1515
+ }
1516
+ },
1517
+ {
1518
+ "appName": "html2markdown",
1519
+ "repoURL": "https://github.com/JohannesKaufmann/html-to-markdown",
1520
+ "doc": "📜 Convert HTML to Markdown (no LLM, very fast, very cheap)",
1521
+ "fileNamePattern": {
1522
+ "amd64": {
1523
+ "linux": "html-to-markdown_Linux_x86_64.tar.gz",
1524
+ "windows": "html-to-markdown_Windows_x86_64.zip",
1525
+ "macos": "html-to-markdown_Darwin_x86_64.tar.gz"
1526
+ },
1527
+ "arm64": {
1528
+ "linux": "html-to-markdown_Linux_arm64.tar.gz",
1529
+ "windows": "html-to-markdown_Windows_arm64.zip",
1530
+ "macos": "html-to-markdown_Darwin_arm64.tar.gz"
1531
+ }
1532
+ }
1533
+ },
1534
+ {
1535
+ "appName": "xcrawl3r",
1536
+ "repoURL": "https://github.com/hueristiq/xcrawl3r",
1537
+ "doc": "🕷️ A command line tool to crawl and scrape websites",
1538
+ "fileNamePattern": {
1539
+ "amd64": {
1540
+ "linux": "xcrawl3r_{version}_linux_amd64.tar.gz",
1541
+ "windows": "xcrawl3r_{version}_windows_amd64.zip",
1542
+ "macos": "xcrawl3r_{version}_darwin_amd64.tar.gz"
1543
+ },
1544
+ "arm64": {
1545
+ "linux": "xcrawl3r_{version}_linux_arm64.tar.gz",
1546
+ "windows": null,
1547
+ "macos": "xcrawl3r_{version}_darwin_arm64.tar.gz"
1548
+ }
1549
+ }
1550
+ },
1551
+ {
1552
+ "appName": "obsidian",
1553
+ "repoURL": "https://github.com/obsidianmd/obsidian-releases",
1554
+ "doc": "🧠 Obsidian is a powerful knowledge base that works on top of a local folder of plain text Markdown files.",
1555
+ "fileNamePattern": {
1556
+ "amd64": {
1557
+ "linux": "Obsidian-{version}.AppImage",
1558
+ "windows": "Obsidian-{version}.exe",
1559
+ "macos": "Obsidian-{version}.dmg"
1560
+ },
1561
+ "arm64": {
1562
+ "linux": "Obsidian-{version}-arm64.AppImage",
1563
+ "windows": null,
1564
+ "macos": "Obsidian-{version}.dmg"
1565
+ }
1566
+ }
1567
+ },
1568
+ {
1569
+ "appName": "marp",
1570
+ "repoURL": "CMD",
1571
+ "doc": "🎯 Markdown presentation writer",
1572
+ "fileNamePattern": {
1573
+ "amd64": {
1574
+ "linux": "npm install -g @marp-team/marp-cli",
1575
+ "windows": "npm install -g @marp-team/marp-cli",
1576
+ "macos": "npm install -g @marp-team/marp-cli"
1577
+ },
1578
+ "arm64": {
1579
+ "linux": "npm install -g @marp-team/marp-cli",
1580
+ "windows": "npm install -g @marp-team/marp-cli",
1581
+ "macos": "npm install -g @marp-team/marp-cli"
1582
+ }
1583
+ }
1584
+ },
1585
+ {
1586
+ "appName": "presenterm",
1587
+ "repoURL": "https://github.com/mfontanini/presenterm",
1588
+ "doc": "🎭 present from temrinal",
1589
+ "fileNamePattern": {
1590
+ "amd64": {
1591
+ "linux": "presenterm-{version}-x86_64-unknown-linux-gnu.tar.gz",
1592
+ "windows": "presenterm-{version}-x86_64-pc-windows-msvc.zip",
1593
+ "macos": "presenterm-{version}-x86_64-apple-darwin.tar.gz"
1594
+ },
1595
+ "arm64": {
1596
+ "linux": "presenterm-{version}-aarch64-unknown-linux-gnu.tar.gz",
1597
+ "windows": null,
1598
+ "macos": "presenterm-{version}-aarch64-apple-darwin.tar.gz"
1599
+ }
1600
+ }
1601
+ },
1602
+ {
1603
+ "appName": "pandoc",
1604
+ "repoURL": "https://github.com/jgm/pandoc",
1605
+ "doc": "📝 The universal markup converter",
1606
+ "fileNamePattern": {
1607
+ "amd64": {
1608
+ "linux": "pandoc-{version}-linux-amd64.tar.gz",
1609
+ "windows": "pandoc-{version}-windows-x86_64.zip",
1610
+ "macos": "pandoc-{version}-x86_64-macOS.pkg"
1611
+ },
1612
+ "arm64": {
1613
+ "linux": "pandoc-{version}-linux-arm64.tar.gz",
1614
+ "windows": null,
1615
+ "macos": "pandoc-{version}-arm64-macOS.pkg"
1616
+ }
1617
+ }
1618
+ },
1619
+ {
1620
+ "appName": "devcontainer",
1621
+ "repoURL": "CMD",
1622
+ "doc": "🐋 Devcontainer is a command-line tool to manage development containers",
1623
+ "fileNamePattern": {
1624
+ "amd64": {
1625
+ "linux": "npm install -g @devcontainers/cli",
1626
+ "windows": "npm install -g @devcontainers/cli",
1627
+ "macos": "npm install -g @devcontainers/cli"
1628
+ },
1629
+ "arm64": {
1630
+ "linux": "npm install -g @devcontainers/cli",
1631
+ "windows": "npm install -g @devcontainers/cli",
1632
+ "macos": "npm install -g @devcontainers/cli"
1633
+ }
1634
+ }
1635
+ },
1636
+ {
1637
+ "appName": "bw",
1638
+ "repoURL": "CMD",
1639
+ "doc": "🔐 bitwarden is a password manager.",
1640
+ "fileNamePattern": {
1641
+ "amd64": {
1642
+ "linux": "npm install -g @bitwarden/cli",
1643
+ "windows": "npm install -g @bitwarden/cli",
1644
+ "macos": "npm install -g @bitwarden/cli"
1645
+ },
1646
+ "arm64": {
1647
+ "linux": "npm install -g @bitwarden/cli",
1648
+ "windows": "npm install -g @bitwarden/cli",
1649
+ "macos": "npm install -g @bitwarden/cli"
1650
+ }
1651
+ }
1652
+ },
1653
+ {
1654
+ "appName": "OBS Background removal",
1655
+ "repoURL": "https://github.com/royshil/obs-backgroundremoval",
1656
+ "doc": "🎥 A plugin for OBS Studio to remove background from a video",
1657
+ "fileNamePattern": {
1658
+ "amd64": {
1659
+ "linux": "obs-backgroundremoval-{version}-x86_64-linux-gnu.deb",
1660
+ "windows": "obs-backgroundremoval-{version}-windows-x64-Installer.exe",
1661
+ "macos": "obs-backgroundremoval-{version}-macos-universal.pkg"
1662
+ },
1663
+ "arm64": {
1664
+ "linux": null,
1665
+ "windows": null,
1666
+ "macos": "obs-backgroundremoval-{version}-macos-universal.pkg"
1667
+ }
1668
+ }
1669
+ },
1670
+ {
1671
+ "appName": "rustdesk",
1672
+ "repoURL": "https://github.com/rustdesk/rustdesk",
1673
+ "doc": "🖥️ Yet another remote desktop software, written in Rust. Works out of the box, no configuration required",
1674
+ "fileNamePattern": {
1675
+ "amd64": {
1676
+ "linux": "rustdesk-{version}-x86_64.AppImage",
1677
+ "windows": "rustdesk-{version}-x86_64.msi",
1678
+ "macos": "rustdesk-{version}-x86_64.dmg"
1679
+ },
1680
+ "arm64": {
1681
+ "linux": "rustdesk-{version}-aarch64.AppImage",
1682
+ "windows": null,
1683
+ "macos": "rustdesk-{version}-aarch64.dmg"
1684
+ }
1685
+ }
1686
+ },
1687
+ {
1688
+ "appName": "evcxr",
1689
+ "repoURL": "https://github.com/evcxr/evcxr",
1690
+ "doc": "🧪 A Jupyter Kernel for Rust",
1691
+ "fileNamePattern": {
1692
+ "amd64": {
1693
+ "linux": "evcxr-v{version}-x86_64-unknown-linux-gnu.tar.gz",
1694
+ "windows": "evcxr-v{version}-x86_64-pc-windows-msvc.zip",
1695
+ "macos": null
1696
+ },
1697
+ "arm64": {
1698
+ "linux": null,
1699
+ "windows": null,
1700
+ "macos": "evcxr-v{version}-aarch64-apple-darwin.tar.gz"
1701
+ }
1702
+ }
1703
+ },
1704
+ {
1705
+ "appName": "forward-cli",
1706
+ "repoURL": "https://github.com/axetroy/forward-cli",
1707
+ "doc": "🔄 Reverse Proxy port forwarding cli tool",
1708
+ "fileNamePattern": {
1709
+ "amd64": {
1710
+ "linux": "forward_linux_amd64.tar.gz",
1711
+ "windows": "forward_windows_amd64.tar.gz",
1712
+ "macos": "forward_darwin_amd64.tar.gz"
1713
+ },
1714
+ "arm64": {
1715
+ "linux": "forward_linux_arm64.tar.gz",
1716
+ "windows": "forward_windows_arm64.tar.gz",
1717
+ "macos": "forward_darwin_arm64.tar.gz"
1718
+ }
1719
+ }
1720
+ },
1721
+ {
1722
+ "appName": "bandwhich",
1723
+ "repoURL": "https://github.com/imsnif/bandwhich",
1724
+ "doc": "📊 monitor network usage from cli",
1725
+ "fileNamePattern": {
1726
+ "amd64": {
1727
+ "linux": "bandwhich-v{version}-x86_64-unknown-linux-gnu.tar.gz",
1728
+ "windows": "bandwhich-v{version}-x86_64-pc-windows-msvc.zip",
1729
+ "macos": "bandwhich-v{version}-x86_64-apple-darwin.tar.gz"
1730
+ },
1731
+ "arm64": {
1732
+ "linux": "bandwhich-v{version}-aarch64-unknown-linux-gnu.tar.gz",
1733
+ "windows": null,
1734
+ "macos": "bandwhich-v{version}-aarch64-apple-darwin.tar.gz"
1735
+ }
1736
+ }
1737
+ },
1738
+ {
1739
+ "appName": "ipinfo",
1740
+ "repoURL": "https://github.com/ipinfo/cli",
1741
+ "doc": "🌐 cli to get info of ips",
1742
+ "fileNamePattern": {
1743
+ "amd64": {
1744
+ "linux": "{version}_linux_amd64.tar.gz",
1745
+ "windows": "{version}_windows_amd64.zip",
1746
+ "macos": "{version}_darwin_amd64.tar.gz"
1747
+ },
1748
+ "arm64": {
1749
+ "linux": "{version}_linux_arm64.tar.gz",
1750
+ "windows": "{version}_windows_arm64.zip",
1751
+ "macos": "{version}_darwin_arm64.tar.gz"
1752
+ }
1753
+ }
1754
+ },
1755
+ {
1756
+ "appName": "dust",
1757
+ "repoURL": "https://github.com/bootandy/dust",
1758
+ "doc": "📊 A more intuitive version of du in rust. It is a dua alternative.",
1759
+ "fileNamePattern": {
1760
+ "amd64": {
1761
+ "linux": "dust-v{version}-x86_64-unknown-linux-gnu.tar.gz",
1762
+ "windows": "dust-v{version}-x86_64-pc-windows-msvc.zip",
1763
+ "macos": "dust-v{version}-x86_64-apple-darwin.tar.gz"
1764
+ },
1765
+ "arm64": {
1766
+ "linux": "dust-v{version}-aarch64-unknown-linux-gnu.tar.gz",
1767
+ "windows": null,
1768
+ "macos": null
1769
+ }
1770
+ }
1771
+ },
1772
+ {
1773
+ "appName": "ots",
1774
+ "repoURL": "https://github.com/Luzifer/ots",
1775
+ "doc": "🔒 A command line tool for generating and verifying one-time secrets.",
1776
+ "fileNamePattern": {
1777
+ "amd64": {
1778
+ "linux": "ots_linux_amd64.tgz",
1779
+ "windows": "ots_windows_amd64.zip",
1780
+ "macos": "ots_darwin_amd64.zip"
1781
+ },
1782
+ "arm64": {
1783
+ "linux": "ots_linux_arm64.tgz",
1784
+ "windows": null,
1785
+ "macos": "ots_darwin_arm64.zip"
1786
+ }
1787
+ }
1788
+ },
1789
+ {
1790
+ "appName": "ffsend",
1791
+ "repoURL": "https://github.com/timvisee/ffsend",
1792
+ "doc": "📤 Send files in secure encrypted way over the internet.",
1793
+ "fileNamePattern": {
1794
+ "amd64": {
1795
+ "linux": "ffsend-v{version}-linux-x64",
1796
+ "windows": null,
1797
+ "macos": null
1798
+ },
1799
+ "arm64": {
1800
+ "linux": null,
1801
+ "windows": null,
1802
+ "macos": null
1803
+ }
1804
+ }
1805
+ },
1806
+ {
1807
+ "appName": "portal",
1808
+ "repoURL": "https://github.com/SpatiumPortae/portal",
1809
+ "doc": "🔄 A terminal-based file transfer between two computers.",
1810
+ "fileNamePattern": {
1811
+ "amd64": {
1812
+ "linux": "portal_{version}_Linux_x86_64.tar.gz",
1813
+ "windows": "portal_{version}_Windows_x86_64.zip",
1814
+ "macos": "portal_{version}_macOS_x86_64.tar.gz"
1815
+ },
1816
+ "arm64": {
1817
+ "linux": "portal_{version}_Linux_arm64.tar.gz",
1818
+ "windows": "portal_{version}_Windows_arm64.zip",
1819
+ "macos": "portal_{version}_macOS_arm64.tar.gz"
1820
+ }
1821
+ }
1822
+ },
1823
+ {
1824
+ "appName": "qrcp",
1825
+ "repoURL": "https://github.com/claudiodangelis/qrcp",
1826
+ "doc": "📱 Transfer files over WiFi from your computer to mobile device by scanning a QR code without leaving the terminal.",
1827
+ "fileNamePattern": {
1828
+ "amd64": {
1829
+ "linux": "qrcp_{version}_linux_amd64.tar.gz",
1830
+ "windows": "qrcp_{version}_windows_amd64.zip",
1831
+ "macos": "qrcp_{version}_darwin_amd64.tar.gz"
1832
+ },
1833
+ "arm64": {
1834
+ "linux": "qrcp_{version}_linux_arm64.tar.gz",
1835
+ "windows": "qrcp_{version}_windows_arm64.zip",
1836
+ "macos": "qrcp_{version}_darwin_arm64.tar.gz"
1837
+ }
1838
+ }
1839
+ },
1840
+ {
1841
+ "appName": "qrscan",
1842
+ "repoURL": "https://github.com/sayanarijit/qrscan",
1843
+ "doc": "📷 qr code scanner",
1844
+ "fileNamePattern": {
1845
+ "amd64": {
1846
+ "linux": "qrscan-{version}-x86_64-unknown-linux-gnu.tar.gz",
1847
+ "macos": "qrscan-{version}-x86_64-apple-darwin.tar.gz",
1848
+ "windows": "qrscan-{version}-i686-pc-windows-msvc.zip"
1849
+ },
1850
+ "arm64": {
1851
+ "linux": null,
1852
+ "macos": null,
1853
+ "windows": null
1854
+ }
1855
+ }
1856
+ },
1857
+ {
1858
+ "appName": "termscp",
1859
+ "repoURL": "https://github.com/veeso/termscp",
1860
+ "doc": "📂 A TUI like winscp",
1861
+ "fileNamePattern": {
1862
+ "amd64": {
1863
+ "linux": "termscp-{version}-x86_64-unknown-linux-musl.tar.gz",
1864
+ "macos": "termscp-{version}-x86_64-apple-darwin.tar.gz",
1865
+ "windows": null
1866
+ },
1867
+ "arm64": {
1868
+ "linux": "termscp-{version}-aarch64-unknown-linux-musl.tar.gz",
1869
+ "macos": "termscp-{version}-aarch64-apple-darwin.tar.gz",
1870
+ "windows": null
1871
+ }
1872
+ }
1873
+ },
1874
+ {
1875
+ "appName": "qr",
1876
+ "repoURL": "pip install qrcode",
1877
+ "doc": "🔲 qr code generator. String to qr code.",
1878
+ "fileNamePattern": {
1879
+ "amd64": {
1880
+ "linux": null,
1881
+ "macos": null,
1882
+ "windows": null
1883
+ },
1884
+ "arm64": {
1885
+ "linux": null,
1886
+ "macos": null,
1887
+ "windows": null
1888
+ }
1889
+ }
1890
+ },
1891
+ {
1892
+ "appName": "filebrowser",
1893
+ "repoURL": "https://github.com/filebrowser/filebrowser",
1894
+ "doc": "🗂️ filebrowser provides a file managing interface within a specified directory",
1895
+ "fileNamePattern": {
1896
+ "amd64": {
1897
+ "linux": "linux-amd64-filebrowser.tar.gz",
1898
+ "macos": "darwin-amd64-filebrowser.tar.gz",
1899
+ "windows": "windows-amd64-filebrowser.zip"
1900
+ },
1901
+ "arm64": {
1902
+ "linux": "linux-arm64-filebrowser.tar.gz",
1903
+ "macos": "darwin-arm64-filebrowser.tar.gz",
1904
+ "windows": "windows-arm64-filebrowser.zip"
1905
+ }
1906
+ }
1907
+ },
1908
+ {
1909
+ "appName": "miniserve",
1910
+ "repoURL": "https://github.com/svenstaro/miniserve",
1911
+ "doc": "📂 A small, self-contained file server with directory listings",
1912
+ "fileNamePattern": {
1913
+ "amd64": {
1914
+ "linux": "miniserve-{version}-x86_64-unknown-linux-musl",
1915
+ "macos": "miniserve-{version}-x86_64-apple-darwin",
1916
+ "windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
1917
+ },
1918
+ "arm64": {
1919
+ "linux": "miniserve-{version}-aarch64-unknown-linux-musl",
1920
+ "macos": "miniserve-{version}-aarch64-apple-darwin",
1921
+ "windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
1922
+ }
1923
+ }
1924
+ },
1925
+ {
1926
+ "appName": "cloudreve",
1927
+ "repoURL": "https://github.com/cloudreve/Cloudreve",
1928
+ "doc": "☁️ Self-hosted file management system with muilt-cloud support.",
1929
+ "fileNamePattern": {
1930
+ "amd64": {
1931
+ "linux": "cloudreve_{version}_linux_amd64.tar.gz",
1932
+ "macos": "cloudreve_{version}_darwin_amd64.tar.gz",
1933
+ "windows": null
1934
+ },
1935
+ "arm64": {
1936
+ "linux": "cloudreve_{version}_linux_arm64.tar.gz",
1937
+ "macos": "cloudreve_{version}_darwin_arm64.tar.gz",
1938
+ "windows": null
1939
+ }
1940
+ }
1941
+ },
1942
+ {
1943
+ "appName": "restic",
1944
+ "repoURL": "https://github.com/restic/restic",
1945
+ "doc": "💾 backup program that is fast, efficient and secure. It supports the three major operating systems",
1946
+ "fileNamePattern": {
1947
+ "amd64": {
1948
+ "linux": "restic_{version}_linux_amd64.bz2",
1949
+ "macos": "restic_{version}_darwin_amd64.bz2",
1950
+ "windows": "restic_{version}_windows_amd64.zip"
1951
+ },
1952
+ "arm64": {
1953
+ "linux": "restic_{version}_linux_arm64.bz2",
1954
+ "macos": "restic_{version}_darwin_arm64.bz2",
1955
+ "windows": null
1956
+ }
1957
+ }
1958
+ },
1959
+ {
1960
+ "appName": "syncthing",
1961
+ "repoURL": "https://github.com/syncthing/syncthing",
1962
+ "doc": "🔄 Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers.",
1963
+ "fileNamePattern": {
1964
+ "amd64": {
1965
+ "linux": "syncthing-linux-amd64-v{version}.tar.gz",
1966
+ "macos": "syncthing-osx-amd64-v{version}.tar.gz",
1967
+ "windows": "syncthing-windows-amd64-v{version}.zip"
1968
+ },
1969
+ "arm64": {
1970
+ "linux": "syncthing-linux-arm64-v{version}.tar.gz",
1971
+ "macos": "syncthing-osx-arm64-v{version}.tar.gz",
1972
+ "windows": null
1973
+ }
1974
+ }
1975
+ },
1976
+ {
1977
+ "appName": "istio",
1978
+ "repoURL": "https://github.com/istio/istio",
1979
+ "doc": "🌐 Istio is an open source service mesh that layers transparently onto existing distributed applications",
1980
+ "fileNamePattern": {
1981
+ "amd64": {
1982
+ "linux": "istio-{version}-linux-amd64.tar.gz",
1983
+ "macos": "istio-{version}-osx-amd64.tar.gz",
1984
+ "windows": null
1985
+ },
1986
+ "arm64": {
1987
+ "linux": "istio-{version}-linux-arm64.tar.gz",
1988
+ "macos": "istio-{version}-osx-arm64.tar.gz",
1989
+ "windows": null
1990
+ }
1991
+ }
1992
+ },
1993
+ {
1994
+ "appName": "openpomodoro-cli",
1995
+ "repoURL": "https://github.com/open-pomodoro/openpomodoro-cli",
1996
+ "doc": "⏲️ Pomodoro timer for the command-line",
1997
+ "fileNamePattern": {
1998
+ "amd64": {
1999
+ "linux": "openpomodoro-cli_{version}_linux_x86_64.tar.gz",
2000
+ "macos": "openpomodoro-cli_{version}_darwin_x86_64.tar.gz",
2001
+ "windows": "openpomodoro-cli_{version}_windows_x86_64.zip"
2002
+ },
2003
+ "arm64": {
2004
+ "linux": "openpomodoro-cli_{version}_linux_aarch64.tar.gz",
2005
+ "macos": "openpomodoro-cli_{version}_darwin_aarch64.tar.gz",
2006
+ "windows": null
2007
+ }
2008
+ }
2009
+ },
2010
+ {
2011
+ "appName": "rust-analyzer",
2012
+ "repoURL": "https://github.com/rust-lang/rust-analyzer",
2013
+ "doc": "🦀 Rust Language Server (LSP)",
2014
+ "fileNamePattern": {
2015
+ "amd64": {
2016
+ "linux": "rust-analyzer-x86_64-unknown-linux-gnu.gz",
2017
+ "macos": "rust-analyzer-x86_64-apple-darwin.gz",
2018
+ "windows": "rust-analyzer-x86_64-pc-windows-msvc.zip"
2019
+ },
2020
+ "arm64": {
2021
+ "linux": "rust-analyzer-aarch64-unknown-linux-gnu.gz",
2022
+ "macos": "rust-analyzer-aarch64-apple-darwin.gz",
2023
+ "windows": "rust-analyzer-aarch64-pc-windows-msvc.zip"
2024
+ }
2025
+ }
2026
+ },
2027
+ {
2028
+ "appName": "kondo",
2029
+ "repoURL": "https://github.com/tbillington/kondo",
2030
+ "doc": "🧹 cleans projects from litter files.",
2031
+ "fileNamePattern": {
2032
+ "amd64": {
2033
+ "linux": "kondo-linux-x86_64.tar.gz",
2034
+ "macos": "kondo-macos-x86_64.tar.gz",
2035
+ "windows": "kondo-windows-x86_64.zip"
2036
+ },
2037
+ "arm64": {
2038
+ "linux": "kondo-linux-aarch64.tar.gz",
2039
+ "macos": "kondo-macos-aarch64.tar.gz",
2040
+ "windows": null
2041
+ }
2042
+ }
2043
+ },
2044
+ {
2045
+ "appName": "tokei",
2046
+ "repoURL": "CMD",
2047
+ "doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
2048
+ "fileNamePattern": {
2049
+ "amd64": {
2050
+ "linux": "cargo install tokei",
2051
+ "macos": "brew install tokei",
2052
+ "windows": "winget install XAMPPRocky.tokei"
2053
+ },
2054
+ "arm64": {
2055
+ "linux": "cargo install tokei",
2056
+ "macos": "brew install tokei",
2057
+ "windows": "winget install XAMPPRocky.tokei"
2058
+ }
2059
+ }
2060
+ },
2061
+ {
2062
+ "appName": "lazygit",
2063
+ "repoURL": "https://github.com/jesseduffield/lazygit",
2064
+ "doc": "🐙 A simple terminal UI for git commands",
2065
+ "fileNamePattern": {
2066
+ "amd64": {
2067
+ "linux": "lazygit_{version}_linux_x86_64.tar.gz",
2068
+ "macos": "lazygit_{version}_darwin_x86_64.tar.gz",
2069
+ "windows": "lazygit_{version}_windows_x86_64.zip"
2070
+ },
2071
+ "arm64": {
2072
+ "linux": "lazygit_{version}_linux_arm64.tar.gz",
2073
+ "macos": "lazygit_{version}_darwin_arm64.tar.gz",
2074
+ "windows": null
2075
+ }
2076
+ }
2077
+ },
2078
+ {
2079
+ "appName": "docker",
2080
+ "repoURL": "CMD",
2081
+ "doc": "🐳 Docker is an open platform for developing, shipping, and running applications.",
2082
+ "fileNamePattern": {
2083
+ "amd64": {
2084
+ "linux": "docker.sh",
2085
+ "macos": "docker.sh",
2086
+ "windows": null
2087
+ },
2088
+ "arm64": {
2089
+ "linux": "docker.sh",
2090
+ "macos": "docker.sh",
2091
+ "windows": null
2092
+ }
2093
+ }
2094
+ },
2095
+ {
2096
+ "appName": "lazydocker",
2097
+ "repoURL": "https://github.com/jesseduffield/lazydocker",
2098
+ "doc": "🐋 A simple terminal UI for both docker and docker-compose",
2099
+ "fileNamePattern": {
2100
+ "amd64": {
2101
+ "linux": "lazydocker_{version}_Linux_x86_64.tar.gz",
2102
+ "macos": "lazydocker_{version}_Darwin_x86_64.tar.gz",
2103
+ "windows": "lazydocker_{version}_Windows_x86_64.zip"
2104
+ },
2105
+ "arm64": {
2106
+ "linux": "lazydocker_{version}_Linux_arm64.tar.gz",
2107
+ "macos": "lazydocker_{version}_Darwin_arm64.tar.gz",
2108
+ "windows": "lazydocker_{version}_Windows_arm64.zip"
2109
+ }
2110
+ }
2111
+ },
2112
+ {
2113
+ "appName": "onefetch",
2114
+ "repoURL": "https://github.com/o2sh/onefetch",
2115
+ "doc": "📊 Git repository summary on your terminal",
2116
+ "fileNamePattern": {
2117
+ "amd64": {
2118
+ "linux": "onefetch-{version}-x86_64-unknown-linux-gnu.tar.gz",
2119
+ "macos": "onefetch-{version}-x86_64-apple-darwin.tar.gz",
2120
+ "windows": "onefetch-{version}-x86_64-pc-windows-msvc.zip"
2121
+ },
2122
+ "arm64": {
2123
+ "linux": "onefetch-{version}-aarch64-unknown-linux-gnu.tar.gz",
2124
+ "macos": "onefetch-{version}-aarch64-apple-darwin.tar.gz",
2125
+ "windows": null
2126
+ }
2127
+ }
2128
+ },
2129
+ {
2130
+ "appName": "gitcs",
2131
+ "repoURL": "https://github.com/knbr13/gitcs",
2132
+ "doc": "📈 analyze Git repositories and generate a visual contributions graph",
2133
+ "fileNamePattern": {
2134
+ "amd64": {
2135
+ "linux": null,
2136
+ "macos": null,
2137
+ "windows": null
2138
+ },
2139
+ "arm64": {
2140
+ "linux": null,
2141
+ "macos": null,
2142
+ "windows": null
2143
+ }
2144
+ }
2145
+ },
2146
+ {
2147
+ "appName": "just",
2148
+ "repoURL": "https://github.com/casey/just",
2149
+ "doc": "🎯 A command runner",
2150
+ "fileNamePattern": {
2151
+ "amd64": {
2152
+ "linux": "gitcs_linux_amd64",
2153
+ "macos": "gitcs_darwin_amd64",
2154
+ "windows": "gitcs_windows_amd64.exe"
2155
+ },
2156
+ "arm64": {
2157
+ "linux": null,
2158
+ "macos": null,
2159
+ "windows": null
2160
+ }
2161
+ }
2162
+ },
2163
+ {
2164
+ "appName": "navi",
2165
+ "repoURL": "https://github.com/denisidoro/navi",
2166
+ "doc": "📚 An interactive cheatsheet tool for the command-line",
2167
+ "fileNamePattern": {
2168
+ "amd64": {
2169
+ "linux": null,
2170
+ "macos": null,
2171
+ "windows": null
2172
+ },
2173
+ "arm64": {
2174
+ "linux": null,
2175
+ "macos": null,
2176
+ "windows": null
2177
+ }
2178
+ }
2179
+ },
2180
+ {
2181
+ "appName": "tealdeer",
2182
+ "repoURL": "https://github.com/dbrgn/tealdeer",
2183
+ "doc": "⚡ A very fast implementation of tldr in Rust",
2184
+ "fileNamePattern": {
2185
+ "amd64": {
2186
+ "linux": null,
2187
+ "macos": null,
2188
+ "windows": null
2189
+ },
2190
+ "arm64": {
2191
+ "linux": null,
2192
+ "macos": null,
2193
+ "windows": null
2194
+ }
2195
+ }
2196
+ },
2197
+ {
2198
+ "appName": "sniffnet",
2199
+ "repoURL": "https://github.com/GyulyVGC/sniffnet",
2200
+ "doc": "🔍 A simple network sniffer in Rust",
2201
+ "fileNamePattern": {
2202
+ "amd64": {
2203
+ "linux": null,
2204
+ "macos": null,
2205
+ "windows": null
2206
+ },
2207
+ "arm64": {
2208
+ "linux": null,
2209
+ "macos": null,
2210
+ "windows": null
2211
+ }
2212
+ }
2213
+ },
2214
+ {
2215
+ "appName": "hyperfine",
2216
+ "repoURL": "https://github.com/sharkdp/hyperfine",
2217
+ "doc": "⚡ A command-line benchmarking tool",
2218
+ "fileNamePattern": {
2219
+ "amd64": {
2220
+ "linux": null,
2221
+ "macos": null,
2222
+ "windows": null
2223
+ },
2224
+ "arm64": {
2225
+ "linux": null,
2226
+ "macos": null,
2227
+ "windows": null
2228
+ }
2229
+ }
2230
+ },
2231
+ {
2232
+ "appName": "ollama",
2233
+ "repoURL": "https://github.com/ollama/ollama",
2234
+ "doc": "🤖 Get up and running with large language models locally.",
2235
+ "fileNamePattern": {
2236
+ "amd64": {
2237
+ "linux": null,
2238
+ "macos": null,
2239
+ "windows": null
2240
+ },
2241
+ "arm64": {
2242
+ "linux": null,
2243
+ "macos": null,
2244
+ "windows": null
2245
+ }
2246
+ }
2247
+ },
2248
+ {
2249
+ "appName": "cointop",
2250
+ "repoURL": "https://github.com/cointop-sh/cointop",
2251
+ "doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
2252
+ "fileNamePattern": {
2253
+ "amd64": {
2254
+ "linux": null,
2255
+ "macos": null,
2256
+ "windows": null
2257
+ },
2258
+ "arm64": {
2259
+ "linux": null,
2260
+ "macos": null,
2261
+ "windows": null
2262
+ }
2263
+ }
2264
+ },
2265
+ {
2266
+ "appName": "vtm",
2267
+ "repoURL": "https://github.com/netxs-group/vtm",
2268
+ "doc": "🖥️ Text-based desktop environment inside your terminal",
2269
+ "fileNamePattern": {
2270
+ "amd64": {
2271
+ "linux": "vtm_linux_x86_64.tar.7z",
2272
+ "macos": "vtm_macos_any.tar.7z",
2273
+ "windows": "vtm_windows_x86_64.7z"
2274
+ },
2275
+ "arm64": {
2276
+ "linux": "vtm_linux_arm64.tar.7z",
2277
+ "macos": "vtm_macos_any.tar.7z",
2278
+ "windows": "vtm_windows_arm64.7z"
2279
+ }
2280
+ }
2281
+ },
2282
+ {
2283
+ "appName": "edex-ui",
2284
+ "repoURL": "https://github.com/GitSquared/edex-ui",
2285
+ "doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
2286
+ "fileNamePattern": {
2287
+ "amd64": {
2288
+ "linux": null,
2289
+ "macos": null,
2290
+ "windows": null
2291
+ },
2292
+ "arm64": {
2293
+ "linux": null,
2294
+ "macos": null,
2295
+ "windows": null
2296
+ }
2297
+ }
2298
+ },
2299
+ {
2300
+ "appName": "extraterm",
2301
+ "repoURL": "https://github.com/sedwards2009/extraterm/",
2302
+ "doc": "💻 Terminal emulator",
2303
+ "fileNamePattern": {
2304
+ "amd64": {
2305
+ "linux": null,
2306
+ "macos": null,
2307
+ "windows": null
2308
+ },
2309
+ "arm64": {
2310
+ "linux": null,
2311
+ "macos": null,
2312
+ "windows": null
2313
+ }
2314
+ }
2315
+ },
2316
+ {
2317
+ "appName": "nu",
2318
+ "repoURL": "https://github.com/nushell/nushell",
2319
+ "doc": "🐚 Nushell, a cross-platform shell in Rust.",
2320
+ "fileNamePattern": {
2321
+ "amd64": {
2322
+ "linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
2323
+ "macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
2324
+ "windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
2325
+ },
2326
+ "arm64": {
2327
+ "linux": null,
2328
+ "macos": null,
2329
+ "windows": null
2330
+ }
2331
+ }
2332
+ },
2333
+ {
2334
+ "appName": "geckodriver",
2335
+ "repoURL": "https://github.com/mozilla/geckodriver",
2336
+ "doc": "🦊 WebDriver for Firefox.",
2337
+ "fileNamePattern": {
2338
+ "amd64": {
2339
+ "linux": null,
2340
+ "macos": null,
2341
+ "windows": null
2342
+ },
2343
+ "arm64": {
2344
+ "linux": null,
2345
+ "macos": null,
2346
+ "windows": null
2347
+ }
2348
+ }
2349
+ },
2350
+ {
2351
+ "appName": "ngrok",
2352
+ "repoURL": "CMD",
2353
+ "doc": "Secure introspectable tunnels to localhost",
2354
+ "fileNamePattern": {
2355
+ "amd64": {
2356
+ "linux": "ngrok.sh",
2357
+ "windows": "winget install ngrok -s msstore",
2358
+ "macos": "brew install ngrok"
2359
+ },
2360
+ "arm64": {
2361
+ "linux": "ngrok.sh",
2362
+ "windows": "winget install ngrok -s msstore",
2363
+ "macos": "brew install ngrok"
2364
+ }
2365
+ }
2366
+
2367
+ },
2368
+ {
2369
+ "appName": "code",
2370
+ "repoURL": "CMD",
2371
+ "doc": "Visual Studio Code",
2372
+ "fileNamePattern": {
2373
+ "amd64": {
2374
+ "linux": "code.py",
2375
+ "windows": "code.py",
2376
+ "macos": "code.py"
2377
+ },
2378
+ "arm64": {
2379
+ "linux": "code.py",
2380
+ "windows": "code.py",
2381
+ "macos": "code.py"
2382
+ }
2383
+ }
2384
+ },
2385
+ {
2386
+ "appName": "aider",
2387
+ "repoURL": "CMD",
2388
+ "doc": "Aider Chat",
2389
+ "fileNamePattern": {
2390
+ "amd64": {
2391
+ "linux": "uv tool install --force --python python3.13 aider-chat@latest",
2392
+ "windows": "uv tool install --force --python python3.13 aider-chat@latest",
2393
+ "macos": "uv tool install --force --python python3.13 aider-chat@latest"
2394
+ },
2395
+ "arm64": {
2396
+ "linux": "uv tool install --force --python python3.13 aider-chat@latest",
2397
+ "windows": "uv tool install --force --python python3.13 aider-chat@latest",
2398
+ "macos": "uv tool install --force --python python3.13 aider-chat@latest"
2399
+ }
2400
+ }
2401
+ },
2402
+ {
2403
+ "appName": "aichat",
2404
+ "repoURL": "https://github.com/sigoden/aichat",
2405
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2406
+ "fileNamePattern": {
2407
+ "amd64": {
2408
+ "linux": "aichat-{version}-x86_64-unknown-linux-musl.tar.gz",
2409
+ "macos": "aichat-{version}-x86_64-apple-darwin.tar.gz",
2410
+ "windows": "aichat-{version}-x86_64-pc-windows-msvc.zip"
2411
+ },
2412
+ "arm64": {
2413
+ "linux": "aichat-{version}-aarch64-unknown-linux-musl.tar.gz",
2414
+ "macos": "aichat-{version}-aarch64-apple-darwin.tar.gz",
2415
+ "windows": "aichat-{version}-aarch64-pc-windows-msvc.zip"
2416
+ }
2417
+ }
2418
+ },
2419
+ {
2420
+ "appName": "qwen-code",
2421
+ "repoURL": "CMD",
2422
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2423
+ "fileNamePattern": {
2424
+ "amd64": {
2425
+ "linux": "npm install -g @qwen-code/qwen-code@latest",
2426
+ "windows": "npm install -g @qwen-code/qwen-code@latest",
2427
+ "macos": "npm install -g @qwen-code/qwen-code@latest"
2428
+ },
2429
+ "arm64": {
2430
+ "linux": "npm install -g @qwen-code/qwen-code@latest",
2431
+ "windows": "npm install -g @qwen-code/qwen-code@latest",
2432
+ "macos": "npm install -g @qwen-code/qwen-code@latest"
2433
+ }
2434
+ }
2435
+ },
2436
+ {
2437
+ "appName": "cline",
2438
+ "repoURL": "CMD",
2439
+ "doc": "Cline agent extension in the terminal",
2440
+ "fileNamePattern": {
2441
+ "amd64": {
2442
+ "linux": "npm install -g cline",
2443
+ "windows": "npm install -g cline",
2444
+ "macos": "npm install -g cline"
2445
+ },
2446
+ "arm64": {
2447
+ "linux": "npm install -g cline",
2448
+ "windows": "npm install -g cline",
2449
+ "macos": "npm install -g cline"
2450
+ }
2451
+ }
2452
+ },
2453
+ {
2454
+ "appName": "kilocode",
2455
+ "repoURL": "CMD",
2456
+ "doc": "Kilocode agent extension in the terminal",
2457
+ "fileNamePattern": {
2458
+ "amd64": {
2459
+ "linux": "npm install -g @kilocode/cli",
2460
+ "windows": "npm install -g @kilocode/cli",
2461
+ "macos": "npm install -g @kilocode/cli"
2462
+ },
2463
+ "arm64": {
2464
+ "linux": "npm install -g @kilocode/cli",
2465
+ "windows": "npm install -g @kilocode/cli",
2466
+ "macos": "npm install -g @kilocode/cli"
2467
+ }
2468
+ }
2469
+ },
2470
+ {
2471
+ "appName": "copilot",
2472
+ "repoURL": "CMD",
2473
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2474
+ "fileNamePattern": {
2475
+ "amd64": {
2476
+ "linux": "npm install -g @github/copilot",
2477
+ "windows": "npm install -g @github/copilot",
2478
+ "macos": "npm install -g @github/copilot"
2479
+ },
2480
+ "arm64": {
2481
+ "linux": "npm install -g @github/copilot",
2482
+ "windows": "npm install -g @github/copilot",
2483
+ "macos": "npm install -g @github/copilot"
2484
+ }
2485
+ }
2486
+ },
2487
+ {
2488
+ "appName": "gemini",
2489
+ "repoURL": "CMD",
2490
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2491
+ "fileNamePattern": {
2492
+ "amd64": {
2493
+ "linux": "npm install -g @google/gemini-cli",
2494
+ "windows": "npm install -g @google/gemini-cli",
2495
+ "macos": "npm install -g @google/gemini-cli"
2496
+ },
2497
+ "arm64": {
2498
+ "linux": "npm install -g @google/gemini-cli",
2499
+ "windows": "npm install -g @google/gemini-cli",
2500
+ "macos": "npm install -g @google/gemini-cli"
2501
+ }
2502
+ }
2503
+ },
2504
+ {
2505
+ "appName": "crush",
2506
+ "repoURL": "CMD",
2507
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2508
+ "fileNamePattern": {
2509
+ "amd64": {
2510
+ "linux": "npm install -g @charmland/crush",
2511
+ "windows": "npm install -g @charmland/crush",
2512
+ "macos": "npm install -g @charmland/crush"
2513
+ },
2514
+ "arm64": {
2515
+ "linux": "npm install -g @charmland/crush",
2516
+ "windows": "npm install -g @charmland/crush",
2517
+ "macos": "npm install -g @charmland/crush"
2518
+ }
2519
+ }
2520
+ },
2521
+ {
2522
+ "appName": "opencode",
2523
+ "repoURL": "CMD",
2524
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2525
+ "fileNamePattern": {
2526
+ "amd64": {
2527
+ "linux": "npm install -g opencode-ai@latest",
2528
+ "windows": "npm install -g opencode-ai@latest",
2529
+ "macos": "npm install -g opencode-ai@latest"
2530
+ },
2531
+ "arm64": {
2532
+ "linux": "npm install -g opencode-ai@latest",
2533
+ "windows": "npm install -g opencode-ai@latest",
2534
+ "macos": "npm install -g opencode-ai@latest"
2535
+ }
2536
+ }
2537
+ },
2538
+ {
2539
+ "appName": "auggie",
2540
+ "repoURL": "CMD",
2541
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2542
+ "fileNamePattern": {
2543
+ "amd64": {
2544
+ "linux": "npm install -g @augmentcode/auggie",
2545
+ "windows": "npm install -g @augmentcode/auggie",
2546
+ "macos": "npm install -g @augmentcode/auggie"
2547
+ },
2548
+ "arm64": {
2549
+ "linux": "npm install -g @augmentcode/auggie",
2550
+ "windows": "npm install -g @augmentcode/auggie",
2551
+ "macos": "npm install -g @augmentcode/auggie"
2552
+ }
2553
+ }
2554
+ },
2555
+ {
2556
+ "appName": "warp",
2557
+ "repoURL": "CMD",
2558
+ "doc": "Modern terminal with AI-powered features",
2559
+ "fileNamePattern": {
2560
+ "amd64": {
2561
+ "linux": "https://app.warp.dev/get_warp?package=deb",
2562
+ "windows": "winget install Warp.Warp",
2563
+ "macos": "brew install --cask warp"
2564
+ },
2565
+ "arm64": {
2566
+ "linux": "https://app.warp.dev/get_warp?package=deb_arm64",
2567
+ "windows": "winget install Warp.Warp",
2568
+ "macos": "brew install --cask warp"
2569
+ }
2570
+ }
2571
+ },
2572
+ {
2573
+ "appName": "warp-terminal-cli",
2574
+ "repoURL": "CMD",
2575
+ "doc": "Modern terminal cli with AI-powered features",
2576
+ "fileNamePattern": {
2577
+ "amd64": {
2578
+ "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
2579
+ "windows": null,
2580
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2581
+ },
2582
+ "arm64": {
2583
+ "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
2584
+ "windows": null,
2585
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2586
+ }
2587
+ }
2588
+ },
2589
+ {
2590
+ "appName": "q",
2591
+ "repoURL": "CMD",
2592
+ "doc": "Q desktop application",
2593
+ "fileNamePattern": {
2594
+ "amd64": {
2595
+ "linux": "q.sh",
2596
+ "windows": null,
2597
+ "macos": null
2598
+ },
2599
+ "arm64": {
2600
+ "linux": null,
2601
+ "windows": null,
2602
+ "macos": null
2603
+ }
2604
+ }
2605
+ },
2606
+ {
2607
+ "appName": "cursor-cli",
2608
+ "repoURL": "CMD",
2609
+ "doc": "Cursor CLI installer",
2610
+ "fileNamePattern": {
2611
+ "amd64": {
2612
+ "linux": "curl https://cursor.com/install -fsS | bash",
2613
+ "windows": null,
2614
+ "macos": null
2615
+ },
2616
+ "arm64": {
2617
+ "linux": null,
2618
+ "windows": null,
2619
+ "macos": null
2620
+ }
2621
+ }
2622
+ },
2623
+ {
2624
+ "appName": "droid",
2625
+ "repoURL": "CMD",
2626
+ "doc": "Factory AI CLI installer",
2627
+ "fileNamePattern": {
2628
+ "amd64": {
2629
+ "linux": "curl -fsSL https://app.factory.ai/cli | sh",
2630
+ "windows": null,
2631
+ "macos": null
2632
+ },
2633
+ "arm64": {
2634
+ "linux": null,
2635
+ "windows": null,
2636
+ "macos": null
2637
+ }
2638
+ }
2639
+ },
2640
+ {
2641
+ "appName": "Alacritty",
2642
+ "repoURL": "CMD",
2643
+ "doc": "Terminal Console",
2644
+ "fileNamePattern": {
2645
+ "amd64": {
2646
+ "linux": "alacritty.py",
2647
+ "windows": "alacritty.py",
2648
+ "macos": "alacritty.py"
2649
+ },
2650
+ "arm64": {
2651
+ "linux": "alacritty.py",
2652
+ "windows": "alacritty.py",
2653
+ "macos": "alacritty.py"
2654
+ }
2655
+ }
2656
+ },
2657
+ {
2658
+ "appName": "brave",
2659
+ "repoURL": "CMD",
2660
+ "doc": "Privacy-focused web browser with built-in ad blocking",
2661
+ "fileNamePattern": {
2662
+ "amd64": {
2663
+ "linux": "brave.py",
2664
+ "windows": "brave.py",
2665
+ "macos": "brave.py"
2666
+ },
2667
+ "arm64": {
2668
+ "linux": "brave.py",
2669
+ "windows": "brave.py",
2670
+ "macos": "brave.py"
2671
+ }
2672
+ }
2673
+ },
2674
+ {
2675
+ "appName": "bypass-paywalls-chrome",
2676
+ "repoURL": "https://github.com/iamadamdev/bypass-paywalls-chrome",
2677
+ "doc": "Plugin for chrome to bypass paywalls",
2678
+ "fileNamePattern": {
2679
+ "amd64": {
2680
+ "linux": "bypass_paywall.py",
2681
+ "windows": "bypass_paywall.py",
2682
+ "macos": "bypass_paywall.py"
2683
+ },
2684
+ "arm64": {
2685
+ "linux": "bypass_paywall.py",
2686
+ "windows": "bypass_paywall.py",
2687
+ "macos": "bypass_paywall.py"
2688
+ }
2689
+ }
2690
+ },
2691
+ {
2692
+ "appName": "Cursor",
2693
+ "repoURL": "CMD",
2694
+ "doc": "Cursor",
2695
+ "fileNamePattern": {
2696
+ "amd64": {
2697
+ "linux": "cursor.py",
2698
+ "windows": "cursor.py",
2699
+ "macos": "cursor.py"
2700
+ },
2701
+ "arm64": {
2702
+ "linux": "cursor.py",
2703
+ "windows": "cursor.py",
2704
+ "macos": "cursor.py"
2705
+ }
2706
+ }
2707
+ },
2708
+ {
2709
+ "appName": "espanso",
2710
+ "repoURL": "CMD",
2711
+ "doc": "A text expander.",
2712
+ "fileNamePattern": {
2713
+ "amd64": {
2714
+ "linux": "espanso.py",
2715
+ "windows": "espanso.py",
2716
+ "macos": "espanso.py"
2717
+ },
2718
+ "arm64": {
2719
+ "linux": "espanso.py",
2720
+ "windows": "espanso.py",
2721
+ "macos": "espanso.py"
2722
+ }
2723
+ }
2724
+ },
2725
+ {
2726
+ "appName": "gorilla",
2727
+ "repoURL": "https://github.com/ShishirPatil/gorilla",
2728
+ "doc": "natural language to API",
2729
+ "fileNamePattern": {
2730
+ "amd64": {
2731
+ "linux": "goes.py",
2732
+ "windows": "goes.py",
2733
+ "macos": "goes.py"
2734
+ },
2735
+ "arm64": {
2736
+ "linux": "goes.py",
2737
+ "windows": "goes.py",
2738
+ "macos": "goes.py"
2739
+ }
2740
+ }
2741
+ },
2742
+ {
2743
+ "appName": "lvim",
2744
+ "repoURL": "CMD",
2745
+ "doc": "Terminal text editor based on neovim.",
2746
+ "fileNamePattern": {
2747
+ "amd64": {
2748
+ "linux": "lvim.py",
2749
+ "windows": "lvim.py",
2750
+ "macos": "lvim.py"
2751
+ },
2752
+ "arm64": {
2753
+ "linux": "lvim.py",
2754
+ "windows": "lvim.py",
2755
+ "macos": "lvim.py"
2756
+ }
2757
+ }
2758
+ },
2759
+ {
2760
+ "appName": "nerdfont",
2761
+ "repoURL": "CMD",
2762
+ "doc": "lightweight containerization",
2763
+ "fileNamePattern": {
2764
+ "amd64": {
2765
+ "linux": "nerdfont.py",
2766
+ "windows": "nerdfont.py",
2767
+ "macos": "nerdfont.py"
2768
+ },
2769
+ "arm64": {
2770
+ "linux": "nerdfont.py",
2771
+ "windows": "nerdfont.py",
2772
+ "macos": "nerdfont.py"
2773
+ }
2774
+ }
2775
+ },
2776
+ {
2777
+ "appName": "redis",
2778
+ "repoURL": "CMD",
2779
+ "doc": "submillisecond fast key-value db",
2780
+ "fileNamePattern": {
2781
+ "amd64": {
2782
+ "linux": "redis.py",
2783
+ "windows": "redis.py",
2784
+ "macos": "redis.py"
2785
+ },
2786
+ "arm64": {
2787
+ "linux": "redis.py",
2788
+ "windows": "redis.py",
2789
+ "macos": "redis.py"
2790
+ }
2791
+ }
2792
+ },
2793
+ {
2794
+ "appName": "wezterm",
2795
+ "repoURL": "CMD",
2796
+ "doc": "Modern, GPU-accelerated terminal emulator",
2797
+ "fileNamePattern": {
2798
+ "amd64": {
2799
+ "linux": "wezterm.py",
2800
+ "windows": "wezterm.py",
2801
+ "macos": "wezterm.py"
2802
+ },
2803
+ "arm64": {
2804
+ "linux": "wezterm.py",
2805
+ "windows": "wezterm.py",
2806
+ "macos": "wezterm.py"
2807
+ }
2808
+ }
2809
+ },
2810
+ {
2811
+ "appName": "winget",
2812
+ "repoURL": "CMD",
2813
+ "doc": "winget installer",
2814
+ "fileNamePattern": {
2815
+ "amd64": {
2816
+ "linux": "winget.py",
2817
+ "windows": "winget.py",
2818
+ "macos": "winget.py"
2819
+ },
2820
+ "arm64": {
2821
+ "linux": "winget.py",
2822
+ "windows": "winget.py",
2823
+ "macos": "winget.py"
2824
+ }
2825
+ }
2826
+ },
2827
+ {
2828
+ "appName": "gh",
2829
+ "repoURL": "CMD",
2830
+ "doc": "GitHub CLI",
2831
+ "fileNamePattern": {
2832
+ "amd64": {
2833
+ "windows": "gh.py",
2834
+ "linux": "gh.py",
2835
+ "macos": "gh.py"
2836
+ },
2837
+ "arm64": {
2838
+ "windows": "gh.py",
2839
+ "linux": "gh.py",
2840
+ "macos": "gh.py"
2841
+ }
2842
+ }
2843
+ },
2844
+ {
2845
+ "appName": "hx",
2846
+ "repoURL": "CMD",
2847
+ "doc": "Helix is a post-modern modal text editor.",
2848
+ "fileNamePattern": {
2849
+ "amd64": {
2850
+ "linux": "hx.py",
2851
+ "windows": "hx.py",
2852
+ "macos": "hx.py"
2853
+ },
2854
+ "arm64": {
2855
+ "linux": "hx.py",
2856
+ "windows": "hx.py",
2857
+ "macos": "hx.py"
2858
+ }
2859
+ }
2860
+ },
2861
+ {
2862
+ "appName": "file",
2863
+ "repoURL": "CMD",
2864
+ "doc": "🔍 File type identification utility",
2865
+ "fileNamePattern": {
2866
+ "amd64": {
2867
+ "linux": null,
2868
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2869
+ "macos": null
2870
+ },
2871
+ "arm64": {
2872
+ "linux": null,
2873
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2874
+ "macos": null
2875
+ }
2876
+ }
2877
+ },
2878
+ {
2879
+ "appName": "oh-my-posh",
2880
+ "repoURL": "CMD",
2881
+ "doc": "✨ Prompt theme engine for any shell",
2882
+ "fileNamePattern": {
2883
+ "amd64": {
2884
+ "linux": null,
2885
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --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 \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2891
+ "macos": null
2892
+ }
2893
+ }
2894
+ },
2895
+ {
2896
+ "appName": "vsredistrib",
2897
+ "repoURL": "CMD",
2898
+ "doc": "📦 Microsoft Visual C++ Redistributable",
2899
+ "fileNamePattern": {
2900
+ "amd64": {
2901
+ "linux": null,
2902
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --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 \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2908
+ "macos": null
2909
+ }
2910
+ }
2911
+ },
2912
+ {
2913
+ "appName": "vsbuildtools",
2914
+ "repoURL": "CMD",
2915
+ "doc": "🔨 Visual Studio Build Tools",
2916
+ "fileNamePattern": {
2917
+ "amd64": {
2918
+ "linux": null,
2919
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --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 \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2925
+ "macos": null
2926
+ }
2927
+ }
2928
+ },
2929
+ {
2930
+ "appName": "codeblocks",
2931
+ "repoURL": "CMD",
2932
+ "doc": "💻 IDE for C/C++",
2933
+ "fileNamePattern": {
2934
+ "amd64": {
2935
+ "linux": null,
2936
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --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 \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2942
+ "macos": null
2943
+ }
2944
+ }
2945
+ },
2946
+ {
2947
+ "appName": "make",
2948
+ "repoURL": "CMD",
2949
+ "doc": "🔧 GNU Make utility for building projects",
2950
+ "fileNamePattern": {
2951
+ "amd64": {
2952
+ "linux": null,
2953
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2954
+ "macos": null
2955
+ },
2956
+ "arm64": {
2957
+ "linux": null,
2958
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2959
+ "macos": null
2960
+ }
2961
+ }
2962
+ },
2963
+ {
2964
+ "appName": "gnupg",
2965
+ "repoURL": "CMD",
2966
+ "doc": "🔐 GNU Privacy Guard encryption tool",
2967
+ "fileNamePattern": {
2968
+ "amd64": {
2969
+ "linux": null,
2970
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --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 \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2976
+ "macos": null
2977
+ }
2978
+ }
2979
+ },
2980
+ {
2981
+ "appName": "graphviz",
2982
+ "repoURL": "CMD",
2983
+ "doc": "📊 Graph visualization software",
2984
+ "fileNamePattern": {
2985
+ "amd64": {
2986
+ "linux": "sudo nala install graphviz -y",
2987
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2988
+ "macos": "brew install graphviz"
2989
+ },
2990
+ "arm64": {
2991
+ "linux": "sudo nala install graphviz -y",
2992
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2993
+ "macos": "brew install graphviz"
2994
+ }
2995
+ }
2996
+ },
2997
+ {
2998
+ "appName": "winfsp",
2999
+ "repoURL": "CMD",
3000
+ "doc": "💾 Windows File System Proxy",
3001
+ "fileNamePattern": {
3002
+ "amd64": {
3003
+ "linux": null,
3004
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --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 \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3010
+ "macos": null
3011
+ }
3012
+ }
3013
+ },
3014
+ {
3015
+ "appName": "sshfs",
3016
+ "repoURL": "CMD",
3017
+ "doc": "🌐 Mount remote filesystems over SSH",
3018
+ "fileNamePattern": {
3019
+ "amd64": {
3020
+ "linux": "sudo nala install sshfs",
3021
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3022
+ "macos": "brew install sshfs"
3023
+ },
3024
+ "arm64": {
3025
+ "linux": "sudo nala install sshfs",
3026
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3027
+ "macos": "brew install sshfs"
3028
+ }
3029
+ }
3030
+ },
3031
+ {
3032
+ "appName": "xming",
3033
+ "repoURL": "CMD",
3034
+ "doc": "🖥️ X11 server for Windows",
3035
+ "fileNamePattern": {
3036
+ "amd64": {
3037
+ "linux": null,
3038
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --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 \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3044
+ "macos": null
3045
+ }
3046
+ }
3047
+ },
3048
+ {
3049
+ "appName": "nodejs",
3050
+ "repoURL": "CMD",
3051
+ "doc": "🟢 JavaScript runtime environment",
3052
+ "fileNamePattern": {
3053
+ "amd64": {
3054
+ "linux": null,
3055
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --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 \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3061
+ "macos": null
3062
+ }
3063
+ }
3064
+ },
3065
+ {
3066
+ "appName": "rustup",
3067
+ "repoURL": "CMD",
3068
+ "doc": "🦀 Rust toolchain installer",
3069
+ "fileNamePattern": {
3070
+ "amd64": {
3071
+ "linux": null,
3072
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --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 \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3078
+ "macos": null
3079
+ }
3080
+ }
3081
+ },
3082
+ {
3083
+ "appName": "mouse-without-borders",
3084
+ "repoURL": "CMD",
3085
+ "doc": "🖱️ Control multiple computers with one mouse",
3086
+ "fileNamePattern": {
3087
+ "amd64": {
3088
+ "linux": null,
3089
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --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 \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3095
+ "macos": null
3096
+ }
3097
+ }
3098
+ },
3099
+ {
3100
+ "appName": "chrome",
3101
+ "repoURL": "CMD",
3102
+ "doc": "🌐 Google Chrome web browser",
3103
+ "fileNamePattern": {
3104
+ "amd64": {
3105
+ "linux": null,
3106
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --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 \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3112
+ "macos": null
3113
+ }
3114
+ }
3115
+ },
3116
+ {
3117
+ "appName": "chrome-remote-desktop",
3118
+ "repoURL": "CMD",
3119
+ "doc": "🖥️ Chrome Remote Desktop Host",
3120
+ "fileNamePattern": {
3121
+ "amd64": {
3122
+ "linux": null,
3123
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --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 \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3129
+ "macos": null
3130
+ }
3131
+ }
3132
+ },
3133
+ {
3134
+ "appName": "zoom",
3135
+ "repoURL": "CMD",
3136
+ "doc": "📹 Video conferencing software",
3137
+ "fileNamePattern": {
3138
+ "amd64": {
3139
+ "linux": null,
3140
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --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 \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3146
+ "macos": null
3147
+ }
3148
+ }
3149
+ },
3150
+ {
3151
+ "appName": "7zip",
3152
+ "repoURL": "CMD",
3153
+ "doc": "📦 File archiver with high compression ratio",
3154
+ "fileNamePattern": {
3155
+ "amd64": {
3156
+ "linux": null,
3157
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --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 \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3163
+ "macos": null
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "appName": "firefox",
3169
+ "repoURL": "CMD",
3170
+ "doc": "🦊 Mozilla Firefox web browser",
3171
+ "fileNamePattern": {
3172
+ "amd64": {
3173
+ "linux": null,
3174
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --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 \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3180
+ "macos": null
3181
+ }
3182
+ }
3183
+ },
3184
+ {
3185
+ "appName": "thunderbird",
3186
+ "repoURL": "CMD",
3187
+ "doc": "📧 Mozilla Thunderbird email client",
3188
+ "fileNamePattern": {
3189
+ "amd64": {
3190
+ "linux": null,
3191
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --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 \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3197
+ "macos": null
3198
+ }
3199
+ }
3200
+ },
3201
+ {
3202
+ "appName": "streamlabs-obs",
3203
+ "repoURL": "CMD",
3204
+ "doc": "🎥 Streamlabs OBS streaming software",
3205
+ "fileNamePattern": {
3206
+ "amd64": {
3207
+ "linux": null,
3208
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --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 \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3214
+ "macos": null
3215
+ }
3216
+ }
3217
+ },
3218
+ {
3219
+ "appName": "obs-studio",
3220
+ "repoURL": "CMD",
3221
+ "doc": "🎬 OBS Studio streaming and recording software",
3222
+ "fileNamePattern": {
3223
+ "amd64": {
3224
+ "linux": null,
3225
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --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 \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3231
+ "macos": null
3232
+ }
3233
+ }
3234
+ },
3235
+ {
3236
+ "appName": "miktex",
3237
+ "repoURL": "CMD",
3238
+ "doc": "📝 LaTeX distribution for Windows",
3239
+ "fileNamePattern": {
3240
+ "amd64": {
3241
+ "linux": null,
3242
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --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 \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3248
+ "macos": null
3249
+ }
3250
+ }
3251
+ },
3252
+ {
3253
+ "appName": "texmaker",
3254
+ "repoURL": "CMD",
3255
+ "doc": "📄 LaTeX editor",
3256
+ "fileNamePattern": {
3257
+ "amd64": {
3258
+ "linux": null,
3259
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --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 \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3265
+ "macos": null
3266
+ }
3267
+ }
3268
+ },
3269
+ {
3270
+ "appName": "lapce",
3271
+ "repoURL": "CMD",
3272
+ "doc": "⚡ Lightning-fast code editor written in Rust",
3273
+ "fileNamePattern": {
3274
+ "amd64": {
3275
+ "linux": null,
3276
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --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 \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3282
+ "macos": null
3283
+ }
3284
+ }
3285
+ },
3286
+ {
3287
+ "appName": "tesseract",
3288
+ "repoURL": "CMD",
3289
+ "doc": "🔤 OCR engine for text recognition",
3290
+ "fileNamePattern": {
3291
+ "amd64": {
3292
+ "linux": null,
3293
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --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 \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3299
+ "macos": null
3300
+ }
3301
+ }
3302
+ },
3303
+ {
3304
+ "appName": "perl",
3305
+ "repoURL": "CMD",
3306
+ "doc": "🍓 Strawberry Perl programming language",
3307
+ "fileNamePattern": {
3308
+ "amd64": {
3309
+ "linux": null,
3310
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --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 \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3316
+ "macos": null
3317
+ }
3318
+ }
3319
+ },
3320
+ {
3321
+ "appName": "db-browser-sqlite",
3322
+ "repoURL": "CMD",
3323
+ "doc": "🗄️ DB Browser for SQLite database tool",
3324
+ "fileNamePattern": {
3325
+ "amd64": {
3326
+ "linux": null,
3327
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --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 \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3333
+ "macos": null
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ "appName": "ssms",
3339
+ "repoURL": "CMD",
3340
+ "doc": "🗄️ SQL Server Management Studio",
3341
+ "fileNamePattern": {
3342
+ "amd64": {
3343
+ "linux": null,
3344
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --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 \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3350
+ "macos": null
3351
+ }
3352
+ }
3353
+ },
3354
+ {
3355
+ "appName": "adobe-reader",
3356
+ "repoURL": "CMD",
3357
+ "doc": "📄 Adobe Acrobat Reader DC",
3358
+ "fileNamePattern": {
3359
+ "amd64": {
3360
+ "linux": null,
3361
+ "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",
3362
+ "macos": null
3363
+ },
3364
+ "arm64": {
3365
+ "linux": null,
3366
+ "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",
3367
+ "macos": null
3368
+ }
3369
+ }
3370
+ },
3371
+ {
3372
+ "appName": "julia",
3373
+ "repoURL": "CMD",
3374
+ "doc": "📊 Julia programming language",
3375
+ "fileNamePattern": {
3376
+ "amd64": {
3377
+ "linux": null,
3378
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --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 \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3384
+ "macos": null
3385
+ }
3386
+ }
3387
+ },
3388
+ {
3389
+ "appName": "chafa",
3390
+ "repoURL": "CMD",
3391
+ "doc": "🖼️ Terminal graphics and image viewer",
3392
+ "fileNamePattern": {
3393
+ "amd64": {
3394
+ "linux": "sudo nala install chafa -y",
3395
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3396
+ "macos": "brew install chafa"
3397
+ },
3398
+ "arm64": {
3399
+ "linux": "sudo nala install chafa -y",
3400
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3401
+ "macos": "brew install chafa"
3402
+ }
3403
+ }
3404
+ },
3405
+ {
3406
+ "appName": "awscli",
3407
+ "repoURL": "CMD",
3408
+ "doc": "☁️ AWS Command Line Interface",
3409
+ "fileNamePattern": {
3410
+ "amd64": {
3411
+ "linux": null,
3412
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --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 \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3418
+ "macos": null
3419
+ }
3420
+ }
3421
+ },
3422
+ {
3423
+ "appName": "notepadplusplus",
3424
+ "repoURL": "CMD",
3425
+ "doc": "📝 Notepad++ text editor",
3426
+ "fileNamePattern": {
3427
+ "amd64": {
3428
+ "linux": null,
3429
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --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 \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3435
+ "macos": null
3436
+ }
3437
+ }
3438
+ }
3439
+ ]
3440
+ }