machineconfig 5.15__py3-none-any.whl → 7.98__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (472) hide show
  1. machineconfig/__init__.py +0 -28
  2. machineconfig/cluster/remote/cloud_manager.py +1 -1
  3. machineconfig/cluster/remote/distribute.py +0 -1
  4. machineconfig/cluster/remote/file_manager.py +0 -2
  5. machineconfig/cluster/remote/script_execution.py +0 -1
  6. machineconfig/cluster/sessions_managers/{utils → helpers}/enhanced_command_runner.py +4 -6
  7. machineconfig/cluster/sessions_managers/utils/load_balancer.py +1 -1
  8. machineconfig/cluster/sessions_managers/utils/maker.py +69 -0
  9. machineconfig/cluster/sessions_managers/wt_local.py +114 -289
  10. machineconfig/cluster/sessions_managers/wt_local_manager.py +70 -210
  11. machineconfig/cluster/sessions_managers/wt_remote.py +51 -43
  12. machineconfig/cluster/sessions_managers/wt_remote_manager.py +52 -198
  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 +25 -170
  21. machineconfig/cluster/sessions_managers/zellij_remote.py +40 -41
  22. machineconfig/cluster/sessions_managers/zellij_remote_manager.py +16 -12
  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 -3
  32. machineconfig/jobs/installer/custom/boxes.py +61 -0
  33. machineconfig/jobs/installer/custom/hx.py +76 -19
  34. machineconfig/jobs/installer/custom/yazi.py +119 -0
  35. machineconfig/jobs/installer/custom_dev/alacritty.py +4 -4
  36. machineconfig/jobs/installer/custom_dev/brave.py +5 -9
  37. machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
  38. machineconfig/jobs/installer/custom_dev/code.py +4 -1
  39. machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +30 -0
  40. machineconfig/jobs/installer/custom_dev/nerdfont.py +1 -1
  41. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +33 -28
  42. machineconfig/jobs/installer/custom_dev/sysabc.py +139 -0
  43. machineconfig/jobs/installer/custom_dev/wezterm.py +2 -19
  44. machineconfig/jobs/installer/custom_dev/winget.py +10 -14
  45. machineconfig/jobs/installer/installer_data.json +1487 -229
  46. machineconfig/jobs/installer/linux_scripts/brave.sh +4 -14
  47. machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +5 -17
  48. machineconfig/jobs/installer/linux_scripts/docker.sh +5 -17
  49. machineconfig/jobs/installer/linux_scripts/docker_start.sh +6 -14
  50. machineconfig/jobs/installer/linux_scripts/edge.sh +3 -11
  51. machineconfig/jobs/{linux/msc → installer/linux_scripts}/lid.sh +2 -8
  52. machineconfig/jobs/installer/linux_scripts/nerdfont.sh +5 -17
  53. machineconfig/jobs/{linux/msc → installer/linux_scripts}/network.sh +2 -8
  54. machineconfig/jobs/installer/linux_scripts/q.sh +10 -6
  55. machineconfig/jobs/installer/linux_scripts/redis.sh +6 -17
  56. machineconfig/jobs/installer/linux_scripts/vscode.sh +5 -17
  57. machineconfig/jobs/installer/linux_scripts/wezterm.sh +4 -12
  58. machineconfig/jobs/installer/package_groups.py +106 -177
  59. machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
  60. machineconfig/logger.py +0 -1
  61. machineconfig/profile/backup.toml +49 -0
  62. machineconfig/profile/bash_shell_profiles.md +11 -0
  63. machineconfig/profile/create_helper.py +62 -0
  64. machineconfig/profile/create_links.py +288 -0
  65. machineconfig/profile/create_links_export.py +100 -0
  66. machineconfig/profile/create_shell_profile.py +147 -0
  67. machineconfig/profile/mapper.toml +263 -0
  68. machineconfig/scripts/__init__.py +0 -4
  69. machineconfig/scripts/linux/{share_cloud.sh → other/share_cloud.sh} +14 -25
  70. machineconfig/scripts/linux/wrap_mcfg +46 -0
  71. machineconfig/scripts/nu/wrap_mcfg.nu +69 -0
  72. machineconfig/scripts/python/agents.py +123 -117
  73. machineconfig/scripts/python/ai/initai.py +3 -28
  74. machineconfig/scripts/python/ai/scripts/command_runner.ps1 +33 -0
  75. machineconfig/scripts/python/ai/scripts/command_runner.sh +9 -0
  76. machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +17 -18
  77. machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +17 -18
  78. machineconfig/scripts/python/ai/solutions/_shared.py +9 -1
  79. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Thinking-Beast-Mode.chatmode.md → agents/Thinking-Beast-Mode.agent.md} +0 -1
  80. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md → agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md} +0 -1
  81. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/deepResearch.chatmode.md → agents/deepResearch.agent.md} +2 -2
  82. machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +5 -5
  83. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +5 -1
  84. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md +20 -0
  85. machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
  86. machineconfig/scripts/python/ai/solutions/generic.py +28 -5
  87. machineconfig/scripts/python/ai/utils/generate_files.py +348 -0
  88. machineconfig/scripts/python/ai/utils/vscode_tasks.py +37 -0
  89. machineconfig/scripts/python/cloud.py +29 -0
  90. machineconfig/scripts/python/croshell.py +137 -113
  91. machineconfig/scripts/python/devops.py +61 -101
  92. machineconfig/scripts/python/devops_navigator.py +6 -0
  93. machineconfig/scripts/python/env_manager/__init__.py +1 -0
  94. machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
  95. machineconfig/scripts/python/env_manager/path_manager_backend.py +47 -0
  96. machineconfig/scripts/python/env_manager/path_manager_tui.py +228 -0
  97. machineconfig/scripts/python/fire_jobs.py +110 -150
  98. machineconfig/scripts/python/ftpx.py +51 -24
  99. machineconfig/scripts/python/helpers/ast_search.py +74 -0
  100. machineconfig/scripts/python/helpers/qr_code.py +166 -0
  101. machineconfig/scripts/python/helpers/repo_rag.py +325 -0
  102. machineconfig/scripts/python/helpers/run_py_script.py +79 -0
  103. machineconfig/scripts/python/helpers/symantic_search.py +25 -0
  104. machineconfig/scripts/python/helpers/tmp_py_scripts/a.py +26 -0
  105. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json +14 -0
  106. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py +39 -0
  107. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py +22 -0
  108. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py +55 -0
  109. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +30 -0
  110. machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py +126 -0
  111. machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py +41 -0
  112. machineconfig/scripts/python/helpers_agents/templates/prompt.txt +10 -0
  113. machineconfig/scripts/python/helpers_agents/templates/template.ps1 +14 -0
  114. machineconfig/scripts/python/helpers_agents/templates/template.sh +32 -0
  115. machineconfig/scripts/python/{cloud_copy.py → helpers_cloud/cloud_copy.py} +30 -23
  116. machineconfig/scripts/python/{cloud_mount.py → helpers_cloud/cloud_mount.py} +29 -35
  117. machineconfig/scripts/python/{cloud_sync.py → helpers_cloud/cloud_sync.py} +12 -18
  118. machineconfig/scripts/python/{helpers → helpers_cloud}/helpers2.py +1 -1
  119. machineconfig/scripts/python/helpers_croshell/crosh.py +39 -0
  120. machineconfig/scripts/python/{start_slidev.py → helpers_croshell/start_slidev.py} +8 -9
  121. machineconfig/scripts/python/helpers_devops/cli_config.py +105 -0
  122. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +89 -0
  123. machineconfig/scripts/python/helpers_devops/cli_data.py +25 -0
  124. machineconfig/scripts/python/helpers_devops/cli_nw.py +214 -0
  125. machineconfig/scripts/python/helpers_devops/cli_repos.py +215 -0
  126. machineconfig/scripts/python/helpers_devops/cli_self.py +172 -0
  127. machineconfig/scripts/python/helpers_devops/cli_share_file.py +137 -0
  128. machineconfig/scripts/python/helpers_devops/cli_share_server.py +142 -0
  129. machineconfig/scripts/python/{share_terminal.py → helpers_devops/cli_share_terminal.py} +45 -35
  130. machineconfig/scripts/python/helpers_devops/cli_utils.py +96 -0
  131. machineconfig/scripts/python/{devops_backup_retrieve.py → helpers_devops/devops_backup_retrieve.py} +7 -10
  132. machineconfig/scripts/python/helpers_devops/devops_status.py +499 -0
  133. machineconfig/scripts/python/{devops_update_repos.py → helpers_devops/devops_update_repos.py} +68 -49
  134. machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1 +81 -0
  135. machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +3 -0
  136. machineconfig/scripts/python/{choose_wezterm_theme.py → helpers_devops/themes/choose_wezterm_theme.py} +3 -3
  137. machineconfig/scripts/python/helpers_fire_command/__init__.py +0 -0
  138. machineconfig/scripts/python/helpers_fire_command/f.py +0 -0
  139. machineconfig/scripts/python/{helpers/helpers4.py → helpers_fire_command/file_wrangler.py} +56 -20
  140. machineconfig/scripts/python/{fire_jobs_args_helper.py → helpers_fire_command/fire_jobs_args_helper.py} +5 -1
  141. machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +121 -0
  142. machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py +0 -0
  143. machineconfig/scripts/python/helpers_msearch/__init__.py +5 -0
  144. machineconfig/scripts/{linux → python/helpers_msearch/scripts_linux}/fzfg +3 -3
  145. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +59 -0
  146. machineconfig/scripts/python/helpers_navigator/__init__.py +20 -0
  147. machineconfig/scripts/python/helpers_navigator/command_builder.py +111 -0
  148. machineconfig/scripts/python/helpers_navigator/command_detail.py +44 -0
  149. machineconfig/scripts/python/helpers_navigator/command_tree.py +620 -0
  150. machineconfig/scripts/python/helpers_navigator/data_models.py +28 -0
  151. machineconfig/scripts/python/helpers_navigator/main_app.py +272 -0
  152. machineconfig/scripts/python/helpers_navigator/search_bar.py +15 -0
  153. machineconfig/scripts/python/helpers_network/__init__.py +0 -0
  154. machineconfig/scripts/python/helpers_network/address.py +132 -0
  155. machineconfig/scripts/python/{devops_add_identity.py → helpers_network/devops_add_identity.py} +0 -2
  156. machineconfig/scripts/python/helpers_network/devops_add_ssh_key.py +153 -0
  157. machineconfig/scripts/{linux → python/helpers_network}/mount_nfs +0 -1
  158. machineconfig/scripts/python/{mount_nfs.py → helpers_network/mount_nfs.py} +3 -3
  159. machineconfig/scripts/{linux → python/helpers_network}/mount_nw_drive +1 -2
  160. machineconfig/scripts/python/{mount_ssh.py → helpers_network/mount_ssh.py} +3 -3
  161. machineconfig/scripts/python/{onetimeshare.py → helpers_network/onetimeshare.py} +0 -1
  162. machineconfig/scripts/python/helpers_network/ssh_debug_linux.py +391 -0
  163. machineconfig/scripts/python/helpers_network/ssh_debug_windows.py +338 -0
  164. machineconfig/scripts/python/{wifi_conn.py → helpers_network/wifi_conn.py} +1 -53
  165. machineconfig/scripts/python/{wsl_windows_transfer.py → helpers_network/wsl_windows_transfer.py} +5 -4
  166. machineconfig/scripts/python/helpers_repos/action.py +209 -0
  167. machineconfig/scripts/python/helpers_repos/action_helper.py +150 -0
  168. machineconfig/scripts/python/{repos_helper_clone.py → helpers_repos/clone.py} +2 -3
  169. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +218 -0
  170. machineconfig/scripts/python/{repos_helper.py → helpers_repos/entrypoint.py} +9 -17
  171. machineconfig/scripts/python/helpers_repos/grource.py +340 -0
  172. machineconfig/scripts/python/{repos_helper_record.py → helpers_repos/record.py} +4 -3
  173. machineconfig/scripts/python/helpers_repos/repo_analyzer_1.py +160 -0
  174. machineconfig/scripts/python/{count_lines.py → helpers_repos/repo_analyzer_2.py} +113 -192
  175. machineconfig/scripts/python/helpers_repos/sync.py +66 -0
  176. machineconfig/scripts/python/{repos_helper_update.py → helpers_repos/update.py} +3 -3
  177. machineconfig/scripts/python/helpers_sessions/__init__.py +0 -0
  178. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +65 -0
  179. machineconfig/scripts/python/helpers_utils/download.py +150 -0
  180. machineconfig/scripts/python/helpers_utils/path.py +185 -0
  181. machineconfig/scripts/python/interactive.py +64 -84
  182. machineconfig/scripts/python/mcfg_entry.py +58 -0
  183. machineconfig/scripts/python/msearch.py +71 -0
  184. machineconfig/scripts/python/sessions.py +119 -45
  185. machineconfig/scripts/python/terminal.py +133 -0
  186. machineconfig/scripts/python/utils.py +64 -0
  187. machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1 +92 -0
  188. machineconfig/scripts/windows/{mount_nfs.ps1 → mounts/mount_nfs.ps1} +1 -3
  189. machineconfig/scripts/windows/{mount_ssh.ps1 → mounts/mount_ssh.ps1} +1 -1
  190. machineconfig/scripts/windows/{share_smb.ps1 → mounts/share_smb.ps1} +0 -6
  191. machineconfig/scripts/windows/wrap_mcfg.ps1 +63 -0
  192. machineconfig/settings/broot/br.sh +0 -4
  193. machineconfig/settings/broot/conf.toml +1 -1
  194. machineconfig/settings/helix/config.toml +16 -0
  195. machineconfig/settings/helix/languages.toml +13 -4
  196. machineconfig/settings/helix/yazi-picker.sh +12 -0
  197. machineconfig/settings/lf/linux/exe/lfcd.sh +1 -0
  198. machineconfig/settings/lf/linux/exe/previewer.sh +9 -3
  199. machineconfig/settings/lf/linux/lfrc +10 -12
  200. machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
  201. machineconfig/settings/lf/windows/lfrc +18 -38
  202. machineconfig/settings/lf/windows/mkfile.ps1 +1 -1
  203. machineconfig/settings/linters/.ruff.toml +1 -1
  204. machineconfig/settings/lvim/windows/archive/config_additional.lua +0 -6
  205. machineconfig/settings/marimo/marimo.toml +80 -0
  206. machineconfig/settings/marimo/snippets/globalize.py +34 -0
  207. machineconfig/settings/pistol/pistol.conf +1 -1
  208. machineconfig/settings/shells/bash/init.sh +82 -31
  209. machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +1 -1
  210. machineconfig/settings/shells/nushell/config.nu +2 -35
  211. machineconfig/settings/shells/nushell/env.nu +45 -6
  212. machineconfig/settings/shells/nushell/init.nu +314 -0
  213. machineconfig/settings/shells/pwsh/init.ps1 +61 -43
  214. machineconfig/settings/shells/starship/starship.toml +16 -0
  215. machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
  216. machineconfig/settings/shells/wt/settings.json +32 -17
  217. machineconfig/settings/shells/zsh/init.sh +89 -0
  218. machineconfig/settings/svim/linux/init.toml +0 -4
  219. machineconfig/settings/svim/windows/init.toml +0 -3
  220. machineconfig/settings/television/cable_unix/alias.toml +8 -0
  221. machineconfig/settings/television/cable_unix/aws-buckets.toml +14 -0
  222. machineconfig/settings/television/cable_unix/aws-instances.toml +13 -0
  223. machineconfig/settings/television/cable_unix/bash-history.toml +8 -0
  224. machineconfig/settings/television/cable_unix/channels.toml +19 -0
  225. machineconfig/settings/television/cable_unix/dirs.toml +13 -0
  226. machineconfig/settings/television/cable_unix/distrobox-list.toml +42 -0
  227. machineconfig/settings/television/cable_unix/docker-images.toml +13 -0
  228. machineconfig/settings/television/cable_unix/dotfiles.toml +11 -0
  229. machineconfig/settings/television/cable_unix/env.toml +17 -0
  230. machineconfig/settings/television/cable_unix/files.toml +11 -0
  231. machineconfig/settings/television/cable_unix/fish-history.toml +8 -0
  232. machineconfig/settings/television/cable_unix/git-branch.toml +11 -0
  233. machineconfig/settings/television/cable_unix/git-diff.toml +10 -0
  234. machineconfig/settings/television/cable_unix/git-log.toml +12 -0
  235. machineconfig/settings/television/cable_unix/git-reflog.toml +12 -0
  236. machineconfig/settings/television/cable_unix/git-repos.toml +16 -0
  237. machineconfig/settings/television/cable_unix/guix.toml +20 -0
  238. machineconfig/settings/television/cable_unix/just-recipes.toml +18 -0
  239. machineconfig/settings/television/cable_unix/k8s-deployments.toml +36 -0
  240. machineconfig/settings/television/cable_unix/k8s-pods.toml +50 -0
  241. machineconfig/settings/television/cable_unix/k8s-services.toml +36 -0
  242. machineconfig/settings/television/cable_unix/man-pages.toml +24 -0
  243. machineconfig/settings/television/cable_unix/nu-history.toml +7 -0
  244. machineconfig/settings/television/cable_unix/procs.toml +20 -0
  245. machineconfig/settings/television/cable_unix/text.toml +17 -0
  246. machineconfig/settings/television/cable_unix/tldr.toml +18 -0
  247. machineconfig/settings/television/cable_unix/zsh-history.toml +9 -0
  248. machineconfig/settings/television/cable_windows/alias.toml +7 -0
  249. machineconfig/settings/television/cable_windows/dirs.toml +13 -0
  250. machineconfig/settings/television/cable_windows/docker-images.toml +13 -0
  251. machineconfig/settings/television/cable_windows/dotfiles.toml +11 -0
  252. machineconfig/settings/television/cable_windows/env.toml +17 -0
  253. machineconfig/settings/television/cable_windows/files.toml +14 -0
  254. machineconfig/settings/television/cable_windows/git-branch.toml +11 -0
  255. machineconfig/settings/television/cable_windows/git-diff.toml +10 -0
  256. machineconfig/settings/television/cable_windows/git-log.toml +11 -0
  257. machineconfig/settings/television/cable_windows/git-reflog.toml +11 -0
  258. machineconfig/settings/television/cable_windows/git-repos.toml +15 -0
  259. machineconfig/settings/television/cable_windows/nu-history.toml +7 -0
  260. machineconfig/settings/television/cable_windows/pwsh-history.toml +6 -0
  261. machineconfig/settings/television/cable_windows/text.toml +17 -0
  262. machineconfig/settings/yazi/init.lua +61 -0
  263. machineconfig/settings/yazi/keymap_linux.toml +94 -0
  264. machineconfig/settings/yazi/keymap_windows.toml +78 -0
  265. machineconfig/settings/yazi/shell/yazi_cd.ps1 +33 -0
  266. machineconfig/settings/yazi/shell/yazi_cd.sh +8 -0
  267. machineconfig/settings/yazi/theme.toml +4 -0
  268. machineconfig/settings/yazi/yazi_linux.toml +84 -0
  269. machineconfig/settings/yazi/yazi_windows.toml +58 -0
  270. machineconfig/setup_linux/__init__.py +11 -0
  271. machineconfig/setup_linux/apps_desktop.sh +89 -0
  272. machineconfig/setup_linux/apps_gui.sh +64 -0
  273. machineconfig/setup_linux/ssh/openssh_all.sh +25 -0
  274. machineconfig/setup_linux/ssh/openssh_wsl.sh +38 -0
  275. machineconfig/setup_linux/uv.sh +15 -0
  276. machineconfig/setup_linux/web_shortcuts/interactive.sh +26 -6
  277. machineconfig/setup_linux/web_shortcuts/live_from_github.sh +31 -0
  278. machineconfig/setup_mac/__init__.py +16 -0
  279. machineconfig/setup_mac/apps_gui.sh +248 -0
  280. machineconfig/setup_mac/ssh/openssh_setup.sh +114 -0
  281. machineconfig/setup_mac/uv.sh +36 -0
  282. machineconfig/setup_windows/__init__.py +11 -0
  283. machineconfig/setup_windows/others/power_options.ps1 +7 -0
  284. machineconfig/setup_windows/ssh/add-sshkey.ps1 +29 -0
  285. machineconfig/setup_windows/ssh/add_identity.ps1 +11 -0
  286. machineconfig/setup_windows/ssh/openssh-server.ps1 +37 -0
  287. machineconfig/setup_windows/uv.ps1 +17 -0
  288. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +27 -10
  289. machineconfig/setup_windows/web_shortcuts/live_from_github.ps1 +30 -0
  290. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +17 -0
  291. machineconfig/utils/accessories.py +7 -5
  292. machineconfig/utils/cloud/onedrive/README.md +139 -0
  293. machineconfig/utils/code.py +155 -105
  294. machineconfig/utils/files/art/fat_croco.txt +10 -0
  295. machineconfig/utils/files/art/halfwit_croco.txt +9 -0
  296. machineconfig/utils/files/art/happy_croco.txt +22 -0
  297. machineconfig/utils/files/art/water_croco.txt +11 -0
  298. machineconfig/utils/files/ascii_art.py +1 -1
  299. machineconfig/utils/files/dbms.py +257 -0
  300. machineconfig/utils/files/headers.py +11 -14
  301. machineconfig/utils/files/ouch/__init__.py +0 -0
  302. machineconfig/utils/files/ouch/decompress.py +45 -0
  303. machineconfig/utils/files/read.py +10 -18
  304. machineconfig/utils/installer_utils/github_release_bulk.py +156 -119
  305. machineconfig/utils/installer_utils/install_from_url.py +183 -0
  306. machineconfig/utils/installer_utils/installer_class.py +64 -181
  307. machineconfig/utils/installer_utils/installer_cli.py +175 -0
  308. machineconfig/utils/installer_utils/installer_helper.py +129 -0
  309. machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +66 -97
  310. machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +49 -82
  311. machineconfig/utils/io.py +77 -23
  312. machineconfig/utils/links.py +254 -162
  313. machineconfig/utils/meta.py +256 -0
  314. machineconfig/utils/notifications.py +1 -1
  315. machineconfig/utils/options.py +46 -18
  316. machineconfig/utils/options_tv.py +119 -0
  317. machineconfig/utils/path_extended.py +48 -101
  318. machineconfig/utils/path_helper.py +76 -23
  319. machineconfig/utils/procs.py +50 -70
  320. machineconfig/utils/scheduler.py +88 -124
  321. machineconfig/utils/scheduling.py +0 -3
  322. machineconfig/utils/schemas/fire_agents/fire_agents_input.py +1 -1
  323. machineconfig/utils/schemas/layouts/layout_types.py +1 -1
  324. machineconfig/utils/source_of_truth.py +3 -6
  325. machineconfig/utils/ssh.py +263 -274
  326. machineconfig/utils/ssh_utils/abc.py +5 -0
  327. machineconfig/utils/ssh_utils/copy_from_here.py +111 -0
  328. machineconfig/utils/ssh_utils/copy_to_here.py +302 -0
  329. machineconfig/utils/ssh_utils/utils.py +142 -0
  330. machineconfig/utils/ssh_utils/wsl.py +210 -0
  331. machineconfig/utils/terminal.py +3 -113
  332. machineconfig/utils/tst.py +20 -0
  333. machineconfig/utils/upgrade_packages.py +114 -28
  334. machineconfig/utils/ve.py +12 -4
  335. machineconfig-7.98.dist-info/METADATA +132 -0
  336. machineconfig-7.98.dist-info/RECORD +504 -0
  337. machineconfig-7.98.dist-info/entry_points.txt +13 -0
  338. machineconfig/cluster/sessions_managers/ffile.py +0 -4
  339. machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -49
  340. machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -85
  341. machineconfig/jobs/linux/msc/cli_agents.sh +0 -16
  342. machineconfig/jobs/python/python_ve_symlink.py +0 -37
  343. machineconfig/jobs/python/vscode/api.py +0 -57
  344. machineconfig/jobs/python/vscode/sync_code.py +0 -73
  345. machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +0 -14
  346. machineconfig/jobs/windows/start_terminal.ps1 +0 -6
  347. machineconfig/jobs/windows/startup_file.cmd +0 -2
  348. machineconfig/profile/create.py +0 -303
  349. machineconfig/profile/shell.py +0 -176
  350. machineconfig/scripts/cloud/init.sh +0 -119
  351. machineconfig/scripts/linux/agents +0 -2
  352. machineconfig/scripts/linux/choose_wezterm_theme +0 -3
  353. machineconfig/scripts/linux/cloud_copy +0 -2
  354. machineconfig/scripts/linux/cloud_mount +0 -2
  355. machineconfig/scripts/linux/cloud_repo_sync +0 -2
  356. machineconfig/scripts/linux/cloud_sync +0 -2
  357. machineconfig/scripts/linux/croshell +0 -3
  358. machineconfig/scripts/linux/devops +0 -2
  359. machineconfig/scripts/linux/fire +0 -2
  360. machineconfig/scripts/linux/ftpx +0 -2
  361. machineconfig/scripts/linux/fzf2g +0 -21
  362. machineconfig/scripts/linux/fzfag +0 -17
  363. machineconfig/scripts/linux/fzffg +0 -25
  364. machineconfig/scripts/linux/fzfrga +0 -21
  365. machineconfig/scripts/linux/gh_models +0 -2
  366. machineconfig/scripts/linux/initai +0 -2
  367. machineconfig/scripts/linux/kill_process +0 -2
  368. machineconfig/scripts/linux/scheduler +0 -2
  369. machineconfig/scripts/linux/sessions +0 -2
  370. machineconfig/scripts/linux/share_smb +0 -1
  371. machineconfig/scripts/linux/skrg +0 -4
  372. machineconfig/scripts/linux/start_slidev +0 -2
  373. machineconfig/scripts/linux/start_terminals +0 -3
  374. machineconfig/scripts/linux/warp-cli.sh +0 -122
  375. machineconfig/scripts/linux/wifi_conn +0 -2
  376. machineconfig/scripts/linux/z_ls +0 -104
  377. machineconfig/scripts/python/ai/generate_files.py +0 -83
  378. machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md +0 -5
  379. machineconfig/scripts/python/cloud_repo_sync.py +0 -190
  380. machineconfig/scripts/python/count_lines_frontend.py +0 -16
  381. machineconfig/scripts/python/devops_add_ssh_key.py +0 -120
  382. machineconfig/scripts/python/dotfile.py +0 -78
  383. machineconfig/scripts/python/fire_agents_help_launch.py +0 -120
  384. machineconfig/scripts/python/fire_agents_helper_types.py +0 -12
  385. machineconfig/scripts/python/fire_jobs_route_helper.py +0 -65
  386. machineconfig/scripts/python/get_zellij_cmd.py +0 -15
  387. machineconfig/scripts/python/gh_models.py +0 -104
  388. machineconfig/scripts/python/helpers/repo_sync_helpers.py +0 -116
  389. machineconfig/scripts/python/repos.py +0 -132
  390. machineconfig/scripts/python/repos_helper_action.py +0 -378
  391. machineconfig/scripts/python/snapshot.py +0 -25
  392. machineconfig/scripts/python/start_terminals.py +0 -121
  393. machineconfig/scripts/python/t4.py +0 -17
  394. machineconfig/scripts/windows/agents.ps1 +0 -1
  395. machineconfig/scripts/windows/choose_wezterm_theme.ps1 +0 -1
  396. machineconfig/scripts/windows/cloud_copy.ps1 +0 -1
  397. machineconfig/scripts/windows/cloud_mount.ps1 +0 -1
  398. machineconfig/scripts/windows/cloud_repo_sync.ps1 +0 -1
  399. machineconfig/scripts/windows/cloud_sync.ps1 +0 -1
  400. machineconfig/scripts/windows/croshell.ps1 +0 -1
  401. machineconfig/scripts/windows/devops.ps1 +0 -1
  402. machineconfig/scripts/windows/dotfile.ps1 +0 -1
  403. machineconfig/scripts/windows/fire.ps1 +0 -1
  404. machineconfig/scripts/windows/ftpx.ps1 +0 -1
  405. machineconfig/scripts/windows/fzfb.ps1 +0 -3
  406. machineconfig/scripts/windows/fzfg.ps1 +0 -2
  407. machineconfig/scripts/windows/fzfrga.bat +0 -20
  408. machineconfig/scripts/windows/gpt.ps1 +0 -1
  409. machineconfig/scripts/windows/grep.ps1 +0 -2
  410. machineconfig/scripts/windows/initai.ps1 +0 -1
  411. machineconfig/scripts/windows/kill_process.ps1 +0 -1
  412. machineconfig/scripts/windows/nano.ps1 +0 -3
  413. machineconfig/scripts/windows/pomodoro.ps1 +0 -1
  414. machineconfig/scripts/windows/reload_path.ps1 +0 -3
  415. machineconfig/scripts/windows/scheduler.ps1 +0 -1
  416. machineconfig/scripts/windows/sessions.ps1 +0 -1
  417. machineconfig/scripts/windows/snapshot.ps1 +0 -1
  418. machineconfig/scripts/windows/start_slidev.ps1 +0 -1
  419. machineconfig/scripts/windows/start_terminals.ps1 +0 -1
  420. machineconfig/scripts/windows/wifi_conn.ps1 +0 -2
  421. machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1 +0 -46
  422. machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1 +0 -76
  423. machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
  424. machineconfig/settings/lf/windows/fzf_edit.ps1 +0 -6
  425. machineconfig/settings/lf/windows/tst.ps1 +0 -1
  426. machineconfig/settings/yazi/yazi.toml +0 -4
  427. machineconfig/setup_linux/nix/cli_installation.sh +0 -157
  428. machineconfig/setup_linux/others/openssh-server_add_pub_key.sh +0 -57
  429. machineconfig/setup_linux/web_shortcuts/croshell.sh +0 -11
  430. machineconfig/setup_linux/web_shortcuts/ssh.sh +0 -52
  431. machineconfig/setup_windows/web_shortcuts/all.ps1 +0 -18
  432. machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +0 -36
  433. machineconfig/setup_windows/web_shortcuts/croshell.ps1 +0 -16
  434. machineconfig/setup_windows/web_shortcuts/ssh.ps1 +0 -11
  435. machineconfig/utils/ai/generate_file_checklist.py +0 -68
  436. machineconfig/utils/installer_utils/installer.py +0 -189
  437. machineconfig-5.15.dist-info/METADATA +0 -188
  438. machineconfig-5.15.dist-info/RECORD +0 -415
  439. machineconfig-5.15.dist-info/entry_points.txt +0 -18
  440. machineconfig/cluster/sessions_managers/{utils → helpers}/load_balancer_helper.py +0 -0
  441. machineconfig/scripts/linux/{share_nfs → other/share_nfs} +0 -0
  442. machineconfig/scripts/linux/{start_docker → other/start_docker} +0 -0
  443. machineconfig/scripts/linux/{switch_ip → other/switch_ip} +0 -0
  444. machineconfig/{jobs/python → scripts/python/ai/utils}/__init__.py +0 -0
  445. machineconfig/scripts/python/{helpers → helpers_agents}/__init__.py +0 -0
  446. machineconfig/{jobs/windows/msc/cli_agents.bat → scripts/python/helpers_agents/agentic_frameworks/__init__.py} +0 -0
  447. machineconfig/scripts/python/{fire_agents_help_search.py → helpers_agents/fire_agents_help_search.py} +0 -0
  448. machineconfig/scripts/python/{fire_agents_load_balancer.py → helpers_agents/fire_agents_load_balancer.py} +0 -0
  449. machineconfig/{jobs/windows/msc/cli_agents.ps1 → scripts/python/helpers_cloud/__init__.py} +0 -0
  450. machineconfig/scripts/python/{helpers → helpers_cloud}/cloud_helpers.py +1 -1
  451. /machineconfig/scripts/python/{helpers → helpers_cloud}/helpers5.py +0 -0
  452. /machineconfig/scripts/python/{fire_jobs_streamlit_helper.py → helpers_croshell/__init__.py} +0 -0
  453. /machineconfig/scripts/python/{pomodoro.py → helpers_croshell/pomodoro.py} +0 -0
  454. /machineconfig/scripts/python/{scheduler.py → helpers_croshell/scheduler.py} +0 -0
  455. /machineconfig/scripts/python/{viewer.py → helpers_croshell/viewer.py} +0 -0
  456. /machineconfig/scripts/python/{viewer_template.py → helpers_croshell/viewer_template.py} +0 -0
  457. /machineconfig/scripts/{windows/share_nfs.ps1 → python/helpers_devops/__init__.py} +0 -0
  458. /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_devops/themes/__init__.py} +0 -0
  459. /machineconfig/{settings/yazi/keymap.toml → scripts/python/helpers_devops/themes/choose_starship_theme.ps1} +0 -0
  460. /machineconfig/scripts/python/{cloud_manager.py → helpers_fire_command/cloud_manager.py} +0 -0
  461. /machineconfig/scripts/{linux → python/helpers_network}/mount_drive +0 -0
  462. /machineconfig/scripts/python/{mount_nw_drive.py → helpers_network/mount_nw_drive.py} +0 -0
  463. /machineconfig/scripts/{linux → python/helpers_network}/mount_smb +0 -0
  464. /machineconfig/scripts/windows/{mount_nw.ps1 → mounts/mount_nw.ps1} +0 -0
  465. /machineconfig/scripts/windows/{mount_smb.ps1 → mounts/mount_smb.ps1} +0 -0
  466. /machineconfig/scripts/windows/{share_cloud.cmd → mounts/share_cloud.cmd} +0 -0
  467. /machineconfig/scripts/windows/{unlock_bitlocker.ps1 → mounts/unlock_bitlocker.ps1} +0 -0
  468. /machineconfig/setup_linux/{web_shortcuts → others}/android.sh +0 -0
  469. /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
  470. /machineconfig/{jobs/windows/archive → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
  471. {machineconfig-5.15.dist-info → machineconfig-7.98.dist-info}/WHEEL +0 -0
  472. {machineconfig-5.15.dist-info → machineconfig-7.98.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,91 @@
1
1
  {
2
2
  "version": "1",
3
3
  "installers": [
4
+ {
5
+ "appName": "sysabc",
6
+ "repoURL": "CMD",
7
+ "doc": "ABC programs (package managers and other system essential tools)",
8
+ "fileNamePattern": {
9
+ "amd64": {
10
+ "linux": "sysabc.py",
11
+ "windows": "sysabc.py",
12
+ "macos": "sysabc.py"
13
+ },
14
+ "arm64": {
15
+ "linux": "sysabc.py",
16
+ "windows": "sysabc.py",
17
+ "macos": "sysabc.py"
18
+ }
19
+ }
20
+ },
21
+ {
22
+ "appName": "scrcpy",
23
+ "repoURL": "https://github.com/Genymobile/scrcpy",
24
+ "doc": "This application mirrors Android devices",
25
+ "fileNamePattern": {
26
+ "amd64": {
27
+ "linux": "scrcpy-linux-x86_64-v3.3.3.tar.gz",
28
+ "windows": "scrcpy-win64-v3.3.3.zip",
29
+ "macos": "scrcpy-macos-x86_64-v3.3.3.tar.gz"
30
+ },
31
+ "arm64": {
32
+ "linux": null,
33
+ "windows": null,
34
+ "macos": "scrcpy-macos-aarch64-v3.3.3.tar.gz"
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "appName": "fx",
40
+ "repoURL": "https://github.com/antonmedv/fx",
41
+ "doc": "🧙‍♂️ Command-line JSON viewer",
42
+ "fileNamePattern": {
43
+ "amd64": {
44
+ "linux": "fx_linux_amd64",
45
+ "windows": "fx_windows_amd64.exe",
46
+ "macos": "fx_darwin_amd64"
47
+ },
48
+ "arm64": {
49
+ "linux": "fx_linux_arm64",
50
+ "windows": "fx_windows_arm64.exe",
51
+ "macos": "fx_darwin_arm64"
52
+ }
53
+ }
54
+ },
55
+ {
56
+ "appName": "git",
57
+ "repoURL": "CMD",
58
+ "doc": "🧙‍♂️ Distributed version control system",
59
+ "fileNamePattern": {
60
+ "amd64": {
61
+ "linux": "sudo nala install git",
62
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
63
+ "macos": "brew install git"
64
+ },
65
+ "arm64": {
66
+ "linux": "sudo nala install git",
67
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
68
+ "macos": "brew install git"
69
+ }
70
+ }
71
+ },
72
+ {
73
+ "appName": "jq",
74
+ "repoURL": "https://github.com/jqlang/jq",
75
+ "doc": "🧙‍♂️ Command-line JSON processor",
76
+ "fileNamePattern": {
77
+ "amd64": {
78
+ "linux": "jq-linux-amd64",
79
+ "windows": "jq-windows-amd64.exe",
80
+ "macos": "jq-macos-amd64"
81
+ },
82
+ "arm64": {
83
+ "linux": "jq-linux-arm64",
84
+ "windows": null,
85
+ "macos": "jq-macos-arm64"
86
+ }
87
+ }
88
+ },
4
89
  {
5
90
  "appName": "speedtest",
6
91
  "repoURL": "CMD",
@@ -120,6 +205,40 @@
120
205
  }
121
206
  }
122
207
  },
208
+ {
209
+ "appName": "mprocs",
210
+ "repoURL": "https://github.com/pvolok/mprocs",
211
+ "doc": "🖥️ Windows/Linux/macOS poorman's zellij",
212
+ "fileNamePattern": {
213
+ "amd64": {
214
+ "linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
215
+ "macos": "mprocs-{version}-darwin-x86_64.tar.gz",
216
+ "windows": "mprocs-{version}-windows-x86_64.zip"
217
+ },
218
+ "arm64": {
219
+ "linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
220
+ "macos": "mprocs-{version}-darwin-aarch64.tar.gz",
221
+ "windows": "mprocs-{version}-windows-x86_64.zip"
222
+ }
223
+ }
224
+ },
225
+ {
226
+ "appName": "process-compose",
227
+ "repoURL": "https://github.com/F1bonacc1/process-compose",
228
+ "doc": "Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized applications.",
229
+ "fileNamePattern": {
230
+ "amd64": {
231
+ "linux": "process-compose_linux_amd64.tar.gz",
232
+ "macos": "process-compose_darwin_amd64.tar.gz",
233
+ "windows": "process-compose_windows_amd64.zip"
234
+ },
235
+ "arm64": {
236
+ "linux": "process-compose_linux_arm.tar.gz",
237
+ "macos": "process-compose_darwin_arm64.tar.gz",
238
+ "windows": "process-compose_windows_arm64.zip"
239
+ }
240
+ }
241
+ },
123
242
  {
124
243
  "appName": "zellij",
125
244
  "repoURL": "https://github.com/zellij-org/zellij",
@@ -139,11 +258,11 @@
139
258
  },
140
259
  {
141
260
  "appName": "boxes",
142
- "repoURL": "https://github.com/ascii-boxes/boxes",
261
+ "repoURL": "CMD",
143
262
  "doc": "📦 ASCI draws boxes around text.",
144
263
  "fileNamePattern": {
145
264
  "amd64": {
146
- "windows": "boxes-{version}-intel-win32.zip",
265
+ "windows": "boxes.py",
147
266
  "linux": null,
148
267
  "macos": null
149
268
  },
@@ -171,6 +290,40 @@
171
290
  }
172
291
  }
173
292
  },
293
+ {
294
+ "appName": "croc",
295
+ "repoURL": "https://github.com/schollz/croc",
296
+ "doc": "🦎 Easily and securely send and share things from one computer to another",
297
+ "fileNamePattern": {
298
+ "amd64": {
299
+ "linux": "croc_{version}_Linux-64bit.tar.gz",
300
+ "windows": "croc_{version}_Windows-64bit.zip",
301
+ "macos": "croc_{version}_macOS-64bit.tar.gz"
302
+ },
303
+ "arm64": {
304
+ "linux": "croc_{version}_Linux-ARM64.tar.gz",
305
+ "windows": null,
306
+ "macos": "croc_{version}_macOS-ARM64.tar.gz"
307
+ }
308
+ }
309
+ },
310
+ {
311
+ "appName": "wormhole-rs",
312
+ "repoURL": "https://github.com/magic-wormhole/magic-wormhole.rs",
313
+ "doc": "🐛 Get things from one computer to another, safely (Rust implementation)",
314
+ "fileNamePattern": {
315
+ "amd64": {
316
+ "linux": "magic-wormhole-cli-x86_64-unknown-linux-gnu.tgz",
317
+ "windows": "magic-wormhole-cli-x86_64-pc-windows-gnu.tgz",
318
+ "macos": "magic-wormhole-cli-aarch64-apple-darwin.tgz"
319
+ },
320
+ "arm64": {
321
+ "linux": null,
322
+ "windows": null,
323
+ "macos": null
324
+ }
325
+ }
326
+ },
174
327
  {
175
328
  "appName": "easy-sharing",
176
329
  "repoURL": "CMD",
@@ -194,14 +347,31 @@
194
347
  "doc": "🔗 Easy file sharing tool",
195
348
  "fileNamePattern": {
196
349
  "amd64": {
197
- "linux": "npm install -g ezshare",
198
- "windows": "npm install -g ezshare",
199
- "macos": "npm install -g ezshare"
350
+ "linux": "npm i -g @ezshare/cli",
351
+ "windows": "npm i -g @ezshare/cli",
352
+ "macos": "npm i -g @ezshare/cli"
353
+ },
354
+ "arm64": {
355
+ "linux": "npm i -g @ezshare/cli",
356
+ "windows": "npm i -g @ezshare/cli",
357
+ "macos": "npm i -g @ezshare/cli"
358
+ }
359
+ }
360
+ },
361
+ {
362
+ "appName": "asciinema",
363
+ "repoURL": "https://github.com/asciinema/asciinema",
364
+ "doc": "🎥 Terminal session recorder",
365
+ "fileNamePattern": {
366
+ "amd64": {
367
+ "linux": "asciinema-x86_64-unknown-linux-gnu",
368
+ "windows": null,
369
+ "macos": "asciinema-x86_64-apple-darwin"
200
370
  },
201
371
  "arm64": {
202
- "linux": "npm install -g ezshare",
203
- "windows": "npm install -g ezshare",
204
- "macos": "npm install -g ezshare"
372
+ "linux": null,
373
+ "windows": null,
374
+ "macos": null
205
375
  }
206
376
  }
207
377
  },
@@ -392,6 +562,40 @@
392
562
  }
393
563
  }
394
564
  },
565
+ {
566
+ "appName": "cloudflare-warp",
567
+ "repoURL": "CMD",
568
+ "doc": "🌐 Cloudflare WARP VPN client",
569
+ "fileNamePattern": {
570
+ "amd64": {
571
+ "linux": null,
572
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
573
+ "macos": null
574
+ },
575
+ "arm64": {
576
+ "linux": null,
577
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
578
+ "macos": null
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "appName": "cloudflare-warp-cli",
584
+ "repoURL": "CMD",
585
+ "doc": "🌐 Cloudflare WARP VPN client in the terminal",
586
+ "fileNamePattern": {
587
+ "amd64": {
588
+ "linux": "cloudflare_warp_cli.py",
589
+ "windows": "cloudflare_warp_cli.py",
590
+ "macos": "cloudflare_warp_cli.py"
591
+ },
592
+ "arm64": {
593
+ "linux": "cloudflare_warp_cli.py",
594
+ "windows": "cloudflare_warp_cli.py",
595
+ "macos": "cloudflare_warp_cli.py"
596
+ }
597
+ }
598
+ },
395
599
  {
396
600
  "appName": "cpufetch",
397
601
  "repoURL": "https://github.com/Dr-Noob/cpufetch",
@@ -494,6 +698,23 @@
494
698
  }
495
699
  }
496
700
  },
701
+ {
702
+ "appName": "tv",
703
+ "repoURL": "https://github.com/alexpasmantier/television",
704
+ "doc": "🔍 A fast and hackable fuzzy finder for the terminal.",
705
+ "fileNamePattern": {
706
+ "amd64": {
707
+ "linux": "tv-{version}-x86_64-unknown-linux-musl.tar.gz",
708
+ "macos": "tv-{version}-x86_64-apple-darwin.tar.gz",
709
+ "windows": "tv-{version}-x86_64-pc-windows-msvc.zip"
710
+ },
711
+ "arm64": {
712
+ "linux": "tv-{version}-aarch64-unknown-linux-gnu.tar.gz",
713
+ "macos": "tv-{version}-aarch64-apple-darwin.tar.gz",
714
+ "windows": null
715
+ }
716
+ }
717
+ },
497
718
  {
498
719
  "appName": "gitui",
499
720
  "repoURL": "https://github.com/gitui-org/gitui",
@@ -562,6 +783,23 @@
562
783
  }
563
784
  }
564
785
  },
786
+ {
787
+ "appName": "clifm",
788
+ "repoURL": "https://github.com/leo-arch/clifm",
789
+ "doc": "📂 A terminal file manager with vim-like keybindings.",
790
+ "fileNamePattern": {
791
+ "amd64": {
792
+ "linux": "clifm-{version}-linux-x86_64.tar.gz",
793
+ "macos": null,
794
+ "windows": null
795
+ },
796
+ "arm64": {
797
+ "linux": null,
798
+ "macos": null,
799
+ "windows": null
800
+ }
801
+ }
802
+ },
565
803
  {
566
804
  "appName": "lsd",
567
805
  "repoURL": "https://github.com/lsd-rs/lsd",
@@ -613,40 +851,6 @@
613
851
  }
614
852
  }
615
853
  },
616
- {
617
- "appName": "mods",
618
- "repoURL": "https://github.com/charmbracelet/mods/",
619
- "doc": "🤖 AI for the command line, built for pipelines",
620
- "fileNamePattern": {
621
- "amd64": {
622
- "linux": "mods_{version}_Linux_x86_64.tar.gz",
623
- "macos": "mods_{version}_Darwin_x86_64.tar.gz",
624
- "windows": "mods_{version}_Windows_x86_64.zip"
625
- },
626
- "arm64": {
627
- "linux": "mods_{version}_Linux_arm64.tar.gz",
628
- "macos": "mods_{version}_Darwin_arm64.tar.gz",
629
- "windows": "mods_{version}_Windows_arm64.zip"
630
- }
631
- }
632
- },
633
- {
634
- "appName": "mprocs",
635
- "repoURL": "https://github.com/pvolok/mprocs",
636
- "doc": "🖥️ Windows/Linux/macOS poorman's zellij",
637
- "fileNamePattern": {
638
- "amd64": {
639
- "linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
640
- "macos": "mprocs-{version}-darwin-x86_64.tar.gz",
641
- "windows": "mprocs-{version}-windows-x86_64.zip"
642
- },
643
- "arm64": {
644
- "linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
645
- "macos": "mprocs-{version}-darwin-aarch64.tar.gz",
646
- "windows": "mprocs-{version}-windows-x86_64.zip"
647
- }
648
- }
649
- },
650
854
  {
651
855
  "appName": "ouch",
652
856
  "repoURL": "https://github.com/ouch-org/ouch",
@@ -698,6 +902,40 @@
698
902
  }
699
903
  }
700
904
  },
905
+ {
906
+ "appName": "meilisearch",
907
+ "repoURL": "https://github.com/meilisearch/meilisearch",
908
+ "doc": "🔍 symantic search at lightening speed",
909
+ "fileNamePattern": {
910
+ "amd64": {
911
+ "linux": "meilisearch-linux-amd64",
912
+ "macos": "meilisearch-macos-amd64",
913
+ "windows": "meilisearch-windows-amd64.exe"
914
+ },
915
+ "arm64": {
916
+ "linux": "meilisearch-linux-aarch64",
917
+ "macos": "meilisearch-macos-aarch64",
918
+ "windows": "meilisearch-windows-aarch64.exe"
919
+ }
920
+ }
921
+ },
922
+ {
923
+ "appName": "ast-grep",
924
+ "repoURL": "https://github.com/ast-grep/ast-grep",
925
+ "doc": "🔍 grep for code - search and rewrite code with ASTs",
926
+ "fileNamePattern": {
927
+ "amd64": {
928
+ "linux": "app-x86_64-unknown-linux-gnu.zip",
929
+ "macos": "app-x86_64-apple-darwin.zip",
930
+ "windows": "app-x86_64-pc-windows-msvc.zip"
931
+ },
932
+ "arm64": {
933
+ "linux": "app-aarch64-unknown-linux-gnu.zip",
934
+ "macos": "app-aarch64-apple-darwin.zip",
935
+ "windows": "app-aarch64-pc-windows-msvc.zip"
936
+ }
937
+ }
938
+ },
701
939
  {
702
940
  "appName": "rg",
703
941
  "repoURL": "https://github.com/BurntSushi/ripgrep",
@@ -732,6 +970,23 @@
732
970
  }
733
971
  }
734
972
  },
973
+ {
974
+ "appName": "parse",
975
+ "repoURL": "CMD",
976
+ "doc": "🔍 ripgrep + semantic search from https://github.com/run-llama/semtools",
977
+ "fileNamePattern": {
978
+ "amd64": {
979
+ "linux": "npm i -g @llamaindex/semtools",
980
+ "macos": "npm i -g @llamaindex/semtools",
981
+ "windows": "npm i -g @llamaindex/semtools"
982
+ },
983
+ "arm64": {
984
+ "linux": "npm i -g @llamaindex/semtools",
985
+ "macos": "npm i -g @llamaindex/semtools",
986
+ "windows": "npm i -g @llamaindex/semtools"
987
+ }
988
+ }
989
+ },
735
990
  {
736
991
  "appName": "starship",
737
992
  "repoURL": "https://github.com/starship/starship",
@@ -800,10 +1055,27 @@
800
1055
  }
801
1056
  }
802
1057
  },
1058
+ {
1059
+ "appName": "upterm",
1060
+ "repoURL": "https://github.com/owenthereal/upterm",
1061
+ "doc": "🌐 upterm is a terminal multiplexer that allows you to share your terminal session over the web.",
1062
+ "fileNamePattern": {
1063
+ "amd64": {
1064
+ "linux": "uptermd_linux_amd64.tar.gz",
1065
+ "macos": "upterm_darwin_amd64.tar.gz",
1066
+ "windows": null
1067
+ },
1068
+ "arm64": {
1069
+ "linux": "uptermd_linux_arm64.tar.gz",
1070
+ "macos": "upterm_darwin_arm64.tar.gz",
1071
+ "windows": null
1072
+ }
1073
+ }
1074
+ },
803
1075
  {
804
1076
  "appName": "viu",
805
1077
  "repoURL": "https://github.com/atanunq/viu",
806
- "doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
1078
+ "doc": "🖼️ A cli image viewer for the terminal (like chafa & ueberzugpp but in Rust)",
807
1079
  "fileNamePattern": {
808
1080
  "amd64": {
809
1081
  "linux": "viu-x86_64-unknown-linux-musl",
@@ -817,6 +1089,40 @@
817
1089
  }
818
1090
  }
819
1091
  },
1092
+ {
1093
+ "appName": "timg",
1094
+ "repoURL": "CMD",
1095
+ "doc": "👁️ terminal image previewer.",
1096
+ "fileNamePattern": {
1097
+ "amd64": {
1098
+ "linux": "sudo apt install timg",
1099
+ "windows": null,
1100
+ "macos": "brew install timg"
1101
+ },
1102
+ "arm64": {
1103
+ "linux": "sudo apt install timg",
1104
+ "windows": null,
1105
+ "macos": "brew install timg"
1106
+ }
1107
+ }
1108
+ },
1109
+ {
1110
+ "appName": "chafa",
1111
+ "repoURL": "CMD",
1112
+ "doc": "🖼️ Terminal graphics and image viewer",
1113
+ "fileNamePattern": {
1114
+ "amd64": {
1115
+ "linux": "sudo nala install chafa -y",
1116
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
1117
+ "macos": "brew install chafa"
1118
+ },
1119
+ "arm64": {
1120
+ "linux": "sudo nala install chafa -y",
1121
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
1122
+ "macos": "brew install chafa"
1123
+ }
1124
+ }
1125
+ },
820
1126
  {
821
1127
  "appName": "watchexec",
822
1128
  "repoURL": "https://github.com/watchexec/watchexec",
@@ -836,18 +1142,18 @@
836
1142
  },
837
1143
  {
838
1144
  "appName": "yazi",
839
- "repoURL": "https://github.com/sxyazi/yazi",
1145
+ "repoURL": "CMD",
840
1146
  "doc": "⚡ Blazing Fast Terminal File Manager.",
841
1147
  "fileNamePattern": {
842
1148
  "amd64": {
843
- "linux": "yazi-x86_64-unknown-linux-gnu.zip",
844
- "macos": "yazi-x86_64-apple-darwin.zip",
845
- "windows": "yazi-x86_64-pc-windows-msvc.zip"
1149
+ "linux": "yazi.py",
1150
+ "macos": "yazi.py",
1151
+ "windows": "yazi.py"
846
1152
  },
847
1153
  "arm64": {
848
- "linux": "yazi-aarch64-unknown-linux-gnu.zip",
849
- "macos": "yazi-aarch64-apple-darwin.zip",
850
- "windows": "yazi-aarch64-pc-windows-msvc.zip"
1154
+ "linux": "yazi.py",
1155
+ "macos": "yazi.py",
1156
+ "windows": "yazi.py"
851
1157
  }
852
1158
  }
853
1159
  },
@@ -902,6 +1208,40 @@
902
1208
  }
903
1209
  }
904
1210
  },
1211
+ {
1212
+ "appName": "youtube-dl",
1213
+ "repoURL": "CMD",
1214
+ "doc": "📥 Command-line program to download videos from YouTube and other sites. By https://github.com/ytdl-org/youtube-dl",
1215
+ "fileNamePattern": {
1216
+ "amd64": {
1217
+ "linux": "https://yt-dl.org/downloads/latest/youtube-dl",
1218
+ "macos": "https://yt-dl.org/downloads/latest/youtube-dl",
1219
+ "windows": "https://yt-dl.org/latest/youtube-dl.exe"
1220
+ },
1221
+ "arm64": {
1222
+ "linux": "https://yt-dl.org/downloads/latest/youtube-dl",
1223
+ "macos": "https://yt-dl.org/downloads/latest/youtube-dl",
1224
+ "windows": "https://yt-dl.org/latest/youtube-dl.exe"
1225
+ }
1226
+ }
1227
+ },
1228
+ {
1229
+ "appName": "yt-dlp",
1230
+ "repoURL": "CMD",
1231
+ "doc": "📥 A youtube-dl fork with additional features and fixes, by https://github.com/yt-dlp/yt-dlp",
1232
+ "fileNamePattern": {
1233
+ "amd64": {
1234
+ "linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp",
1235
+ "macos": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_macos",
1236
+ "windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"
1237
+ },
1238
+ "arm64": {
1239
+ "linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_musllinux_aarch64",
1240
+ "macos": null,
1241
+ "windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_arm64.exe"
1242
+ }
1243
+ }
1244
+ },
905
1245
  {
906
1246
  "appName": "termusic",
907
1247
  "repoURL": "https://github.com/tramhao/termusic",
@@ -1005,8 +1345,25 @@
1005
1345
  }
1006
1346
  },
1007
1347
  {
1008
- "appName": "atuin",
1009
- "repoURL": "https://github.com/atuinsh/atuin",
1348
+ "appName": "cb",
1349
+ "repoURL": "CMD",
1350
+ "doc": "📋 Clipboard manager for the terminal",
1351
+ "fileNamePattern": {
1352
+ "amd64": {
1353
+ "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1354
+ "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1355
+ "windows": "winget install -e --id Slackadays.Clipboard"
1356
+ },
1357
+ "arm64": {
1358
+ "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1359
+ "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1360
+ "windows": "winget install -e --id Slackadays.Clipboard"
1361
+ }
1362
+ }
1363
+ },
1364
+ {
1365
+ "appName": "atuin",
1366
+ "repoURL": "https://github.com/atuinsh/atuin",
1010
1367
  "doc": "🔍 Shell history search tool. Mcfly alternative",
1011
1368
  "fileNamePattern": {
1012
1369
  "amd64": {
@@ -1027,13 +1384,13 @@
1027
1384
  "doc": "🌐 browser in the shell",
1028
1385
  "fileNamePattern": {
1029
1386
  "amd64": {
1030
- "linux": null,
1031
- "macos": null,
1387
+ "linux": "browsh-v{version}-linux-amd64",
1388
+ "macos": "browsh-v{version}-darwin-amd64",
1032
1389
  "windows": null
1033
1390
  },
1034
1391
  "arm64": {
1035
- "linux": null,
1036
- "macos": null,
1392
+ "linux": "browsh-v{version}-linux-arm64",
1393
+ "macos": "browsh-v{version}-darwin-arm64",
1037
1394
  "windows": null
1038
1395
  }
1039
1396
  }
@@ -1089,6 +1446,57 @@
1089
1446
  }
1090
1447
  }
1091
1448
  },
1449
+ {
1450
+ "appName": "sqlite3",
1451
+ "repoURL": "CMD",
1452
+ "doc": "A cli for sqlite",
1453
+ "fileNamePattern": {
1454
+ "amd64": {
1455
+ "linux": "sudo nala install sqlite3 -y",
1456
+ "macos": null,
1457
+ "windows": null
1458
+ },
1459
+ "arm64": {
1460
+ "linux": null,
1461
+ "macos": null,
1462
+ "windows": null
1463
+ }
1464
+ }
1465
+ },
1466
+ {
1467
+ "appName": "postgresql-client",
1468
+ "repoURL": "CMD",
1469
+ "doc": "A cli for postgresql",
1470
+ "fileNamePattern": {
1471
+ "amd64": {
1472
+ "linux": "sudo nala install postgresql-client -y",
1473
+ "macos": null,
1474
+ "windows": null
1475
+ },
1476
+ "arm64": {
1477
+ "linux": null,
1478
+ "macos": null,
1479
+ "windows": null
1480
+ }
1481
+ }
1482
+ },
1483
+ {
1484
+ "appName": "redis-cli",
1485
+ "repoURL": "CMD",
1486
+ "doc": "A cli for redis",
1487
+ "fileNamePattern": {
1488
+ "amd64": {
1489
+ "linux": "sudo nala install redis-tools -y",
1490
+ "macos": null,
1491
+ "windows": null
1492
+ },
1493
+ "arm64": {
1494
+ "linux": null,
1495
+ "macos": null,
1496
+ "windows": null
1497
+ }
1498
+ }
1499
+ },
1092
1500
  {
1093
1501
  "appName": "DBeaver",
1094
1502
  "repoURL": "https://github.com/dbeaver/dbeaver",
@@ -1123,6 +1531,57 @@
1123
1531
  }
1124
1532
  }
1125
1533
  },
1534
+ {
1535
+ "appName": "lazysql",
1536
+ "repoURL": "https://github.com/jorgerojas26/lazysql",
1537
+ "doc": "🗃️ TUI DB Visualizer",
1538
+ "fileNamePattern": {
1539
+ "amd64": {
1540
+ "linux": "lazysql_Linux_x86_64.tar.gz",
1541
+ "macos": "lazysql_Darwin_x86_64.tar.gz",
1542
+ "windows": "lazysql_Windows_x86_64.zip"
1543
+ },
1544
+ "arm64": {
1545
+ "linux": "lazysql_Linux_arm64.tar.gz",
1546
+ "macos": "lazysql_Darwin_arm64.tar.gz",
1547
+ "windows": "lazysql_Windows_arm64.zip"
1548
+ }
1549
+ }
1550
+ },
1551
+ {
1552
+ "appName": "pgweb",
1553
+ "repoURL": "https://github.com/sosedoff/pgweb/",
1554
+ "doc": "🗃️ Web-based PostgreSQL database browser written in Go",
1555
+ "fileNamePattern": {
1556
+ "amd64": {
1557
+ "linux": "pgweb-linux-amd64.zip",
1558
+ "macos": "pgweb_darwin_amd64.zip",
1559
+ "windows": "pgweb_windows_amd64.zip"
1560
+ },
1561
+ "arm64": {
1562
+ "linux": "pgweb-linux-arm64.zip",
1563
+ "macos": "pgweb_darwin_arm64.zip",
1564
+ "windows": "pgweb_windows_arm64.zip"
1565
+ }
1566
+ }
1567
+ },
1568
+ {
1569
+ "appName": "dbgate",
1570
+ "repoURL": "https://github.com/dbgate/dbgate",
1571
+ "doc": "🗃️ Cross-platform database manager for developers and database administrators",
1572
+ "fileNamePattern": {
1573
+ "amd64": {
1574
+ "linux": "dbgate-{version}-linux_x64.tar.gz",
1575
+ "macos": "dbgate-{version}-mac_x64.zip",
1576
+ "windows": "dbgate-windows-latest.zip"
1577
+ },
1578
+ "arm64": {
1579
+ "linux": "dbgate-{version}-linux_arm64.tar.gz",
1580
+ "macos": "dbgate-{version}-mac_arm64.zip",
1581
+ "windows": "dbgate-windows-latest-arm64.exe"
1582
+ }
1583
+ }
1584
+ },
1126
1585
  {
1127
1586
  "appName": "duckdb",
1128
1587
  "repoURL": "https://github.com/duckdb/duckdb",
@@ -1140,6 +1599,23 @@
1140
1599
  }
1141
1600
  }
1142
1601
  },
1602
+ {
1603
+ "appName": "gonzo",
1604
+ "repoURL": "https://github.com/control-theory/gonzo",
1605
+ "doc": "🕶️ Gonzo is a Go-based TUI for real-time log analysis, like nerdlog, caps-log and lnav.",
1606
+ "fileNamePattern": {
1607
+ "amd64": {
1608
+ "linux": "gonzo-{version}-linux-amd64.tar.gz",
1609
+ "macos": "gonzo-{version}-darwin-amd64.tar.gz",
1610
+ "windows": "gonzo-{version}-windows-amd64.zip"
1611
+ },
1612
+ "arm64": {
1613
+ "linux": "gonzo-{version}-linux-arm64.tar.gz",
1614
+ "macos": "gonzo-{version}-darwin-arm64.tar.gz",
1615
+ "windows": "gonzo-{version}-windows-arm64.zip"
1616
+ }
1617
+ }
1618
+ },
1143
1619
  {
1144
1620
  "appName": "cpz",
1145
1621
  "repoURL": "https://github.com/SUPERCILEX/fuc",
@@ -1311,9 +1787,9 @@
1311
1787
  }
1312
1788
  },
1313
1789
  {
1314
- "appName": "bitwarden",
1790
+ "appName": "bw",
1315
1791
  "repoURL": "CMD",
1316
- "doc": "🔐 bw is a password manager.",
1792
+ "doc": "🔐 bitwarden is a password manager.",
1317
1793
  "fileNamePattern": {
1318
1794
  "amd64": {
1319
1795
  "linux": "npm install -g @bitwarden/cli",
@@ -1418,14 +1894,14 @@
1418
1894
  "doc": "🌐 cli to get info of ips",
1419
1895
  "fileNamePattern": {
1420
1896
  "amd64": {
1421
- "linux": "ipinfo_{version}_linux_amd64.tar.gz",
1422
- "windows": "ipinfo_{version}_windows_amd64.zip",
1423
- "macos": "ipinfo_{version}_darwin_amd64.tar.gz"
1897
+ "linux": "{version}_linux_amd64.tar.gz",
1898
+ "windows": "{version}_windows_amd64.zip",
1899
+ "macos": "{version}_darwin_amd64.tar.gz"
1424
1900
  },
1425
1901
  "arm64": {
1426
- "linux": "ipinfo_{version}_linux_arm64.tar.gz",
1427
- "windows": "ipinfo_{version}_windows_arm64.zip",
1428
- "macos": "ipinfo_{version}_darwin_arm64.tar.gz"
1902
+ "linux": "{version}_linux_arm64.tar.gz",
1903
+ "windows": "{version}_windows_arm64.zip",
1904
+ "macos": "{version}_darwin_arm64.tar.gz"
1429
1905
  }
1430
1906
  }
1431
1907
  },
@@ -1520,9 +1996,9 @@
1520
1996
  "doc": "📷 qr code scanner",
1521
1997
  "fileNamePattern": {
1522
1998
  "amd64": {
1523
- "linux": null,
1524
- "macos": null,
1525
- "windows": null
1999
+ "linux": "qrscan-{version}-x86_64-unknown-linux-gnu.tar.gz",
2000
+ "macos": "qrscan-{version}-x86_64-apple-darwin.tar.gz",
2001
+ "windows": "qrscan-{version}-i686-pc-windows-msvc.zip"
1526
2002
  },
1527
2003
  "arm64": {
1528
2004
  "linux": null,
@@ -1531,37 +2007,54 @@
1531
2007
  }
1532
2008
  }
1533
2009
  },
2010
+ {
2011
+ "appName": "qrterminal",
2012
+ "repoURL": "https://github.com/mdp/qrterminal",
2013
+ "doc": "📷 qr code terminal from string",
2014
+ "fileNamePattern": {
2015
+ "amd64": {
2016
+ "linux": "qrterminal_Linux_x86_64.tar.gz",
2017
+ "macos": "qrterminal_Darwin_x86_64.tar.gz",
2018
+ "windows": "qrterminal_Windows_x86_64.zip"
2019
+ },
2020
+ "arm64": {
2021
+ "linux": "qrterminal_Linux_arm64.tar.gz",
2022
+ "macos": "qrterminal_Darwin_arm64.tar.gz",
2023
+ "windows": "qrterminal_Windows_arm64.zip"
2024
+ }
2025
+ }
2026
+ },
1534
2027
  {
1535
2028
  "appName": "termscp",
1536
2029
  "repoURL": "https://github.com/veeso/termscp",
1537
2030
  "doc": "📂 A TUI like winscp",
1538
2031
  "fileNamePattern": {
1539
2032
  "amd64": {
1540
- "linux": null,
1541
- "macos": null,
2033
+ "linux": "termscp-{version}-x86_64-unknown-linux-musl.tar.gz",
2034
+ "macos": "termscp-{version}-x86_64-apple-darwin.tar.gz",
1542
2035
  "windows": null
1543
2036
  },
1544
2037
  "arm64": {
1545
- "linux": null,
1546
- "macos": null,
2038
+ "linux": "termscp-{version}-aarch64-unknown-linux-musl.tar.gz",
2039
+ "macos": "termscp-{version}-aarch64-apple-darwin.tar.gz",
1547
2040
  "windows": null
1548
2041
  }
1549
2042
  }
1550
2043
  },
1551
2044
  {
1552
2045
  "appName": "qr",
1553
- "repoURL": "pip install qrcode",
2046
+ "repoURL": "CMD",
1554
2047
  "doc": "🔲 qr code generator. String to qr code.",
1555
2048
  "fileNamePattern": {
1556
2049
  "amd64": {
1557
- "linux": null,
1558
- "macos": null,
1559
- "windows": null
2050
+ "linux": "uv tool install qrcode",
2051
+ "macos": "uv tool install qrcode",
2052
+ "windows": "uv tool install qrcode"
1560
2053
  },
1561
2054
  "arm64": {
1562
- "linux": null,
1563
- "macos": null,
1564
- "windows": null
2055
+ "linux": "uv tool install qrcode",
2056
+ "macos": "uv tool install qrcode",
2057
+ "windows": "uv tool install qrcode"
1565
2058
  }
1566
2059
  }
1567
2060
  },
@@ -1571,14 +2064,31 @@
1571
2064
  "doc": "🗂️ filebrowser provides a file managing interface within a specified directory",
1572
2065
  "fileNamePattern": {
1573
2066
  "amd64": {
1574
- "linux": null,
1575
- "macos": null,
1576
- "windows": null
2067
+ "linux": "linux-amd64-filebrowser.tar.gz",
2068
+ "macos": "darwin-amd64-filebrowser.tar.gz",
2069
+ "windows": "windows-amd64-filebrowser.zip"
1577
2070
  },
1578
2071
  "arm64": {
1579
- "linux": null,
1580
- "macos": null,
1581
- "windows": null
2072
+ "linux": "linux-arm64-filebrowser.tar.gz",
2073
+ "macos": "darwin-arm64-filebrowser.tar.gz",
2074
+ "windows": "windows-arm64-filebrowser.zip"
2075
+ }
2076
+ }
2077
+ },
2078
+ {
2079
+ "appName": "miniserve",
2080
+ "repoURL": "https://github.com/svenstaro/miniserve",
2081
+ "doc": "📂 A small, self-contained file server with directory listings",
2082
+ "fileNamePattern": {
2083
+ "amd64": {
2084
+ "linux": "miniserve-{version}-x86_64-unknown-linux-musl",
2085
+ "macos": "miniserve-{version}-x86_64-apple-darwin",
2086
+ "windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
2087
+ },
2088
+ "arm64": {
2089
+ "linux": "miniserve-{version}-aarch64-unknown-linux-musl",
2090
+ "macos": "miniserve-{version}-aarch64-apple-darwin",
2091
+ "windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
1582
2092
  }
1583
2093
  }
1584
2094
  },
@@ -1588,13 +2098,13 @@
1588
2098
  "doc": "☁️ Self-hosted file management system with muilt-cloud support.",
1589
2099
  "fileNamePattern": {
1590
2100
  "amd64": {
1591
- "linux": null,
1592
- "macos": null,
2101
+ "linux": "cloudreve_{version}_linux_amd64.tar.gz",
2102
+ "macos": "cloudreve_{version}_darwin_amd64.tar.gz",
1593
2103
  "windows": null
1594
2104
  },
1595
2105
  "arm64": {
1596
- "linux": null,
1597
- "macos": null,
2106
+ "linux": "cloudreve_{version}_linux_arm64.tar.gz",
2107
+ "macos": "cloudreve_{version}_darwin_arm64.tar.gz",
1598
2108
  "windows": null
1599
2109
  }
1600
2110
  }
@@ -1605,13 +2115,13 @@
1605
2115
  "doc": "💾 backup program that is fast, efficient and secure. It supports the three major operating systems",
1606
2116
  "fileNamePattern": {
1607
2117
  "amd64": {
1608
- "linux": null,
1609
- "macos": null,
1610
- "windows": null
2118
+ "linux": "restic_{version}_linux_amd64.bz2",
2119
+ "macos": "restic_{version}_darwin_amd64.bz2",
2120
+ "windows": "restic_{version}_windows_amd64.zip"
1611
2121
  },
1612
2122
  "arm64": {
1613
- "linux": null,
1614
- "macos": null,
2123
+ "linux": "restic_{version}_linux_arm64.bz2",
2124
+ "macos": "restic_{version}_darwin_arm64.bz2",
1615
2125
  "windows": null
1616
2126
  }
1617
2127
  }
@@ -1622,13 +2132,13 @@
1622
2132
  "doc": "🔄 Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers.",
1623
2133
  "fileNamePattern": {
1624
2134
  "amd64": {
1625
- "linux": null,
1626
- "macos": null,
1627
- "windows": null
2135
+ "linux": "syncthing-linux-amd64-v{version}.tar.gz",
2136
+ "macos": "syncthing-osx-amd64-v{version}.tar.gz",
2137
+ "windows": "syncthing-windows-amd64-v{version}.zip"
1628
2138
  },
1629
2139
  "arm64": {
1630
- "linux": null,
1631
- "macos": null,
2140
+ "linux": "syncthing-linux-arm64-v{version}.tar.gz",
2141
+ "macos": "syncthing-osx-arm64-v{version}.tar.gz",
1632
2142
  "windows": null
1633
2143
  }
1634
2144
  }
@@ -1639,13 +2149,13 @@
1639
2149
  "doc": "🌐 Istio is an open source service mesh that layers transparently onto existing distributed applications",
1640
2150
  "fileNamePattern": {
1641
2151
  "amd64": {
1642
- "linux": null,
1643
- "macos": null,
2152
+ "linux": "istio-{version}-linux-amd64.tar.gz",
2153
+ "macos": "istio-{version}-osx-amd64.tar.gz",
1644
2154
  "windows": null
1645
2155
  },
1646
2156
  "arm64": {
1647
- "linux": null,
1648
- "macos": null,
2157
+ "linux": "istio-{version}-linux-arm64.tar.gz",
2158
+ "macos": "istio-{version}-osx-arm64.tar.gz",
1649
2159
  "windows": null
1650
2160
  }
1651
2161
  }
@@ -1656,13 +2166,13 @@
1656
2166
  "doc": "⏲️ Pomodoro timer for the command-line",
1657
2167
  "fileNamePattern": {
1658
2168
  "amd64": {
1659
- "linux": null,
1660
- "macos": null,
1661
- "windows": null
2169
+ "linux": "openpomodoro-cli_{version}_linux_x86_64.tar.gz",
2170
+ "macos": "openpomodoro-cli_{version}_darwin_x86_64.tar.gz",
2171
+ "windows": "openpomodoro-cli_{version}_windows_x86_64.zip"
1662
2172
  },
1663
2173
  "arm64": {
1664
- "linux": null,
1665
- "macos": null,
2174
+ "linux": "openpomodoro-cli_{version}_linux_aarch64.tar.gz",
2175
+ "macos": "openpomodoro-cli_{version}_darwin_aarch64.tar.gz",
1666
2176
  "windows": null
1667
2177
  }
1668
2178
  }
@@ -1673,14 +2183,14 @@
1673
2183
  "doc": "🦀 Rust Language Server (LSP)",
1674
2184
  "fileNamePattern": {
1675
2185
  "amd64": {
1676
- "linux": null,
1677
- "macos": null,
1678
- "windows": null
2186
+ "linux": "rust-analyzer-x86_64-unknown-linux-gnu.gz",
2187
+ "macos": "rust-analyzer-x86_64-apple-darwin.gz",
2188
+ "windows": "rust-analyzer-x86_64-pc-windows-msvc.zip"
1679
2189
  },
1680
2190
  "arm64": {
1681
- "linux": null,
1682
- "macos": null,
1683
- "windows": null
2191
+ "linux": "rust-analyzer-aarch64-unknown-linux-gnu.gz",
2192
+ "macos": "rust-analyzer-aarch64-apple-darwin.gz",
2193
+ "windows": "rust-analyzer-aarch64-pc-windows-msvc.zip"
1684
2194
  }
1685
2195
  }
1686
2196
  },
@@ -1690,31 +2200,31 @@
1690
2200
  "doc": "🧹 cleans projects from litter files.",
1691
2201
  "fileNamePattern": {
1692
2202
  "amd64": {
1693
- "linux": null,
1694
- "macos": null,
1695
- "windows": null
2203
+ "linux": "kondo-linux-x86_64.tar.gz",
2204
+ "macos": "kondo-macos-x86_64.tar.gz",
2205
+ "windows": "kondo-windows-x86_64.zip"
1696
2206
  },
1697
2207
  "arm64": {
1698
- "linux": null,
1699
- "macos": null,
2208
+ "linux": "kondo-linux-aarch64.tar.gz",
2209
+ "macos": "kondo-macos-aarch64.tar.gz",
1700
2210
  "windows": null
1701
2211
  }
1702
2212
  }
1703
2213
  },
1704
2214
  {
1705
2215
  "appName": "tokei",
1706
- "repoURL": "https://github.com/XAMPPRocky/tokei",
2216
+ "repoURL": "CMD",
1707
2217
  "doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
1708
2218
  "fileNamePattern": {
1709
2219
  "amd64": {
1710
- "linux": null,
1711
- "macos": null,
1712
- "windows": null
2220
+ "linux": "cargo install tokei",
2221
+ "macos": "brew install tokei",
2222
+ "windows": "winget install XAMPPRocky.tokei"
1713
2223
  },
1714
2224
  "arm64": {
1715
- "linux": null,
1716
- "macos": null,
1717
- "windows": null
2225
+ "linux": "cargo install tokei",
2226
+ "macos": "brew install tokei",
2227
+ "windows": "winget install XAMPPRocky.tokei"
1718
2228
  }
1719
2229
  }
1720
2230
  },
@@ -1724,13 +2234,30 @@
1724
2234
  "doc": "🐙 A simple terminal UI for git commands",
1725
2235
  "fileNamePattern": {
1726
2236
  "amd64": {
1727
- "linux": null,
1728
- "macos": null,
2237
+ "linux": "lazygit_{version}_linux_x86_64.tar.gz",
2238
+ "macos": "lazygit_{version}_darwin_x86_64.tar.gz",
2239
+ "windows": "lazygit_{version}_windows_x86_64.zip"
2240
+ },
2241
+ "arm64": {
2242
+ "linux": "lazygit_{version}_linux_arm64.tar.gz",
2243
+ "macos": "lazygit_{version}_darwin_arm64.tar.gz",
2244
+ "windows": null
2245
+ }
2246
+ }
2247
+ },
2248
+ {
2249
+ "appName": "docker",
2250
+ "repoURL": "CMD",
2251
+ "doc": "🐳 Docker is an open platform for developing, shipping, and running applications.",
2252
+ "fileNamePattern": {
2253
+ "amd64": {
2254
+ "linux": "docker.sh",
2255
+ "macos": "docker.sh",
1729
2256
  "windows": null
1730
2257
  },
1731
2258
  "arm64": {
1732
- "linux": null,
1733
- "macos": null,
2259
+ "linux": "docker.sh",
2260
+ "macos": "docker.sh",
1734
2261
  "windows": null
1735
2262
  }
1736
2263
  }
@@ -1741,14 +2268,14 @@
1741
2268
  "doc": "🐋 A simple terminal UI for both docker and docker-compose",
1742
2269
  "fileNamePattern": {
1743
2270
  "amd64": {
1744
- "linux": null,
1745
- "macos": null,
1746
- "windows": null
2271
+ "linux": "lazydocker_{version}_Linux_x86_64.tar.gz",
2272
+ "macos": "lazydocker_{version}_Darwin_x86_64.tar.gz",
2273
+ "windows": "lazydocker_{version}_Windows_x86_64.zip"
1747
2274
  },
1748
2275
  "arm64": {
1749
- "linux": null,
1750
- "macos": null,
1751
- "windows": null
2276
+ "linux": "lazydocker_{version}_Linux_arm64.tar.gz",
2277
+ "macos": "lazydocker_{version}_Darwin_arm64.tar.gz",
2278
+ "windows": "lazydocker_{version}_Windows_arm64.zip"
1752
2279
  }
1753
2280
  }
1754
2281
  },
@@ -1758,13 +2285,13 @@
1758
2285
  "doc": "📊 Git repository summary on your terminal",
1759
2286
  "fileNamePattern": {
1760
2287
  "amd64": {
1761
- "linux": null,
1762
- "macos": null,
1763
- "windows": null
2288
+ "linux": "onefetch-{version}-x86_64-unknown-linux-gnu.tar.gz",
2289
+ "macos": "onefetch-{version}-x86_64-apple-darwin.tar.gz",
2290
+ "windows": "onefetch-{version}-x86_64-pc-windows-msvc.zip"
1764
2291
  },
1765
2292
  "arm64": {
1766
- "linux": null,
1767
- "macos": null,
2293
+ "linux": "onefetch-{version}-aarch64-unknown-linux-gnu.tar.gz",
2294
+ "macos": "onefetch-{version}-aarch64-apple-darwin.tar.gz",
1768
2295
  "windows": null
1769
2296
  }
1770
2297
  }
@@ -1775,14 +2302,14 @@
1775
2302
  "doc": "📈 analyze Git repositories and generate a visual contributions graph",
1776
2303
  "fileNamePattern": {
1777
2304
  "amd64": {
1778
- "linux": null,
1779
- "macos": null,
1780
- "windows": null
2305
+ "linux": "gitcs_linux_amd64",
2306
+ "macos": "gitcs_darwin_amd64",
2307
+ "windows": "gitcs_windows_amd64.exe"
1781
2308
  },
1782
2309
  "arm64": {
1783
- "linux": null,
2310
+ "linux": "gitcs_linux_386",
1784
2311
  "macos": null,
1785
- "windows": null
2312
+ "windows": "gitcs_windows_386.exe"
1786
2313
  }
1787
2314
  }
1788
2315
  },
@@ -1792,9 +2319,9 @@
1792
2319
  "doc": "🎯 A command runner",
1793
2320
  "fileNamePattern": {
1794
2321
  "amd64": {
1795
- "linux": null,
1796
- "macos": null,
1797
- "windows": null
2322
+ "linux": "gitcs_linux_amd64",
2323
+ "macos": "gitcs_darwin_amd64",
2324
+ "windows": "gitcs_windows_amd64.exe"
1798
2325
  },
1799
2326
  "arm64": {
1800
2327
  "linux": null,
@@ -1809,12 +2336,12 @@
1809
2336
  "doc": "📚 An interactive cheatsheet tool for the command-line",
1810
2337
  "fileNamePattern": {
1811
2338
  "amd64": {
1812
- "linux": null,
2339
+ "linux": "navi-v{version}-x86_64-unknown-linux-musl.tar.gz",
1813
2340
  "macos": null,
1814
- "windows": null
2341
+ "windows": "navi-v{version}-x86_64-pc-windows-gnu.zip"
1815
2342
  },
1816
2343
  "arm64": {
1817
- "linux": null,
2344
+ "linux": "navi-v{version}-aarch64-unknown-linux-gnu.tar.gz",
1818
2345
  "macos": null,
1819
2346
  "windows": null
1820
2347
  }
@@ -1826,13 +2353,13 @@
1826
2353
  "doc": "⚡ A very fast implementation of tldr in Rust",
1827
2354
  "fileNamePattern": {
1828
2355
  "amd64": {
1829
- "linux": null,
1830
- "macos": null,
1831
- "windows": null
2356
+ "linux": "tealdeer-linux-x86_64-musl",
2357
+ "macos": "tealdeer-macos-x86_64",
2358
+ "windows": "tealdeer-windows-x86_64-msvc.exe"
1832
2359
  },
1833
2360
  "arm64": {
1834
- "linux": null,
1835
- "macos": null,
2361
+ "linux": "tealdeer-linux-aarch64-musl",
2362
+ "macos": "tealdeer-macos-aarch64",
1836
2363
  "windows": null
1837
2364
  }
1838
2365
  }
@@ -1843,97 +2370,165 @@
1843
2370
  "doc": "🔍 A simple network sniffer in Rust",
1844
2371
  "fileNamePattern": {
1845
2372
  "amd64": {
1846
- "linux": null,
1847
- "macos": null,
1848
- "windows": null
2373
+ "linux": "Sniffnet_LinuxAppImage_amd64.AppImage",
2374
+ "macos": "Sniffnet_macOS_Intel.dmg",
2375
+ "windows": "Sniffnet_Windows_x64.msi"
1849
2376
  },
1850
2377
  "arm64": {
1851
- "linux": null,
1852
- "macos": null,
1853
- "windows": null
2378
+ "linux": "Sniffnet_LinuxAppImage_arm64.AppImage",
2379
+ "macos": "Sniffnet_macOS_AppleSilicon.dmg",
2380
+ "windows": "Sniffnet_Windows_arm64.msi"
1854
2381
  }
1855
2382
  }
1856
2383
  },
1857
2384
  {
1858
- "appName": "hyperfine",
1859
- "repoURL": "https://github.com/sharkdp/hyperfine",
1860
- "doc": " A command-line benchmarking tool",
2385
+ "appName": "trippy",
2386
+ "repoURL": "https://github.com/fujiapple852/trippy",
2387
+ "doc": "🧭 A network diagnostic tool combining traceroute and ping)",
1861
2388
  "fileNamePattern": {
1862
2389
  "amd64": {
1863
- "linux": null,
1864
- "macos": null,
1865
- "windows": null
2390
+ "linux": "trippy-{version}-x86_64-unknown-linux-musl.tar.gz",
2391
+ "macos": "trippy-{version}-x86_64-apple-darwin.tar.gz",
2392
+ "windows": "trippy-{version}-x86_64-pc-windows-msvc.zip"
1866
2393
  },
1867
2394
  "arm64": {
1868
- "linux": null,
1869
- "macos": null,
1870
- "windows": null
2395
+ "linux": "trippy-{version}-aarch64-unknown-linux-musl.tar.gz",
2396
+ "macos": "trippy-{version}-aarch64-apple-darwin.tar.gz",
2397
+ "windows": "trippy-{version}-aarch64-pc-windows-msvc.zip"
1871
2398
  }
1872
2399
  }
1873
- },
2400
+ },
1874
2401
  {
1875
- "appName": "ollama",
1876
- "repoURL": "https://github.com/ollama/ollama",
1877
- "doc": "🤖 Get up and running with large language models locally.",
2402
+ "appName": "oryx",
2403
+ "repoURL": "https://github.com/pythops/oryx",
2404
+ "doc": "🕵️‍♂️ TUI for sniffing network traffic using eBPF on Linux",
1878
2405
  "fileNamePattern": {
1879
2406
  "amd64": {
1880
- "linux": null,
1881
- "macos": null,
1882
- "windows": null
2407
+ "linux": "oryx-x86_64-unknown-linux-gnu.tar.gz",
2408
+ "macos": "",
2409
+ "windows": ""
1883
2410
  },
1884
2411
  "arm64": {
1885
- "linux": null,
1886
- "macos": null,
1887
- "windows": null
2412
+ "linux": "oryx-aarch64-unknown-linux-gnu.tar.gz",
2413
+ "macos": "",
2414
+ "windows": ""
1888
2415
  }
1889
2416
  }
1890
2417
  },
1891
2418
  {
1892
- "appName": "cointop",
1893
- "repoURL": "https://github.com/cointop-sh/cointop",
1894
- "doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
2419
+ "appName": "tufw",
2420
+ "repoURL": "https://github.com/peltho/tufw",
2421
+ "doc": "📋 Terminal UI for UFW (Uncomplicated Firewall) on Linux",
1895
2422
  "fileNamePattern": {
1896
2423
  "amd64": {
1897
- "linux": null,
1898
- "macos": null,
1899
- "windows": null
2424
+ "linux": "tufw_{version}_linux_amd64.tar.gz",
2425
+ "macos": "",
2426
+ "windows": ""
1900
2427
  },
1901
2428
  "arm64": {
1902
- "linux": null,
1903
- "macos": null,
1904
- "windows": null
2429
+ "linux": "tufw_{version}_linux_arm64.tar.gz",
2430
+ "macos": "",
2431
+ "windows": ""
1905
2432
  }
1906
2433
  }
1907
2434
  },
1908
2435
  {
1909
- "appName": "vtm",
1910
- "repoURL": "https://github.com/netxs-group/vtm",
1911
- "doc": "🖥️ Text-based desktop environment inside your terminal",
2436
+ "appName": "netscanner",
2437
+ "repoURL": "https://github.com/Chleba/netscanner",
2438
+ "doc": "📡 Terminal network scanner & diagnostic tool with TUI (v0.6.3)",
1912
2439
  "fileNamePattern": {
1913
2440
  "amd64": {
1914
- "linux": null,
1915
- "macos": null,
1916
- "windows": null
2441
+ "linux": "netscanner-{version}-x86_64-unknown-linux-gnu.tar.gz",
2442
+ "macos": "netscanner-{version}-x86_64-apple-darwin.tar.gz",
2443
+ "windows": "netscanner-{version}-x86_64-pc-windows-msvc.zip"
1917
2444
  },
1918
2445
  "arm64": {
1919
- "linux": null,
1920
- "macos": null,
1921
- "windows": null
2446
+ "linux": "netscanner-{version}-aarch64-unknown-linux-gnu.tar.gz",
2447
+ "macos": "netscanner-{version}-aarch64-apple-darwin.tar.gz",
2448
+ "windows": "netscanner-{version}-aarch64-pc-windows-msvc.zip"
1922
2449
  }
1923
2450
  }
1924
2451
  },
1925
2452
  {
1926
- "appName": "edex-ui",
1927
- "repoURL": "https://github.com/GitSquared/edex-ui",
1928
- "doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
1929
- "fileNamePattern": {
1930
- "amd64": {
2453
+ "appName": "hyperfine",
2454
+ "repoURL": "https://github.com/sharkdp/hyperfine",
2455
+ "doc": " A command-line benchmarking tool",
2456
+ "fileNamePattern": {
2457
+ "amd64": {
2458
+ "linux": "hyperfine-v{version}-x86_64-unknown-linux-gnu.tar.gz",
2459
+ "macos": "hyperfine-v{version}-x86_64-apple-darwin.tar.gz",
2460
+ "windows": "hyperfine-v{version}-x86_64-pc-windows-msvc.zip"
2461
+ },
2462
+ "arm64": {
2463
+ "linux": "hyperfine-v{version}-aarch64-unknown-linux-gnu.tar.gz",
2464
+ "macos": "hyperfine-v{version}-aarch64-apple-darwin.tar.gz",
2465
+ "windows": null
2466
+ }
2467
+ }
2468
+ },
2469
+ {
2470
+ "appName": "ollama",
2471
+ "repoURL": "https://github.com/ollama/ollama",
2472
+ "doc": "🤖 Get up and running with large language models locally.",
2473
+ "fileNamePattern": {
2474
+ "amd64": {
2475
+ "linux": "ollama-linux-amd64.tgz",
2476
+ "macos": "Ollama.dmg",
2477
+ "windows": "OllamaSetup.exe"
2478
+ },
2479
+ "arm64": {
2480
+ "linux": "ollama-linux-arm64.tgz",
2481
+ "macos": "Ollama.dmg",
2482
+ "windows": "ollama-windows-arm64.zip"
2483
+ }
2484
+ }
2485
+ },
2486
+ {
2487
+ "appName": "cointop",
2488
+ "repoURL": "https://github.com/cointop-sh/cointop",
2489
+ "doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
2490
+ "fileNamePattern": {
2491
+ "amd64": {
2492
+ "linux": "cointop_{version}_linux_amd64.tar.gz",
2493
+ "macos": "cointop_{version}_darwin_amd64.tar.gz",
2494
+ "windows": null
2495
+ },
2496
+ "arm64": {
1931
2497
  "linux": null,
1932
2498
  "macos": null,
1933
2499
  "windows": null
2500
+ }
2501
+ }
2502
+ },
2503
+ {
2504
+ "appName": "vtm",
2505
+ "repoURL": "https://github.com/netxs-group/vtm",
2506
+ "doc": "🖥️ Text-based desktop environment inside your terminal",
2507
+ "fileNamePattern": {
2508
+ "amd64": {
2509
+ "linux": "vtm_linux_x86_64.tar.7z",
2510
+ "macos": "vtm_macos_any.tar.7z",
2511
+ "windows": "vtm_windows_x86_64.7z"
1934
2512
  },
1935
2513
  "arm64": {
1936
- "linux": null,
2514
+ "linux": "vtm_linux_arm64.tar.7z",
2515
+ "macos": "vtm_macos_any.tar.7z",
2516
+ "windows": "vtm_windows_arm64.7z"
2517
+ }
2518
+ }
2519
+ },
2520
+ {
2521
+ "appName": "edex-ui",
2522
+ "repoURL": "https://github.com/GitSquared/edex-ui",
2523
+ "doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
2524
+ "fileNamePattern": {
2525
+ "amd64": {
2526
+ "linux": "eDEX-UI-Linux-x86_64.AppImage",
2527
+ "macos": "eDEX-UI-macOS-x64.dmg",
2528
+ "windows": "eDEX-UI-Windows-x64.exe"
2529
+ },
2530
+ "arm64": {
2531
+ "linux": "eDEX-UI-Linux-arm64.AppImage",
1937
2532
  "macos": null,
1938
2533
  "windows": null
1939
2534
  }
@@ -1945,9 +2540,9 @@
1945
2540
  "doc": "💻 Terminal emulator",
1946
2541
  "fileNamePattern": {
1947
2542
  "amd64": {
1948
- "linux": null,
1949
- "macos": null,
1950
- "windows": null
2543
+ "linux": "ExtratermQt-{version}.glibc2.34-x86_64.AppImage",
2544
+ "macos": "ExtratermQt_{version}.dmg",
2545
+ "windows": "extratermqt-setup-{version}.exe"
1951
2546
  },
1952
2547
  "arm64": {
1953
2548
  "linux": null,
@@ -1957,14 +2552,14 @@
1957
2552
  }
1958
2553
  },
1959
2554
  {
1960
- "appName": "nushell",
2555
+ "appName": "nu",
1961
2556
  "repoURL": "https://github.com/nushell/nushell",
1962
- "doc": "🐚 A cross-platform shell in Rust.",
2557
+ "doc": "🐚 Nushell, a cross-platform shell in Rust.",
1963
2558
  "fileNamePattern": {
1964
2559
  "amd64": {
1965
- "linux": null,
1966
- "macos": null,
1967
- "windows": null
2560
+ "linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
2561
+ "macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
2562
+ "windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
1968
2563
  },
1969
2564
  "arm64": {
1970
2565
  "linux": null,
@@ -1979,14 +2574,14 @@
1979
2574
  "doc": "🦊 WebDriver for Firefox.",
1980
2575
  "fileNamePattern": {
1981
2576
  "amd64": {
1982
- "linux": null,
1983
- "macos": null,
1984
- "windows": null
2577
+ "linux": "geckodriver-v{version}-linux64.tar.gz",
2578
+ "macos": "geckodriver-v{version}-macos.tar.gz",
2579
+ "windows": "geckodriver-v{version}-win64.zip"
1985
2580
  },
1986
2581
  "arm64": {
1987
- "linux": null,
1988
- "macos": null,
1989
- "windows": null
2582
+ "linux": "geckodriver-v{version}-linux-aarch64.tar.gz",
2583
+ "macos": "geckodriver-v{version}-macos-aarch64.tar.gz",
2584
+ "windows": "geckodriver-v{version}-win-aarch64.zip"
1990
2585
  }
1991
2586
  }
1992
2587
  },
@@ -2043,7 +2638,92 @@
2043
2638
  }
2044
2639
  },
2045
2640
  {
2046
- "appName": "github-copilot-cli",
2641
+ "appName": "mods",
2642
+ "repoURL": "https://github.com/charmbracelet/mods/",
2643
+ "doc": "🤖 AI for the command line, built for pipelines",
2644
+ "fileNamePattern": {
2645
+ "amd64": {
2646
+ "linux": "mods_{version}_Linux_x86_64.tar.gz",
2647
+ "macos": "mods_{version}_Darwin_x86_64.tar.gz",
2648
+ "windows": "mods_{version}_Windows_x86_64.zip"
2649
+ },
2650
+ "arm64": {
2651
+ "linux": "mods_{version}_Linux_arm64.tar.gz",
2652
+ "macos": "mods_{version}_Darwin_arm64.tar.gz",
2653
+ "windows": "mods_{version}_Windows_arm64.zip"
2654
+ }
2655
+ }
2656
+ },
2657
+ {
2658
+ "appName": "aichat",
2659
+ "repoURL": "https://github.com/sigoden/aichat",
2660
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2661
+ "fileNamePattern": {
2662
+ "amd64": {
2663
+ "linux": "aichat-{version}-x86_64-unknown-linux-musl.tar.gz",
2664
+ "macos": "aichat-{version}-x86_64-apple-darwin.tar.gz",
2665
+ "windows": "aichat-{version}-x86_64-pc-windows-msvc.zip"
2666
+ },
2667
+ "arm64": {
2668
+ "linux": "aichat-{version}-aarch64-unknown-linux-musl.tar.gz",
2669
+ "macos": "aichat-{version}-aarch64-apple-darwin.tar.gz",
2670
+ "windows": "aichat-{version}-aarch64-pc-windows-msvc.zip"
2671
+ }
2672
+ }
2673
+ },
2674
+ {
2675
+ "appName": "qwen-code",
2676
+ "repoURL": "CMD",
2677
+ "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2678
+ "fileNamePattern": {
2679
+ "amd64": {
2680
+ "linux": "npm install -g @qwen-code/qwen-code@latest",
2681
+ "windows": "npm install -g @qwen-code/qwen-code@latest",
2682
+ "macos": "npm install -g @qwen-code/qwen-code@latest"
2683
+ },
2684
+ "arm64": {
2685
+ "linux": "npm install -g @qwen-code/qwen-code@latest",
2686
+ "windows": "npm install -g @qwen-code/qwen-code@latest",
2687
+ "macos": "npm install -g @qwen-code/qwen-code@latest"
2688
+ }
2689
+ }
2690
+ },
2691
+ {
2692
+ "appName": "cline",
2693
+ "repoURL": "CMD",
2694
+ "doc": "Cline agent extension in the terminal",
2695
+ "fileNamePattern": {
2696
+ "amd64": {
2697
+ "linux": "npm install -g cline",
2698
+ "windows": "npm install -g cline",
2699
+ "macos": "npm install -g cline"
2700
+ },
2701
+ "arm64": {
2702
+ "linux": "npm install -g cline",
2703
+ "windows": "npm install -g cline",
2704
+ "macos": "npm install -g cline"
2705
+ }
2706
+ }
2707
+ },
2708
+ {
2709
+ "appName": "kilocode",
2710
+ "repoURL": "CMD",
2711
+ "doc": "Kilocode agent extension in the terminal",
2712
+ "fileNamePattern": {
2713
+ "amd64": {
2714
+ "linux": "npm install -g @kilocode/cli",
2715
+ "windows": "npm install -g @kilocode/cli",
2716
+ "macos": "npm install -g @kilocode/cli"
2717
+ },
2718
+ "arm64": {
2719
+ "linux": "npm install -g @kilocode/cli",
2720
+ "windows": "npm install -g @kilocode/cli",
2721
+ "macos": "npm install -g @kilocode/cli"
2722
+ }
2723
+ }
2724
+ },
2725
+ {
2726
+ "appName": "copilot",
2047
2727
  "repoURL": "CMD",
2048
2728
  "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2049
2729
  "fileNamePattern": {
@@ -2094,7 +2774,7 @@
2094
2774
  }
2095
2775
  },
2096
2776
  {
2097
- "appName": "opencode-ai",
2777
+ "appName": "opencode",
2098
2778
  "repoURL": "CMD",
2099
2779
  "doc": "Terminal-based CLI agents and tools for productivity and coding.",
2100
2780
  "fileNamePattern": {
@@ -2128,19 +2808,36 @@
2128
2808
  }
2129
2809
  },
2130
2810
  {
2131
- "appName": "warp",
2811
+ "appName": "warp-terminal",
2132
2812
  "repoURL": "CMD",
2133
2813
  "doc": "Modern terminal with AI-powered features",
2814
+ "fileNamePattern": {
2815
+ "amd64": {
2816
+ "linux": "https://app.warp.dev/get_warp?package=deb",
2817
+ "windows": "winget install Warp.Warp",
2818
+ "macos": "brew install --cask warp"
2819
+ },
2820
+ "arm64": {
2821
+ "linux": "https://app.warp.dev/get_warp?package=deb_arm64",
2822
+ "windows": "winget install Warp.Warp",
2823
+ "macos": "brew install --cask warp"
2824
+ }
2825
+ }
2826
+ },
2827
+ {
2828
+ "appName": "warp-terminal-cli",
2829
+ "repoURL": "CMD",
2830
+ "doc": "Modern terminal cli with AI-powered features",
2134
2831
  "fileNamePattern": {
2135
2832
  "amd64": {
2136
2833
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
2137
2834
  "windows": null,
2138
- "macos": null
2835
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2139
2836
  },
2140
2837
  "arm64": {
2141
2838
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
2142
2839
  "windows": null,
2143
- "macos": null
2840
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2144
2841
  }
2145
2842
  }
2146
2843
  },
@@ -2213,7 +2910,7 @@
2213
2910
  }
2214
2911
  },
2215
2912
  {
2216
- "appName": "Brave",
2913
+ "appName": "brave",
2217
2914
  "repoURL": "CMD",
2218
2915
  "doc": "Privacy-focused web browser with built-in ad blocking",
2219
2916
  "fileNamePattern": {
@@ -2281,7 +2978,7 @@
2281
2978
  }
2282
2979
  },
2283
2980
  {
2284
- "appName": "Gorilla",
2981
+ "appName": "gorilla",
2285
2982
  "repoURL": "https://github.com/ShishirPatil/gorilla",
2286
2983
  "doc": "natural language to API",
2287
2984
  "fileNamePattern": {
@@ -2332,7 +3029,7 @@
2332
3029
  }
2333
3030
  },
2334
3031
  {
2335
- "appName": "Redis",
3032
+ "appName": "redis",
2336
3033
  "repoURL": "CMD",
2337
3034
  "doc": "submillisecond fast key-value db",
2338
3035
  "fileNamePattern": {
@@ -2349,7 +3046,7 @@
2349
3046
  }
2350
3047
  },
2351
3048
  {
2352
- "appName": "Wezterm",
3049
+ "appName": "wezterm",
2353
3050
  "repoURL": "CMD",
2354
3051
  "doc": "Modern, GPU-accelerated terminal emulator",
2355
3052
  "fileNamePattern": {
@@ -2415,6 +3112,567 @@
2415
3112
  "macos": "hx.py"
2416
3113
  }
2417
3114
  }
3115
+ },
3116
+ {
3117
+ "appName": "file",
3118
+ "repoURL": "CMD",
3119
+ "doc": "🔍 File type identification utility",
3120
+ "fileNamePattern": {
3121
+ "amd64": {
3122
+ "linux": null,
3123
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
3124
+ "macos": null
3125
+ },
3126
+ "arm64": {
3127
+ "linux": null,
3128
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
3129
+ "macos": null
3130
+ }
3131
+ }
3132
+ },
3133
+ {
3134
+ "appName": "oh-my-posh",
3135
+ "repoURL": "CMD",
3136
+ "doc": "✨ Prompt theme engine for any shell",
3137
+ "fileNamePattern": {
3138
+ "amd64": {
3139
+ "linux": null,
3140
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3141
+ "macos": null
3142
+ },
3143
+ "arm64": {
3144
+ "linux": null,
3145
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3146
+ "macos": null
3147
+ }
3148
+ }
3149
+ },
3150
+ {
3151
+ "appName": "vsredistrib",
3152
+ "repoURL": "CMD",
3153
+ "doc": "📦 Microsoft Visual C++ Redistributable",
3154
+ "fileNamePattern": {
3155
+ "amd64": {
3156
+ "linux": null,
3157
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3158
+ "macos": null
3159
+ },
3160
+ "arm64": {
3161
+ "linux": null,
3162
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3163
+ "macos": null
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "appName": "vsbuildtools",
3169
+ "repoURL": "CMD",
3170
+ "doc": "🔨 Visual Studio Build Tools",
3171
+ "fileNamePattern": {
3172
+ "amd64": {
3173
+ "linux": null,
3174
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3175
+ "macos": null
3176
+ },
3177
+ "arm64": {
3178
+ "linux": null,
3179
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3180
+ "macos": null
3181
+ }
3182
+ }
3183
+ },
3184
+ {
3185
+ "appName": "codeblocks",
3186
+ "repoURL": "CMD",
3187
+ "doc": "💻 IDE for C/C++",
3188
+ "fileNamePattern": {
3189
+ "amd64": {
3190
+ "linux": null,
3191
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3192
+ "macos": null
3193
+ },
3194
+ "arm64": {
3195
+ "linux": null,
3196
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3197
+ "macos": null
3198
+ }
3199
+ }
3200
+ },
3201
+ {
3202
+ "appName": "make",
3203
+ "repoURL": "CMD",
3204
+ "doc": "🔧 GNU Make utility for building projects",
3205
+ "fileNamePattern": {
3206
+ "amd64": {
3207
+ "linux": null,
3208
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3209
+ "macos": null
3210
+ },
3211
+ "arm64": {
3212
+ "linux": null,
3213
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3214
+ "macos": null
3215
+ }
3216
+ }
3217
+ },
3218
+ {
3219
+ "appName": "gnupg",
3220
+ "repoURL": "CMD",
3221
+ "doc": "🔐 GNU Privacy Guard encryption tool",
3222
+ "fileNamePattern": {
3223
+ "amd64": {
3224
+ "linux": null,
3225
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3226
+ "macos": null
3227
+ },
3228
+ "arm64": {
3229
+ "linux": null,
3230
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3231
+ "macos": null
3232
+ }
3233
+ }
3234
+ },
3235
+ {
3236
+ "appName": "graphviz",
3237
+ "repoURL": "CMD",
3238
+ "doc": "📊 Graph visualization software",
3239
+ "fileNamePattern": {
3240
+ "amd64": {
3241
+ "linux": "sudo nala install graphviz -y",
3242
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3243
+ "macos": "brew install graphviz"
3244
+ },
3245
+ "arm64": {
3246
+ "linux": "sudo nala install graphviz -y",
3247
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3248
+ "macos": "brew install graphviz"
3249
+ }
3250
+ }
3251
+ },
3252
+ {
3253
+ "appName": "winfsp",
3254
+ "repoURL": "CMD",
3255
+ "doc": "💾 Windows File System Proxy",
3256
+ "fileNamePattern": {
3257
+ "amd64": {
3258
+ "linux": null,
3259
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3260
+ "macos": null
3261
+ },
3262
+ "arm64": {
3263
+ "linux": null,
3264
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3265
+ "macos": null
3266
+ }
3267
+ }
3268
+ },
3269
+ {
3270
+ "appName": "sshfs",
3271
+ "repoURL": "CMD",
3272
+ "doc": "🌐 Mount remote filesystems over SSH",
3273
+ "fileNamePattern": {
3274
+ "amd64": {
3275
+ "linux": "sudo nala install sshfs",
3276
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3277
+ "macos": "brew install sshfs"
3278
+ },
3279
+ "arm64": {
3280
+ "linux": "sudo nala install sshfs",
3281
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3282
+ "macos": "brew install sshfs"
3283
+ }
3284
+ }
3285
+ },
3286
+ {
3287
+ "appName": "xming",
3288
+ "repoURL": "CMD",
3289
+ "doc": "🖥️ X11 server for Windows",
3290
+ "fileNamePattern": {
3291
+ "amd64": {
3292
+ "linux": null,
3293
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3294
+ "macos": null
3295
+ },
3296
+ "arm64": {
3297
+ "linux": null,
3298
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3299
+ "macos": null
3300
+ }
3301
+ }
3302
+ },
3303
+ {
3304
+ "appName": "nodejs",
3305
+ "repoURL": "CMD",
3306
+ "doc": "🟢 JavaScript runtime environment",
3307
+ "fileNamePattern": {
3308
+ "amd64": {
3309
+ "linux": null,
3310
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3311
+ "macos": null
3312
+ },
3313
+ "arm64": {
3314
+ "linux": null,
3315
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3316
+ "macos": null
3317
+ }
3318
+ }
3319
+ },
3320
+ {
3321
+ "appName": "rustup",
3322
+ "repoURL": "CMD",
3323
+ "doc": "🦀 Rust toolchain installer",
3324
+ "fileNamePattern": {
3325
+ "amd64": {
3326
+ "linux": null,
3327
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3328
+ "macos": null
3329
+ },
3330
+ "arm64": {
3331
+ "linux": null,
3332
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3333
+ "macos": null
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ "appName": "mouse-without-borders",
3339
+ "repoURL": "CMD",
3340
+ "doc": "🖱️ Control multiple computers with one mouse",
3341
+ "fileNamePattern": {
3342
+ "amd64": {
3343
+ "linux": null,
3344
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3345
+ "macos": null
3346
+ },
3347
+ "arm64": {
3348
+ "linux": null,
3349
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3350
+ "macos": null
3351
+ }
3352
+ }
3353
+ },
3354
+ {
3355
+ "appName": "chrome",
3356
+ "repoURL": "CMD",
3357
+ "doc": "🌐 Google Chrome web browser",
3358
+ "fileNamePattern": {
3359
+ "amd64": {
3360
+ "linux": null,
3361
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3362
+ "macos": null
3363
+ },
3364
+ "arm64": {
3365
+ "linux": null,
3366
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3367
+ "macos": null
3368
+ }
3369
+ }
3370
+ },
3371
+ {
3372
+ "appName": "chrome-remote-desktop",
3373
+ "repoURL": "CMD",
3374
+ "doc": "🖥️ Chrome Remote Desktop Host",
3375
+ "fileNamePattern": {
3376
+ "amd64": {
3377
+ "linux": null,
3378
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3379
+ "macos": null
3380
+ },
3381
+ "arm64": {
3382
+ "linux": null,
3383
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3384
+ "macos": null
3385
+ }
3386
+ }
3387
+ },
3388
+ {
3389
+ "appName": "zoom",
3390
+ "repoURL": "CMD",
3391
+ "doc": "📹 Video conferencing software",
3392
+ "fileNamePattern": {
3393
+ "amd64": {
3394
+ "linux": null,
3395
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3396
+ "macos": null
3397
+ },
3398
+ "arm64": {
3399
+ "linux": null,
3400
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3401
+ "macos": null
3402
+ }
3403
+ }
3404
+ },
3405
+ {
3406
+ "appName": "7zip",
3407
+ "repoURL": "CMD",
3408
+ "doc": "📦 File archiver with high compression ratio",
3409
+ "fileNamePattern": {
3410
+ "amd64": {
3411
+ "linux": null,
3412
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3413
+ "macos": null
3414
+ },
3415
+ "arm64": {
3416
+ "linux": null,
3417
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3418
+ "macos": null
3419
+ }
3420
+ }
3421
+ },
3422
+ {
3423
+ "appName": "firefox",
3424
+ "repoURL": "CMD",
3425
+ "doc": "🦊 Mozilla Firefox web browser",
3426
+ "fileNamePattern": {
3427
+ "amd64": {
3428
+ "linux": null,
3429
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3430
+ "macos": null
3431
+ },
3432
+ "arm64": {
3433
+ "linux": null,
3434
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3435
+ "macos": null
3436
+ }
3437
+ }
3438
+ },
3439
+ {
3440
+ "appName": "thunderbird",
3441
+ "repoURL": "CMD",
3442
+ "doc": "📧 Mozilla Thunderbird email client",
3443
+ "fileNamePattern": {
3444
+ "amd64": {
3445
+ "linux": null,
3446
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3447
+ "macos": null
3448
+ },
3449
+ "arm64": {
3450
+ "linux": null,
3451
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3452
+ "macos": null
3453
+ }
3454
+ }
3455
+ },
3456
+ {
3457
+ "appName": "streamlabs-obs",
3458
+ "repoURL": "CMD",
3459
+ "doc": "🎥 Streamlabs OBS streaming software",
3460
+ "fileNamePattern": {
3461
+ "amd64": {
3462
+ "linux": null,
3463
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3464
+ "macos": null
3465
+ },
3466
+ "arm64": {
3467
+ "linux": null,
3468
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3469
+ "macos": null
3470
+ }
3471
+ }
3472
+ },
3473
+ {
3474
+ "appName": "obs-studio",
3475
+ "repoURL": "CMD",
3476
+ "doc": "🎬 OBS Studio streaming and recording software",
3477
+ "fileNamePattern": {
3478
+ "amd64": {
3479
+ "linux": null,
3480
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3481
+ "macos": null
3482
+ },
3483
+ "arm64": {
3484
+ "linux": null,
3485
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3486
+ "macos": null
3487
+ }
3488
+ }
3489
+ },
3490
+ {
3491
+ "appName": "miktex",
3492
+ "repoURL": "CMD",
3493
+ "doc": "📝 LaTeX distribution for Windows",
3494
+ "fileNamePattern": {
3495
+ "amd64": {
3496
+ "linux": null,
3497
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3498
+ "macos": null
3499
+ },
3500
+ "arm64": {
3501
+ "linux": null,
3502
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3503
+ "macos": null
3504
+ }
3505
+ }
3506
+ },
3507
+ {
3508
+ "appName": "texmaker",
3509
+ "repoURL": "CMD",
3510
+ "doc": "📄 LaTeX editor",
3511
+ "fileNamePattern": {
3512
+ "amd64": {
3513
+ "linux": null,
3514
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3515
+ "macos": null
3516
+ },
3517
+ "arm64": {
3518
+ "linux": null,
3519
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3520
+ "macos": null
3521
+ }
3522
+ }
3523
+ },
3524
+ {
3525
+ "appName": "lapce",
3526
+ "repoURL": "CMD",
3527
+ "doc": "⚡ Lightning-fast code editor written in Rust",
3528
+ "fileNamePattern": {
3529
+ "amd64": {
3530
+ "linux": null,
3531
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3532
+ "macos": null
3533
+ },
3534
+ "arm64": {
3535
+ "linux": null,
3536
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3537
+ "macos": null
3538
+ }
3539
+ }
3540
+ },
3541
+ {
3542
+ "appName": "tesseract",
3543
+ "repoURL": "CMD",
3544
+ "doc": "🔤 OCR engine for text recognition",
3545
+ "fileNamePattern": {
3546
+ "amd64": {
3547
+ "linux": null,
3548
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3549
+ "macos": null
3550
+ },
3551
+ "arm64": {
3552
+ "linux": null,
3553
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3554
+ "macos": null
3555
+ }
3556
+ }
3557
+ },
3558
+ {
3559
+ "appName": "perl",
3560
+ "repoURL": "CMD",
3561
+ "doc": "🍓 Strawberry Perl programming language",
3562
+ "fileNamePattern": {
3563
+ "amd64": {
3564
+ "linux": null,
3565
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3566
+ "macos": null
3567
+ },
3568
+ "arm64": {
3569
+ "linux": null,
3570
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3571
+ "macos": null
3572
+ }
3573
+ }
3574
+ },
3575
+ {
3576
+ "appName": "db-browser-sqlite",
3577
+ "repoURL": "CMD",
3578
+ "doc": "🗄️ DB Browser for SQLite database tool",
3579
+ "fileNamePattern": {
3580
+ "amd64": {
3581
+ "linux": null,
3582
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3583
+ "macos": null
3584
+ },
3585
+ "arm64": {
3586
+ "linux": null,
3587
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3588
+ "macos": null
3589
+ }
3590
+ }
3591
+ },
3592
+ {
3593
+ "appName": "ssms",
3594
+ "repoURL": "CMD",
3595
+ "doc": "🗄️ SQL Server Management Studio",
3596
+ "fileNamePattern": {
3597
+ "amd64": {
3598
+ "linux": null,
3599
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3600
+ "macos": null
3601
+ },
3602
+ "arm64": {
3603
+ "linux": null,
3604
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3605
+ "macos": null
3606
+ }
3607
+ }
3608
+ },
3609
+ {
3610
+ "appName": "adobe-reader",
3611
+ "repoURL": "CMD",
3612
+ "doc": "📄 Adobe Acrobat Reader DC",
3613
+ "fileNamePattern": {
3614
+ "amd64": {
3615
+ "linux": null,
3616
+ "windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3617
+ "macos": null
3618
+ },
3619
+ "arm64": {
3620
+ "linux": null,
3621
+ "windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3622
+ "macos": null
3623
+ }
3624
+ }
3625
+ },
3626
+ {
3627
+ "appName": "julia",
3628
+ "repoURL": "CMD",
3629
+ "doc": "📊 Julia programming language",
3630
+ "fileNamePattern": {
3631
+ "amd64": {
3632
+ "linux": null,
3633
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3634
+ "macos": null
3635
+ },
3636
+ "arm64": {
3637
+ "linux": null,
3638
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3639
+ "macos": null
3640
+ }
3641
+ }
3642
+ },
3643
+ {
3644
+ "appName": "awscli",
3645
+ "repoURL": "CMD",
3646
+ "doc": "☁️ AWS Command Line Interface",
3647
+ "fileNamePattern": {
3648
+ "amd64": {
3649
+ "linux": null,
3650
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3651
+ "macos": null
3652
+ },
3653
+ "arm64": {
3654
+ "linux": null,
3655
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3656
+ "macos": null
3657
+ }
3658
+ }
3659
+ },
3660
+ {
3661
+ "appName": "notepadplusplus",
3662
+ "repoURL": "CMD",
3663
+ "doc": "📝 Notepad++ text editor",
3664
+ "fileNamePattern": {
3665
+ "amd64": {
3666
+ "linux": null,
3667
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3668
+ "macos": null
3669
+ },
3670
+ "arm64": {
3671
+ "linux": null,
3672
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3673
+ "macos": null
3674
+ }
3675
+ }
2418
3676
  }
2419
3677
  ]
2420
- }
3678
+ }