machineconfig 3.99__py3-none-any.whl → 7.66__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

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