machineconfig 7.50__py3-none-any.whl → 8.14__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (298) hide show
  1. machineconfig/cluster/remote/cloud_manager.py +1 -1
  2. machineconfig/cluster/sessions_managers/utils/maker.py +23 -11
  3. machineconfig/cluster/sessions_managers/wt_local_manager.py +22 -19
  4. machineconfig/cluster/sessions_managers/wt_remote_manager.py +3 -1
  5. machineconfig/cluster/sessions_managers/zellij_local_manager.py +3 -1
  6. machineconfig/cluster/sessions_managers/zellij_remote_manager.py +3 -2
  7. machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +2 -2
  8. machineconfig/jobs/installer/installer_data.json +1185 -165
  9. machineconfig/jobs/installer/linux_scripts/q.sh +10 -7
  10. machineconfig/jobs/installer/linux_scripts/redis.sh +1 -0
  11. machineconfig/jobs/installer/package_groups.py +52 -84
  12. machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
  13. machineconfig/jobs/installer/{custom → python_scripts}/boxes.py +2 -2
  14. machineconfig/jobs/installer/{custom_dev → python_scripts}/brave.py +5 -3
  15. machineconfig/jobs/installer/python_scripts/cloudflare_warp_cli.py +23 -0
  16. machineconfig/jobs/installer/{custom_dev → python_scripts}/code.py +4 -1
  17. machineconfig/jobs/installer/{custom_dev → python_scripts}/dubdb_adbc.py +1 -1
  18. machineconfig/jobs/installer/{custom → python_scripts}/hx.py +16 -12
  19. machineconfig/jobs/installer/{custom_dev → python_scripts}/nerdfont.py +2 -2
  20. machineconfig/jobs/installer/{custom_dev → python_scripts}/nerfont_windows_helper.py +27 -22
  21. machineconfig/jobs/installer/python_scripts/sysabc.py +139 -0
  22. machineconfig/jobs/installer/{custom_dev → python_scripts}/wezterm.py +2 -19
  23. machineconfig/jobs/installer/{custom_dev → python_scripts}/winget.py +10 -14
  24. machineconfig/jobs/installer/python_scripts/yazi.py +121 -0
  25. machineconfig/{scripts/python/nw → jobs/scripts/bash_scripts}/mount_nfs +0 -1
  26. machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1 +13 -0
  27. machineconfig/jobs/scripts/powershell_scripts/obs.ps1 +4 -0
  28. machineconfig/jobs/scripts_dynamic/a.py +25 -0
  29. machineconfig/logger.py +0 -1
  30. machineconfig/profile/create_helper.py +21 -22
  31. machineconfig/profile/create_links_export.py +25 -11
  32. machineconfig/profile/create_shell_profile.py +14 -3
  33. machineconfig/profile/mapper.toml +8 -6
  34. machineconfig/scripts/__init__.py +0 -4
  35. machineconfig/scripts/linux/wrap_mcfg +20 -21
  36. machineconfig/scripts/python/agents.py +74 -50
  37. machineconfig/scripts/python/ai/initai.py +1 -1
  38. machineconfig/scripts/python/ai/scripts/command_runner.ps1 +33 -0
  39. machineconfig/scripts/python/ai/{command_runner → scripts}/command_runner.sh +1 -1
  40. machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +1 -1
  41. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Thinking-Beast-Mode.chatmode.md → agents/Thinking-Beast-Mode.agent.md} +0 -1
  42. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md → agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md} +0 -1
  43. machineconfig/scripts/python/ai/solutions/copilot/{chatmodes/deepResearch.chatmode.md → agents/deepResearch.agent.md} +2 -2
  44. machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +5 -5
  45. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +4 -0
  46. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md +20 -0
  47. machineconfig/scripts/python/ai/solutions/generic.py +1 -1
  48. machineconfig/scripts/python/ai/{generate_files.py → utils/generate_files.py} +2 -2
  49. machineconfig/scripts/python/cloud.py +6 -6
  50. machineconfig/scripts/python/croshell.py +67 -60
  51. machineconfig/scripts/python/devops.py +41 -21
  52. machineconfig/scripts/python/devops_navigator.py +0 -4
  53. machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
  54. machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
  55. machineconfig/scripts/python/fire_jobs.py +95 -67
  56. machineconfig/scripts/python/ftpx.py +44 -17
  57. machineconfig/scripts/python/helpers/ast_search.py +74 -0
  58. machineconfig/scripts/python/helpers/qr_code.py +166 -0
  59. machineconfig/scripts/python/helpers/repo_rag.py +325 -0
  60. machineconfig/scripts/python/helpers/symantic_search.py +25 -0
  61. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json +1 -1
  62. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py +9 -7
  63. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py +21 -8
  64. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +0 -12
  65. machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py +30 -11
  66. machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py +9 -2
  67. machineconfig/scripts/python/helpers_agents/privacy/configs/aichat/config.yaml +5 -0
  68. machineconfig/scripts/python/helpers_agents/privacy/configs/aider/.aider.conf.yml +2 -0
  69. machineconfig/scripts/python/helpers_agents/privacy/configs/copilot/config.yml +1 -0
  70. machineconfig/scripts/python/helpers_agents/privacy/configs/crush/crush.json +10 -0
  71. machineconfig/scripts/python/helpers_agents/privacy/configs/gemini/settings.json +12 -0
  72. machineconfig/scripts/python/helpers_agents/privacy/privacy.py +109 -0
  73. machineconfig/scripts/python/helpers_agents/templates/prompt.txt +8 -4
  74. machineconfig/scripts/python/helpers_agents/templates/template.sh +18 -8
  75. machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
  76. machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
  77. machineconfig/scripts/python/helpers_cloud/cloud_mount.py +19 -17
  78. machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
  79. machineconfig/scripts/python/helpers_croshell/crosh.py +3 -3
  80. machineconfig/scripts/python/helpers_croshell/start_slidev.py +6 -7
  81. machineconfig/scripts/python/helpers_devops/cli_config.py +19 -25
  82. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +22 -13
  83. machineconfig/scripts/python/helpers_devops/cli_nw.py +113 -26
  84. machineconfig/scripts/python/helpers_devops/cli_repos.py +37 -11
  85. machineconfig/scripts/python/helpers_devops/cli_self.py +95 -42
  86. machineconfig/scripts/python/helpers_devops/cli_share_file.py +9 -9
  87. machineconfig/scripts/python/helpers_devops/cli_share_server.py +13 -12
  88. machineconfig/scripts/python/helpers_devops/{cli_terminal.py → cli_share_terminal.py} +15 -17
  89. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
  90. machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
  91. machineconfig/scripts/python/helpers_devops/run_script.py +180 -0
  92. machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py +1 -1
  93. machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +2 -19
  94. machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py +1 -0
  95. machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +25 -15
  96. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +3 -3
  97. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +58 -1
  98. machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
  99. machineconfig/scripts/python/helpers_network/address.py +176 -0
  100. machineconfig/scripts/python/helpers_network/address_switch.py +78 -0
  101. machineconfig/scripts/python/{nw → helpers_network}/mount_nfs.py +2 -2
  102. machineconfig/scripts/python/{nw → helpers_network}/mount_ssh.py +1 -1
  103. machineconfig/scripts/python/{nw/devops_add_identity.py → helpers_network/ssh_add_identity.py} +35 -1
  104. machineconfig/scripts/python/{nw/devops_add_ssh_key.py → helpers_network/ssh_add_ssh_key.py} +26 -7
  105. machineconfig/scripts/python/{nw → helpers_network}/ssh_debug_linux.py +7 -7
  106. machineconfig/scripts/python/{nw → helpers_network}/ssh_debug_windows.py +4 -4
  107. machineconfig/scripts/python/helpers_repos/clone.py +0 -1
  108. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +13 -5
  109. machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
  110. machineconfig/scripts/python/helpers_repos/record.py +2 -1
  111. machineconfig/scripts/python/helpers_repos/repo_analyzer_1.py +160 -0
  112. machineconfig/scripts/python/helpers_repos/{count_lines.py → repo_analyzer_2.py} +113 -192
  113. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +19 -13
  114. machineconfig/scripts/python/helpers_utils/download.py +150 -0
  115. machineconfig/scripts/python/helpers_utils/pdf.py +96 -0
  116. machineconfig/scripts/python/helpers_utils/python.py +187 -0
  117. machineconfig/scripts/python/interactive.py +30 -31
  118. machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -5
  119. machineconfig/scripts/python/msearch.py +57 -6
  120. machineconfig/scripts/python/sessions.py +100 -31
  121. machineconfig/scripts/python/terminal.py +26 -17
  122. machineconfig/scripts/python/utils.py +17 -15
  123. machineconfig/scripts/windows/wrap_mcfg.ps1 +6 -3
  124. machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
  125. machineconfig/settings/linters/.ruff.toml +1 -1
  126. machineconfig/settings/shells/bash/init.sh +29 -2
  127. machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +1 -1
  128. machineconfig/settings/shells/nushell/config.nu +2 -2
  129. machineconfig/settings/shells/nushell/env.nu +45 -6
  130. machineconfig/settings/shells/nushell/init.nu +282 -95
  131. machineconfig/settings/shells/pwsh/init.ps1 +1 -0
  132. machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
  133. machineconfig/settings/shells/zsh/init.sh +1 -8
  134. machineconfig/settings/television/cable_unix/alias.toml +8 -0
  135. machineconfig/settings/television/cable_unix/aws-buckets.toml +14 -0
  136. machineconfig/settings/television/cable_unix/aws-instances.toml +13 -0
  137. machineconfig/settings/television/cable_unix/bash-history.toml +8 -0
  138. machineconfig/settings/television/cable_unix/channels.toml +19 -0
  139. machineconfig/settings/television/cable_unix/dirs.toml +13 -0
  140. machineconfig/settings/television/cable_unix/distrobox-list.toml +42 -0
  141. machineconfig/settings/television/cable_unix/docker-images.toml +13 -0
  142. machineconfig/settings/television/cable_unix/dotfiles.toml +11 -0
  143. machineconfig/settings/television/cable_unix/env.toml +17 -0
  144. machineconfig/settings/television/cable_unix/files.toml +11 -0
  145. machineconfig/settings/television/cable_unix/fish-history.toml +8 -0
  146. machineconfig/settings/television/cable_unix/git-branch.toml +11 -0
  147. machineconfig/settings/television/cable_unix/git-diff.toml +10 -0
  148. machineconfig/settings/television/cable_unix/git-log.toml +12 -0
  149. machineconfig/settings/television/cable_unix/git-reflog.toml +12 -0
  150. machineconfig/settings/television/cable_unix/git-repos.toml +16 -0
  151. machineconfig/settings/television/cable_unix/guix.toml +20 -0
  152. machineconfig/settings/television/cable_unix/just-recipes.toml +18 -0
  153. machineconfig/settings/television/cable_unix/k8s-deployments.toml +36 -0
  154. machineconfig/settings/television/cable_unix/k8s-pods.toml +50 -0
  155. machineconfig/settings/television/cable_unix/k8s-services.toml +36 -0
  156. machineconfig/settings/television/cable_unix/man-pages.toml +24 -0
  157. machineconfig/settings/television/cable_unix/nu-history.toml +7 -0
  158. machineconfig/settings/television/cable_unix/procs.toml +20 -0
  159. machineconfig/settings/television/cable_unix/text.toml +17 -0
  160. machineconfig/settings/television/cable_unix/tldr.toml +18 -0
  161. machineconfig/settings/television/cable_unix/zsh-history.toml +9 -0
  162. machineconfig/settings/television/cable_windows/alias.toml +7 -0
  163. machineconfig/settings/television/cable_windows/dirs.toml +13 -0
  164. machineconfig/settings/television/cable_windows/docker-images.toml +13 -0
  165. machineconfig/settings/television/cable_windows/dotfiles.toml +11 -0
  166. machineconfig/settings/television/cable_windows/env.toml +17 -0
  167. machineconfig/settings/television/cable_windows/files.toml +14 -0
  168. machineconfig/settings/television/cable_windows/git-branch.toml +11 -0
  169. machineconfig/settings/television/cable_windows/git-diff.toml +10 -0
  170. machineconfig/settings/television/cable_windows/git-log.toml +11 -0
  171. machineconfig/settings/television/cable_windows/git-reflog.toml +11 -0
  172. machineconfig/settings/television/cable_windows/git-repos.toml +15 -0
  173. machineconfig/settings/television/cable_windows/nu-history.toml +7 -0
  174. machineconfig/settings/television/cable_windows/pwsh-history.toml +6 -0
  175. machineconfig/settings/television/cable_windows/text.toml +17 -0
  176. machineconfig/settings/wt/__init__.py +0 -0
  177. machineconfig/settings/yazi/init.lua +49 -24
  178. machineconfig/settings/yazi/keymap_linux.toml +19 -4
  179. machineconfig/settings/yazi/keymap_windows.toml +0 -1
  180. machineconfig/settings/yazi/shell/yazi_cd.ps1 +29 -5
  181. machineconfig/settings/yazi/theme.toml +4 -0
  182. machineconfig/settings/yazi/yazi_linux.toml +84 -0
  183. machineconfig/settings/yazi/yazi_windows.toml +58 -0
  184. machineconfig/settings/zellij/layouts/st.kdl +39 -8
  185. machineconfig/setup_linux/__init__.py +1 -2
  186. machineconfig/setup_linux/apps_desktop.sh +8 -27
  187. machineconfig/setup_linux/web_shortcuts/interactive.sh +12 -10
  188. machineconfig/setup_linux/web_shortcuts/live_from_github.sh +31 -0
  189. machineconfig/setup_mac/__init__.py +2 -3
  190. machineconfig/setup_windows/__init__.py +3 -5
  191. machineconfig/setup_windows/ssh/openssh-server.ps1 +1 -1
  192. machineconfig/setup_windows/uv.ps1 +8 -1
  193. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +12 -10
  194. machineconfig/setup_windows/web_shortcuts/live_from_github.ps1 +30 -0
  195. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +17 -0
  196. machineconfig/utils/accessories.py +7 -4
  197. machineconfig/utils/code.py +69 -27
  198. machineconfig/utils/files/headers.py +2 -2
  199. machineconfig/utils/installer_utils/github_release_bulk.py +156 -119
  200. machineconfig/utils/installer_utils/install_from_url.py +183 -0
  201. machineconfig/utils/installer_utils/installer_class.py +43 -100
  202. machineconfig/utils/installer_utils/installer_cli.py +175 -0
  203. machineconfig/utils/installer_utils/installer_helper.py +129 -0
  204. machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +36 -85
  205. machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +16 -59
  206. machineconfig/utils/io.py +0 -1
  207. machineconfig/utils/links.py +2 -2
  208. machineconfig/utils/meta.py +30 -16
  209. machineconfig/utils/options.py +42 -24
  210. machineconfig/utils/options_tv.py +119 -0
  211. machineconfig/utils/path_extended.py +42 -20
  212. machineconfig/utils/path_helper.py +75 -22
  213. machineconfig/utils/procs.py +1 -1
  214. machineconfig/utils/scheduler.py +20 -53
  215. machineconfig/utils/schemas/layouts/layout_types.py +1 -1
  216. machineconfig/utils/ssh.py +159 -418
  217. machineconfig/utils/ssh_utils/abc.py +5 -0
  218. machineconfig/utils/ssh_utils/copy_from_here.py +111 -0
  219. machineconfig/utils/ssh_utils/copy_to_here.py +303 -0
  220. machineconfig/utils/ssh_utils/utils.py +142 -0
  221. machineconfig/utils/ssh_utils/wsl.py +210 -0
  222. machineconfig/utils/terminal.py +1 -0
  223. machineconfig/utils/upgrade_packages.py +6 -1
  224. machineconfig/utils/ve.py +12 -4
  225. machineconfig-8.14.dist-info/METADATA +132 -0
  226. {machineconfig-7.50.dist-info → machineconfig-8.14.dist-info}/RECORD +264 -215
  227. {machineconfig-7.50.dist-info → machineconfig-8.14.dist-info}/entry_points.txt +2 -4
  228. machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
  229. machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -71
  230. machineconfig/jobs/installer/powershell_scripts/archive_pygraphviz.ps1 +0 -12
  231. machineconfig/jobs/installer/powershell_scripts/openssh-server_add_key.ps1 +0 -7
  232. machineconfig/jobs/installer/powershell_scripts/openssh-server_copy-ssh-id.ps1 +0 -14
  233. machineconfig/scripts/linux/other/switch_ip +0 -20
  234. machineconfig/scripts/python/ai/command_runner/prompt.txt +0 -9
  235. machineconfig/scripts/python/define.py +0 -31
  236. machineconfig/scripts/python/explore.py +0 -49
  237. machineconfig/scripts/python/helpers_devops/cli_utils.py +0 -246
  238. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag +0 -17
  239. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga +0 -21
  240. machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg +0 -4
  241. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1 +0 -3
  242. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat +0 -20
  243. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +0 -17
  244. machineconfig/scripts/python/nw/add_ssh_key.py +0 -148
  245. machineconfig/scripts/python/nw/wsl_windows_transfer.py +0 -66
  246. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +0 -13
  247. machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
  248. machineconfig/settings/lf/windows/fzf_edit.ps1 +0 -6
  249. machineconfig/settings/lf/windows/tst.ps1 +0 -1
  250. machineconfig/settings/yazi/yazi.toml +0 -17
  251. machineconfig/setup_linux/apps.sh +0 -66
  252. machineconfig/setup_linux/others/cli_installation.sh +0 -137
  253. machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh +0 -30
  254. machineconfig/setup_linux/ssh/openssh_all.sh +0 -25
  255. machineconfig/setup_linux/ssh/openssh_wsl.sh +0 -38
  256. machineconfig/setup_mac/apps.sh +0 -73
  257. machineconfig/setup_windows/apps.ps1 +0 -62
  258. machineconfig/setup_windows/others/obs.ps1 +0 -4
  259. machineconfig/setup_windows/ssh/add_identity.ps1 +0 -11
  260. machineconfig/utils/installer_utils/installer.py +0 -221
  261. machineconfig-7.50.dist-info/METADATA +0 -92
  262. /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
  263. /machineconfig/jobs/installer/{custom_dev → python_scripts}/__init__.py +0 -0
  264. /machineconfig/jobs/installer/{custom_dev → python_scripts}/alacritty.py +0 -0
  265. /machineconfig/jobs/installer/{custom_dev → python_scripts}/bypass_paywall.py +0 -0
  266. /machineconfig/jobs/installer/{custom_dev → python_scripts}/cursor.py +0 -0
  267. /machineconfig/jobs/installer/{custom_dev → python_scripts}/espanso.py +0 -0
  268. /machineconfig/jobs/installer/{custom → python_scripts}/gh.py +0 -0
  269. /machineconfig/jobs/installer/{custom_dev → python_scripts}/goes.py +0 -0
  270. /machineconfig/jobs/installer/{custom_dev → python_scripts}/lvim.py +0 -0
  271. /machineconfig/jobs/installer/{custom_dev → python_scripts}/redis.py +0 -0
  272. /machineconfig/{setup_linux/others → jobs/scripts/bash_scripts}/android.sh +0 -0
  273. /machineconfig/jobs/{installer/linux_scripts → scripts/bash_scripts}/lid.sh +0 -0
  274. /machineconfig/{scripts/python/nw → jobs/scripts/bash_scripts}/mount_drive +0 -0
  275. /machineconfig/{scripts/python/nw → jobs/scripts/bash_scripts}/mount_nw_drive +0 -0
  276. /machineconfig/{scripts/python/nw → jobs/scripts/bash_scripts}/mount_smb +0 -0
  277. /machineconfig/{scripts/linux/other → jobs/scripts/bash_scripts}/share_cloud.sh +0 -0
  278. /machineconfig/{scripts/linux/other → jobs/scripts/bash_scripts}/share_nfs +0 -0
  279. /machineconfig/{scripts/linux/other → jobs/scripts/bash_scripts}/start_docker +0 -0
  280. /machineconfig/{scripts → jobs/scripts/powershell_scripts}/Restore-ThunderbirdProfile.ps1 +0 -0
  281. /machineconfig/{setup_windows/others → jobs/scripts/powershell_scripts}/docker.ps1 +0 -0
  282. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/mount_nfs.ps1 +0 -0
  283. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/mount_nw.ps1 +0 -0
  284. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/mount_smb.ps1 +0 -0
  285. /machineconfig/{setup_windows/others → jobs/scripts/powershell_scripts}/power_options.ps1 +0 -0
  286. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/share_cloud.cmd +0 -0
  287. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/share_smb.ps1 +0 -0
  288. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/unlock_bitlocker.ps1 +0 -0
  289. /machineconfig/scripts/python/{nw → ai/utils}/__init__.py +0 -0
  290. /machineconfig/scripts/python/ai/{vscode_tasks.py → utils/vscode_tasks.py} +0 -0
  291. /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py} +0 -0
  292. /machineconfig/{setup_windows/wt_and_pwsh → scripts/python/helpers_network}/__init__.py +0 -0
  293. /machineconfig/scripts/python/{nw → helpers_network}/mount_nw_drive.py +0 -0
  294. /machineconfig/scripts/python/{nw → helpers_network}/onetimeshare.py +0 -0
  295. /machineconfig/scripts/python/{nw → helpers_network}/wifi_conn.py +0 -0
  296. /machineconfig/{setup_windows/wt_and_pwsh → settings/wt}/set_wt_settings.py +0 -0
  297. {machineconfig-7.50.dist-info → machineconfig-8.14.dist-info}/WHEEL +0 -0
  298. {machineconfig-7.50.dist-info → machineconfig-8.14.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,40 @@
1
1
  {
2
2
  "version": "1",
3
3
  "installers": [
4
+ {
5
+ "appName": "sysabc",
6
+ "repoURL": "CMD",
7
+ "doc": "ABC programs (package managers and other system essential tools)",
8
+ "fileNamePattern": {
9
+ "amd64": {
10
+ "linux": "sysabc.py",
11
+ "windows": "sysabc.py",
12
+ "macos": "sysabc.py"
13
+ },
14
+ "arm64": {
15
+ "linux": "sysabc.py",
16
+ "windows": "sysabc.py",
17
+ "macos": "sysabc.py"
18
+ }
19
+ }
20
+ },
21
+ {
22
+ "appName": "scrcpy",
23
+ "repoURL": "https://github.com/Genymobile/scrcpy",
24
+ "doc": "This application mirrors Android devices",
25
+ "fileNamePattern": {
26
+ "amd64": {
27
+ "linux": "scrcpy-linux-x86_64-v3.3.3.tar.gz",
28
+ "windows": "scrcpy-win64-v3.3.3.zip",
29
+ "macos": "scrcpy-macos-x86_64-v3.3.3.tar.gz"
30
+ },
31
+ "arm64": {
32
+ "linux": null,
33
+ "windows": null,
34
+ "macos": "scrcpy-macos-aarch64-v3.3.3.tar.gz"
35
+ }
36
+ }
37
+ },
4
38
  {
5
39
  "appName": "fx",
6
40
  "repoURL": "https://github.com/antonmedv/fx",
@@ -18,6 +52,23 @@
18
52
  }
19
53
  }
20
54
  },
55
+ {
56
+ "appName": "git",
57
+ "repoURL": "CMD",
58
+ "doc": "🧙‍♂️ Distributed version control system",
59
+ "fileNamePattern": {
60
+ "amd64": {
61
+ "linux": "sudo nala install git",
62
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
63
+ "macos": "brew install git"
64
+ },
65
+ "arm64": {
66
+ "linux": "sudo nala install git",
67
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
68
+ "macos": "brew install git"
69
+ }
70
+ }
71
+ },
21
72
  {
22
73
  "appName": "jq",
23
74
  "repoURL": "https://github.com/jqlang/jq",
@@ -69,23 +120,6 @@
69
120
  }
70
121
  }
71
122
  },
72
- {
73
- "appName": "timg",
74
- "repoURL": "CMD",
75
- "doc": "👁️ terminal image previewer.",
76
- "fileNamePattern": {
77
- "amd64": {
78
- "linux": "sudo apt install timg",
79
- "windows": null,
80
- "macos": "brew install timg"
81
- },
82
- "arm64": {
83
- "linux": "sudo apt install timg",
84
- "windows": null,
85
- "macos": "brew install timg"
86
- }
87
- }
88
- },
89
123
  {
90
124
  "appName": "diskonaut",
91
125
  "repoURL": "https://github.com/imsnif/diskonaut",
@@ -171,6 +205,40 @@
171
205
  }
172
206
  }
173
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
+ },
174
242
  {
175
243
  "appName": "zellij",
176
244
  "repoURL": "https://github.com/zellij-org/zellij",
@@ -324,6 +392,23 @@
324
392
  }
325
393
  }
326
394
  },
395
+ {
396
+ "appName": "rusty-rain",
397
+ "repoURL": "https://github.com/cowboy8625/rusty-rain",
398
+ "doc": "🌧️ cross-platform cmatrix-like terminal rain animation",
399
+ "fileNamePattern": {
400
+ "amd64": {
401
+ "linux": "x86_64-unknown-linux-musl-rusty-rain-{version}",
402
+ "macos": "x86_64-apple-darwin-rusty-rain-{version}",
403
+ "windows": "x86_64-pc-windows-gnu-rusty-rain-{version}.exe"
404
+ },
405
+ "arm64": {
406
+ "linux": "aarch64-unknown-linux-musl-rusty-rain-{version}",
407
+ "macos": "aarch64-apple-darwin-rusty-rain-{version}",
408
+ "windows": "x86_64-pc-windows-gnu-rusty-rain-{version}.exe"
409
+ }
410
+ }
411
+ },
327
412
  {
328
413
  "appName": "figlet-cli",
329
414
  "repoURL": "CMD",
@@ -398,14 +483,14 @@
398
483
  "doc": "🔄 devtunnel secure introspectable tunnels to localhost",
399
484
  "fileNamePattern": {
400
485
  "amd64": {
401
- "windows": "winget install --Id Microsoft.devtunnel --scope user",
486
+ "windows": "winget install --Id Microsoft.devtunnel --source winget --scope user --accept-package-agreements --accept-source-agreements",
402
487
  "linux": "curl -sL https://aka.ms/DevTunnelCliInstall | bash",
403
488
  "macos": null
404
489
  },
405
490
  "arm64": {
406
491
  "linux": "curl -sL https://aka.ms/DevTunnelCliInstall | bash",
407
492
  "macos": null,
408
- "windows": "winget install --Id Microsoft.devtunnel --scope user"
493
+ "windows": "winget install --Id Microsoft.devtunnel --source winget --scope user --accept-package-agreements --accept-source-agreements"
409
494
  }
410
495
  }
411
496
  },
@@ -494,6 +579,40 @@
494
579
  }
495
580
  }
496
581
  },
582
+ {
583
+ "appName": "cloudflare-warp",
584
+ "repoURL": "CMD",
585
+ "doc": "🌐 Cloudflare WARP VPN client",
586
+ "fileNamePattern": {
587
+ "amd64": {
588
+ "linux": null,
589
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
590
+ "macos": null
591
+ },
592
+ "arm64": {
593
+ "linux": null,
594
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
595
+ "macos": null
596
+ }
597
+ }
598
+ },
599
+ {
600
+ "appName": "warp-cli",
601
+ "repoURL": "CMD",
602
+ "doc": "🌐 Cloudflare WARP VPN client in the terminal",
603
+ "fileNamePattern": {
604
+ "amd64": {
605
+ "linux": "cloudflare_warp_cli.py",
606
+ "windows": "cloudflare_warp_cli.py",
607
+ "macos": "cloudflare_warp_cli.py"
608
+ },
609
+ "arm64": {
610
+ "linux": "cloudflare_warp_cli.py",
611
+ "windows": "cloudflare_warp_cli.py",
612
+ "macos": "cloudflare_warp_cli.py"
613
+ }
614
+ }
615
+ },
497
616
  {
498
617
  "appName": "cpufetch",
499
618
  "repoURL": "https://github.com/Dr-Noob/cpufetch",
@@ -596,6 +715,23 @@
596
715
  }
597
716
  }
598
717
  },
718
+ {
719
+ "appName": "tv",
720
+ "repoURL": "https://github.com/alexpasmantier/television",
721
+ "doc": "🔍 A fast and hackable fuzzy finder for the terminal.",
722
+ "fileNamePattern": {
723
+ "amd64": {
724
+ "linux": "tv-{version}-x86_64-unknown-linux-musl.tar.gz",
725
+ "macos": "tv-{version}-x86_64-apple-darwin.tar.gz",
726
+ "windows": "tv-{version}-x86_64-pc-windows-msvc.zip"
727
+ },
728
+ "arm64": {
729
+ "linux": "tv-{version}-aarch64-unknown-linux-gnu.tar.gz",
730
+ "macos": "tv-{version}-aarch64-apple-darwin.tar.gz",
731
+ "windows": null
732
+ }
733
+ }
734
+ },
599
735
  {
600
736
  "appName": "gitui",
601
737
  "repoURL": "https://github.com/gitui-org/gitui",
@@ -732,40 +868,6 @@
732
868
  }
733
869
  }
734
870
  },
735
- {
736
- "appName": "mods",
737
- "repoURL": "https://github.com/charmbracelet/mods/",
738
- "doc": "🤖 AI for the command line, built for pipelines",
739
- "fileNamePattern": {
740
- "amd64": {
741
- "linux": "mods_{version}_Linux_x86_64.tar.gz",
742
- "macos": "mods_{version}_Darwin_x86_64.tar.gz",
743
- "windows": "mods_{version}_Windows_x86_64.zip"
744
- },
745
- "arm64": {
746
- "linux": "mods_{version}_Linux_arm64.tar.gz",
747
- "macos": "mods_{version}_Darwin_arm64.tar.gz",
748
- "windows": "mods_{version}_Windows_arm64.zip"
749
- }
750
- }
751
- },
752
- {
753
- "appName": "mprocs",
754
- "repoURL": "https://github.com/pvolok/mprocs",
755
- "doc": "🖥️ Windows/Linux/macOS poorman's zellij",
756
- "fileNamePattern": {
757
- "amd64": {
758
- "linux": "mprocs-{version}-linux-x86_64-musl.tar.gz",
759
- "macos": "mprocs-{version}-darwin-x86_64.tar.gz",
760
- "windows": "mprocs-{version}-windows-x86_64.zip"
761
- },
762
- "arm64": {
763
- "linux": "mprocs-{version}-linux-aarch64-musl.tar.gz",
764
- "macos": "mprocs-{version}-darwin-aarch64.tar.gz",
765
- "windows": "mprocs-{version}-windows-x86_64.zip"
766
- }
767
- }
768
- },
769
871
  {
770
872
  "appName": "ouch",
771
873
  "repoURL": "https://github.com/ouch-org/ouch",
@@ -817,6 +919,40 @@
817
919
  }
818
920
  }
819
921
  },
922
+ {
923
+ "appName": "meilisearch",
924
+ "repoURL": "https://github.com/meilisearch/meilisearch",
925
+ "doc": "🔍 symantic search at lightening speed",
926
+ "fileNamePattern": {
927
+ "amd64": {
928
+ "linux": "meilisearch-linux-amd64",
929
+ "macos": "meilisearch-macos-amd64",
930
+ "windows": "meilisearch-windows-amd64.exe"
931
+ },
932
+ "arm64": {
933
+ "linux": "meilisearch-linux-aarch64",
934
+ "macos": "meilisearch-macos-aarch64",
935
+ "windows": "meilisearch-windows-aarch64.exe"
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "appName": "ast-grep",
941
+ "repoURL": "https://github.com/ast-grep/ast-grep",
942
+ "doc": "🔍 grep for code - search and rewrite code with ASTs",
943
+ "fileNamePattern": {
944
+ "amd64": {
945
+ "linux": "app-x86_64-unknown-linux-gnu.zip",
946
+ "macos": "app-x86_64-apple-darwin.zip",
947
+ "windows": "app-x86_64-pc-windows-msvc.zip"
948
+ },
949
+ "arm64": {
950
+ "linux": "app-aarch64-unknown-linux-gnu.zip",
951
+ "macos": "app-aarch64-apple-darwin.zip",
952
+ "windows": "app-aarch64-pc-windows-msvc.zip"
953
+ }
954
+ }
955
+ },
820
956
  {
821
957
  "appName": "rg",
822
958
  "repoURL": "https://github.com/BurntSushi/ripgrep",
@@ -851,6 +987,23 @@
851
987
  }
852
988
  }
853
989
  },
990
+ {
991
+ "appName": "parse",
992
+ "repoURL": "CMD",
993
+ "doc": "🔍 ripgrep + semantic search from https://github.com/run-llama/semtools",
994
+ "fileNamePattern": {
995
+ "amd64": {
996
+ "linux": "npm i -g @llamaindex/semtools",
997
+ "macos": "npm i -g @llamaindex/semtools",
998
+ "windows": "npm i -g @llamaindex/semtools"
999
+ },
1000
+ "arm64": {
1001
+ "linux": "npm i -g @llamaindex/semtools",
1002
+ "macos": "npm i -g @llamaindex/semtools",
1003
+ "windows": "npm i -g @llamaindex/semtools"
1004
+ }
1005
+ }
1006
+ },
854
1007
  {
855
1008
  "appName": "starship",
856
1009
  "repoURL": "https://github.com/starship/starship",
@@ -919,10 +1072,27 @@
919
1072
  }
920
1073
  }
921
1074
  },
1075
+ {
1076
+ "appName": "upterm",
1077
+ "repoURL": "https://github.com/owenthereal/upterm",
1078
+ "doc": "🌐 upterm is a terminal multiplexer that allows you to share your terminal session over the web.",
1079
+ "fileNamePattern": {
1080
+ "amd64": {
1081
+ "linux": "uptermd_linux_amd64.tar.gz",
1082
+ "macos": "upterm_darwin_amd64.tar.gz",
1083
+ "windows": null
1084
+ },
1085
+ "arm64": {
1086
+ "linux": "uptermd_linux_arm64.tar.gz",
1087
+ "macos": "upterm_darwin_arm64.tar.gz",
1088
+ "windows": null
1089
+ }
1090
+ }
1091
+ },
922
1092
  {
923
1093
  "appName": "viu",
924
1094
  "repoURL": "https://github.com/atanunq/viu",
925
- "doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
1095
+ "doc": "🖼️ A cli image viewer for the terminal (like chafa & ueberzugpp but in Rust)",
926
1096
  "fileNamePattern": {
927
1097
  "amd64": {
928
1098
  "linux": "viu-x86_64-unknown-linux-musl",
@@ -936,6 +1106,40 @@
936
1106
  }
937
1107
  }
938
1108
  },
1109
+ {
1110
+ "appName": "timg",
1111
+ "repoURL": "CMD",
1112
+ "doc": "👁️ terminal image previewer.",
1113
+ "fileNamePattern": {
1114
+ "amd64": {
1115
+ "linux": "sudo apt install timg",
1116
+ "windows": null,
1117
+ "macos": "brew install timg"
1118
+ },
1119
+ "arm64": {
1120
+ "linux": "sudo apt install timg",
1121
+ "windows": null,
1122
+ "macos": "brew install timg"
1123
+ }
1124
+ }
1125
+ },
1126
+ {
1127
+ "appName": "chafa",
1128
+ "repoURL": "CMD",
1129
+ "doc": "🖼️ Terminal graphics and image viewer",
1130
+ "fileNamePattern": {
1131
+ "amd64": {
1132
+ "linux": "sudo nala install chafa -y",
1133
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
1134
+ "macos": "brew install chafa"
1135
+ },
1136
+ "arm64": {
1137
+ "linux": "sudo nala install chafa -y",
1138
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
1139
+ "macos": "brew install chafa"
1140
+ }
1141
+ }
1142
+ },
939
1143
  {
940
1144
  "appName": "watchexec",
941
1145
  "repoURL": "https://github.com/watchexec/watchexec",
@@ -955,18 +1159,18 @@
955
1159
  },
956
1160
  {
957
1161
  "appName": "yazi",
958
- "repoURL": "https://github.com/sxyazi/yazi",
1162
+ "repoURL": "CMD",
959
1163
  "doc": "⚡ Blazing Fast Terminal File Manager.",
960
1164
  "fileNamePattern": {
961
1165
  "amd64": {
962
- "linux": "yazi-x86_64-unknown-linux-gnu.zip",
963
- "macos": "yazi-x86_64-apple-darwin.zip",
964
- "windows": "yazi-x86_64-pc-windows-msvc.zip"
1166
+ "linux": "yazi.py",
1167
+ "macos": "yazi.py",
1168
+ "windows": "yazi.py"
965
1169
  },
966
1170
  "arm64": {
967
- "linux": "yazi-aarch64-unknown-linux-gnu.zip",
968
- "macos": "yazi-aarch64-apple-darwin.zip",
969
- "windows": "yazi-aarch64-pc-windows-msvc.zip"
1171
+ "linux": "yazi.py",
1172
+ "macos": "yazi.py",
1173
+ "windows": "yazi.py"
970
1174
  }
971
1175
  }
972
1176
  },
@@ -1021,6 +1225,40 @@
1021
1225
  }
1022
1226
  }
1023
1227
  },
1228
+ {
1229
+ "appName": "youtube-dl",
1230
+ "repoURL": "CMD",
1231
+ "doc": "📥 Command-line program to download videos from YouTube and other sites. By https://github.com/ytdl-org/youtube-dl",
1232
+ "fileNamePattern": {
1233
+ "amd64": {
1234
+ "linux": "https://yt-dl.org/downloads/latest/youtube-dl",
1235
+ "macos": "https://yt-dl.org/downloads/latest/youtube-dl",
1236
+ "windows": "https://yt-dl.org/latest/youtube-dl.exe"
1237
+ },
1238
+ "arm64": {
1239
+ "linux": "https://yt-dl.org/downloads/latest/youtube-dl",
1240
+ "macos": "https://yt-dl.org/downloads/latest/youtube-dl",
1241
+ "windows": "https://yt-dl.org/latest/youtube-dl.exe"
1242
+ }
1243
+ }
1244
+ },
1245
+ {
1246
+ "appName": "yt-dlp",
1247
+ "repoURL": "CMD",
1248
+ "doc": "📥 A youtube-dl fork with additional features and fixes, by https://github.com/yt-dlp/yt-dlp",
1249
+ "fileNamePattern": {
1250
+ "amd64": {
1251
+ "linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp",
1252
+ "macos": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_macos",
1253
+ "windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"
1254
+ },
1255
+ "arm64": {
1256
+ "linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_musllinux_aarch64",
1257
+ "macos": null,
1258
+ "windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_arm64.exe"
1259
+ }
1260
+ }
1261
+ },
1024
1262
  {
1025
1263
  "appName": "termusic",
1026
1264
  "repoURL": "https://github.com/tramhao/termusic",
@@ -1131,12 +1369,12 @@
1131
1369
  "amd64": {
1132
1370
  "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1133
1371
  "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1134
- "windows": "winget install -e --id Slackadays.Clipboard"
1372
+ "windows": "winget install -e --id Slackadays.Clipboard --source winget --scope user --accept-package-agreements --accept-source-agreements"
1135
1373
  },
1136
1374
  "arm64": {
1137
1375
  "linux": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1138
1376
  "macos": "curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | sh",
1139
- "windows": "winget install -e --id Slackadays.Clipboard"
1377
+ "windows": "winget install -e --id Slackadays.Clipboard --source winget --scope user --accept-package-agreements --accept-source-agreements"
1140
1378
  }
1141
1379
  }
1142
1380
  },
@@ -1226,61 +1464,129 @@
1226
1464
  }
1227
1465
  },
1228
1466
  {
1229
- "appName": "DBeaver",
1230
- "repoURL": "https://github.com/dbeaver/dbeaver",
1231
- "doc": "🗃️ Free universal database tool and SQL client.",
1467
+ "appName": "sqlite3",
1468
+ "repoURL": "CMD",
1469
+ "doc": "A cli for sqlite",
1232
1470
  "fileNamePattern": {
1233
1471
  "amd64": {
1234
- "linux": "dbeaver-ce-{version}-linux.gtk.x86_64.tar.gz",
1472
+ "linux": "sudo nala install sqlite3 -y",
1235
1473
  "macos": null,
1236
1474
  "windows": null
1237
1475
  },
1238
1476
  "arm64": {
1239
- "linux": "dbeaver-ce-{version}-linux.gtk.aarch64.tar.gz",
1477
+ "linux": null,
1240
1478
  "macos": null,
1241
1479
  "windows": null
1242
1480
  }
1243
1481
  }
1244
1482
  },
1245
1483
  {
1246
- "appName": "rainfrog",
1247
- "repoURL": "https://github.com/achristmascarl/rainfrog",
1248
- "doc": "🗃️ TUI DB Visualizer",
1484
+ "appName": "postgresql-client",
1485
+ "repoURL": "CMD",
1486
+ "doc": "A cli for postgresql",
1249
1487
  "fileNamePattern": {
1250
1488
  "amd64": {
1251
- "linux": "rainfrog-{version}-x86_64-unknown-linux-musl.tar.gz",
1489
+ "linux": "sudo nala install postgresql-client -y",
1252
1490
  "macos": null,
1253
1491
  "windows": null
1254
1492
  },
1255
1493
  "arm64": {
1256
- "linux": "rainfrog-{version}-aarch64-unknown-linux-musl.tar.gz",
1494
+ "linux": null,
1257
1495
  "macos": null,
1258
1496
  "windows": null
1259
1497
  }
1260
1498
  }
1261
1499
  },
1262
1500
  {
1263
- "appName": "pgweb",
1264
- "repoURL": "https://github.com/sosedoff/pgweb/",
1265
- "doc": "🗃️ Web-based PostgreSQL database browser written in Go",
1501
+ "appName": "redis-cli",
1502
+ "repoURL": "CMD",
1503
+ "doc": "A cli for redis",
1266
1504
  "fileNamePattern": {
1267
1505
  "amd64": {
1268
- "linux": "pgweb-linux-amd64.zip",
1269
- "macos": "pgweb_darwin_amd64.zip",
1270
- "windows": "pgweb_windows_amd64.zip"
1506
+ "linux": "sudo nala install redis-tools -y",
1507
+ "macos": null,
1508
+ "windows": null
1271
1509
  },
1272
1510
  "arm64": {
1273
- "linux": "pgweb-linux-arm64.zip",
1274
- "macos": "pgweb_darwin_arm64.zip",
1275
- "windows": "pgweb_windows_arm64.zip"
1511
+ "linux": null,
1512
+ "macos": null,
1513
+ "windows": null
1276
1514
  }
1277
1515
  }
1278
1516
  },
1279
1517
  {
1280
- "appName": "dbgate",
1281
- "repoURL": "https://github.com/dbgate/dbgate",
1282
- "doc": "🗃️ Cross-platform database manager for developers and database administrators",
1283
- "fileNamePattern": {
1518
+ "appName": "DBeaver",
1519
+ "repoURL": "https://github.com/dbeaver/dbeaver",
1520
+ "doc": "🗃️ Free universal database tool and SQL client.",
1521
+ "fileNamePattern": {
1522
+ "amd64": {
1523
+ "linux": "dbeaver-ce-{version}-linux.gtk.x86_64.tar.gz",
1524
+ "macos": null,
1525
+ "windows": null
1526
+ },
1527
+ "arm64": {
1528
+ "linux": "dbeaver-ce-{version}-linux.gtk.aarch64.tar.gz",
1529
+ "macos": null,
1530
+ "windows": null
1531
+ }
1532
+ }
1533
+ },
1534
+ {
1535
+ "appName": "rainfrog",
1536
+ "repoURL": "https://github.com/achristmascarl/rainfrog",
1537
+ "doc": "🗃️ TUI DB Visualizer",
1538
+ "fileNamePattern": {
1539
+ "amd64": {
1540
+ "linux": "rainfrog-{version}-x86_64-unknown-linux-musl.tar.gz",
1541
+ "macos": null,
1542
+ "windows": null
1543
+ },
1544
+ "arm64": {
1545
+ "linux": "rainfrog-{version}-aarch64-unknown-linux-musl.tar.gz",
1546
+ "macos": null,
1547
+ "windows": null
1548
+ }
1549
+ }
1550
+ },
1551
+ {
1552
+ "appName": "lazysql",
1553
+ "repoURL": "https://github.com/jorgerojas26/lazysql",
1554
+ "doc": "🗃️ TUI DB Visualizer",
1555
+ "fileNamePattern": {
1556
+ "amd64": {
1557
+ "linux": "lazysql_Linux_x86_64.tar.gz",
1558
+ "macos": "lazysql_Darwin_x86_64.tar.gz",
1559
+ "windows": "lazysql_Windows_x86_64.zip"
1560
+ },
1561
+ "arm64": {
1562
+ "linux": "lazysql_Linux_arm64.tar.gz",
1563
+ "macos": "lazysql_Darwin_arm64.tar.gz",
1564
+ "windows": "lazysql_Windows_arm64.zip"
1565
+ }
1566
+ }
1567
+ },
1568
+ {
1569
+ "appName": "pgweb",
1570
+ "repoURL": "https://github.com/sosedoff/pgweb/",
1571
+ "doc": "🗃️ Web-based PostgreSQL database browser written in Go",
1572
+ "fileNamePattern": {
1573
+ "amd64": {
1574
+ "linux": "pgweb-linux-amd64.zip",
1575
+ "macos": "pgweb_darwin_amd64.zip",
1576
+ "windows": "pgweb_windows_amd64.zip"
1577
+ },
1578
+ "arm64": {
1579
+ "linux": "pgweb-linux-arm64.zip",
1580
+ "macos": "pgweb_darwin_arm64.zip",
1581
+ "windows": "pgweb_windows_arm64.zip"
1582
+ }
1583
+ }
1584
+ },
1585
+ {
1586
+ "appName": "dbgate",
1587
+ "repoURL": "https://github.com/dbgate/dbgate",
1588
+ "doc": "🗃️ Cross-platform database manager for developers and database administrators",
1589
+ "fileNamePattern": {
1284
1590
  "amd64": {
1285
1591
  "linux": "dbgate-{version}-linux_x64.tar.gz",
1286
1592
  "macos": "dbgate-{version}-mac_x64.zip",
@@ -1310,6 +1616,23 @@
1310
1616
  }
1311
1617
  }
1312
1618
  },
1619
+ {
1620
+ "appName": "gonzo",
1621
+ "repoURL": "https://github.com/control-theory/gonzo",
1622
+ "doc": "🕶️ Gonzo is a Go-based TUI for real-time log analysis, like nerdlog, caps-log and lnav.",
1623
+ "fileNamePattern": {
1624
+ "amd64": {
1625
+ "linux": "gonzo-{version}-linux-amd64.tar.gz",
1626
+ "macos": "gonzo-{version}-darwin-amd64.tar.gz",
1627
+ "windows": "gonzo-{version}-windows-amd64.zip"
1628
+ },
1629
+ "arm64": {
1630
+ "linux": "gonzo-{version}-linux-arm64.tar.gz",
1631
+ "macos": "gonzo-{version}-darwin-arm64.tar.gz",
1632
+ "windows": "gonzo-{version}-windows-arm64.zip"
1633
+ }
1634
+ }
1635
+ },
1313
1636
  {
1314
1637
  "appName": "cpz",
1315
1638
  "repoURL": "https://github.com/SUPERCILEX/fuc",
@@ -1701,6 +2024,23 @@
1701
2024
  }
1702
2025
  }
1703
2026
  },
2027
+ {
2028
+ "appName": "qrterminal",
2029
+ "repoURL": "https://github.com/mdp/qrterminal",
2030
+ "doc": "📷 qr code terminal from string",
2031
+ "fileNamePattern": {
2032
+ "amd64": {
2033
+ "linux": "qrterminal_Linux_x86_64.tar.gz",
2034
+ "macos": "qrterminal_Darwin_x86_64.tar.gz",
2035
+ "windows": "qrterminal_Windows_x86_64.zip"
2036
+ },
2037
+ "arm64": {
2038
+ "linux": "qrterminal_Linux_arm64.tar.gz",
2039
+ "macos": "qrterminal_Darwin_arm64.tar.gz",
2040
+ "windows": "qrterminal_Windows_arm64.zip"
2041
+ }
2042
+ }
2043
+ },
1704
2044
  {
1705
2045
  "appName": "termscp",
1706
2046
  "repoURL": "https://github.com/veeso/termscp",
@@ -1720,18 +2060,18 @@
1720
2060
  },
1721
2061
  {
1722
2062
  "appName": "qr",
1723
- "repoURL": "pip install qrcode",
2063
+ "repoURL": "CMD",
1724
2064
  "doc": "🔲 qr code generator. String to qr code.",
1725
2065
  "fileNamePattern": {
1726
2066
  "amd64": {
1727
- "linux": null,
1728
- "macos": null,
1729
- "windows": null
2067
+ "linux": "uv tool install qrcode",
2068
+ "macos": "uv tool install qrcode",
2069
+ "windows": "uv tool install qrcode"
1730
2070
  },
1731
2071
  "arm64": {
1732
- "linux": null,
1733
- "macos": null,
1734
- "windows": null
2072
+ "linux": "uv tool install qrcode",
2073
+ "macos": "uv tool install qrcode",
2074
+ "windows": "uv tool install qrcode"
1735
2075
  }
1736
2076
  }
1737
2077
  },
@@ -1759,12 +2099,12 @@
1759
2099
  "fileNamePattern": {
1760
2100
  "amd64": {
1761
2101
  "linux": "miniserve-{version}-x86_64-unknown-linux-musl",
1762
- "darwin": "miniserve-{version}-x86_64-apple-darwin",
2102
+ "macos": "miniserve-{version}-x86_64-apple-darwin",
1763
2103
  "windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
1764
2104
  },
1765
2105
  "arm64": {
1766
2106
  "linux": "miniserve-{version}-aarch64-unknown-linux-musl",
1767
- "darwin": "miniserve-{version}-aarch64-apple-darwin",
2107
+ "macos": "miniserve-{version}-aarch64-apple-darwin",
1768
2108
  "windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
1769
2109
  }
1770
2110
  }
@@ -1890,18 +2230,18 @@
1890
2230
  },
1891
2231
  {
1892
2232
  "appName": "tokei",
1893
- "repoURL": "https://github.com/XAMPPRocky/tokei",
2233
+ "repoURL": "CMD",
1894
2234
  "doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
1895
2235
  "fileNamePattern": {
1896
2236
  "amd64": {
1897
- "linux": "tokei-x86_64-unknown-linux-gnu.tar.gz",
1898
- "macos": "tokei-x86_64-apple-darwin.tar.gz",
1899
- "windows": "tokei-x86_64-pc-windows-msvc.zip"
2237
+ "linux": "cargo install tokei",
2238
+ "macos": "brew install tokei",
2239
+ "windows": "winget install XAMPPRocky.tokei --source winget --scope user --accept-package-agreements --accept-source-agreements"
1900
2240
  },
1901
2241
  "arm64": {
1902
- "linux": "tokei-aarch64-unknown-linux-gnu.tar.gz",
1903
- "macos": "tokei-aarch64-apple-darwin.tar.gz",
1904
- "windows": null
2242
+ "linux": "cargo install tokei",
2243
+ "macos": "brew install tokei",
2244
+ "windows": "winget install XAMPPRocky.tokei --source winget --scope user --accept-package-agreements --accept-source-agreements"
1905
2245
  }
1906
2246
  }
1907
2247
  },
@@ -1979,14 +2319,14 @@
1979
2319
  "doc": "📈 analyze Git repositories and generate a visual contributions graph",
1980
2320
  "fileNamePattern": {
1981
2321
  "amd64": {
1982
- "linux": null,
1983
- "macos": null,
1984
- "windows": null
2322
+ "linux": "gitcs_linux_amd64",
2323
+ "macos": "gitcs_darwin_amd64",
2324
+ "windows": "gitcs_windows_amd64.exe"
1985
2325
  },
1986
2326
  "arm64": {
1987
- "linux": null,
2327
+ "linux": "gitcs_linux_386",
1988
2328
  "macos": null,
1989
- "windows": null
2329
+ "windows": "gitcs_windows_386.exe"
1990
2330
  }
1991
2331
  }
1992
2332
  },
@@ -2013,12 +2353,12 @@
2013
2353
  "doc": "📚 An interactive cheatsheet tool for the command-line",
2014
2354
  "fileNamePattern": {
2015
2355
  "amd64": {
2016
- "linux": null,
2356
+ "linux": "navi-v{version}-x86_64-unknown-linux-musl.tar.gz",
2017
2357
  "macos": null,
2018
- "windows": null
2358
+ "windows": "navi-v{version}-x86_64-pc-windows-gnu.zip"
2019
2359
  },
2020
2360
  "arm64": {
2021
- "linux": null,
2361
+ "linux": "navi-v{version}-aarch64-unknown-linux-gnu.tar.gz",
2022
2362
  "macos": null,
2023
2363
  "windows": null
2024
2364
  }
@@ -2030,13 +2370,13 @@
2030
2370
  "doc": "⚡ A very fast implementation of tldr in Rust",
2031
2371
  "fileNamePattern": {
2032
2372
  "amd64": {
2033
- "linux": null,
2034
- "macos": null,
2035
- "windows": null
2373
+ "linux": "tealdeer-linux-x86_64-musl",
2374
+ "macos": "tealdeer-macos-x86_64",
2375
+ "windows": "tealdeer-windows-x86_64-msvc.exe"
2036
2376
  },
2037
2377
  "arm64": {
2038
- "linux": null,
2039
- "macos": null,
2378
+ "linux": "tealdeer-linux-aarch64-musl",
2379
+ "macos": "tealdeer-macos-aarch64",
2040
2380
  "windows": null
2041
2381
  }
2042
2382
  }
@@ -2047,14 +2387,82 @@
2047
2387
  "doc": "🔍 A simple network sniffer in Rust",
2048
2388
  "fileNamePattern": {
2049
2389
  "amd64": {
2050
- "linux": null,
2051
- "macos": null,
2052
- "windows": null
2390
+ "linux": "Sniffnet_LinuxAppImage_amd64.AppImage",
2391
+ "macos": "Sniffnet_macOS_Intel.dmg",
2392
+ "windows": "Sniffnet_Windows_x64.msi"
2053
2393
  },
2054
2394
  "arm64": {
2055
- "linux": null,
2056
- "macos": null,
2057
- "windows": null
2395
+ "linux": "Sniffnet_LinuxAppImage_arm64.AppImage",
2396
+ "macos": "Sniffnet_macOS_AppleSilicon.dmg",
2397
+ "windows": "Sniffnet_Windows_arm64.msi"
2398
+ }
2399
+ }
2400
+ },
2401
+ {
2402
+ "appName": "trippy",
2403
+ "repoURL": "https://github.com/fujiapple852/trippy",
2404
+ "doc": "🧭 A network diagnostic tool combining traceroute and ping)",
2405
+ "fileNamePattern": {
2406
+ "amd64": {
2407
+ "linux": "trippy-{version}-x86_64-unknown-linux-musl.tar.gz",
2408
+ "macos": "trippy-{version}-x86_64-apple-darwin.tar.gz",
2409
+ "windows": "trippy-{version}-x86_64-pc-windows-msvc.zip"
2410
+ },
2411
+ "arm64": {
2412
+ "linux": "trippy-{version}-aarch64-unknown-linux-musl.tar.gz",
2413
+ "macos": "trippy-{version}-aarch64-apple-darwin.tar.gz",
2414
+ "windows": "trippy-{version}-aarch64-pc-windows-msvc.zip"
2415
+ }
2416
+ }
2417
+ },
2418
+ {
2419
+ "appName": "oryx",
2420
+ "repoURL": "https://github.com/pythops/oryx",
2421
+ "doc": "🕵️‍♂️ TUI for sniffing network traffic using eBPF on Linux",
2422
+ "fileNamePattern": {
2423
+ "amd64": {
2424
+ "linux": "oryx-x86_64-unknown-linux-gnu.tar.gz",
2425
+ "macos": "",
2426
+ "windows": ""
2427
+ },
2428
+ "arm64": {
2429
+ "linux": "oryx-aarch64-unknown-linux-gnu.tar.gz",
2430
+ "macos": "",
2431
+ "windows": ""
2432
+ }
2433
+ }
2434
+ },
2435
+ {
2436
+ "appName": "tufw",
2437
+ "repoURL": "https://github.com/peltho/tufw",
2438
+ "doc": "📋 Terminal UI for UFW (Uncomplicated Firewall) on Linux",
2439
+ "fileNamePattern": {
2440
+ "amd64": {
2441
+ "linux": "tufw_{version}_linux_amd64.tar.gz",
2442
+ "macos": "",
2443
+ "windows": ""
2444
+ },
2445
+ "arm64": {
2446
+ "linux": "tufw_{version}_linux_arm64.tar.gz",
2447
+ "macos": "",
2448
+ "windows": ""
2449
+ }
2450
+ }
2451
+ },
2452
+ {
2453
+ "appName": "netscanner",
2454
+ "repoURL": "https://github.com/Chleba/netscanner",
2455
+ "doc": "📡 Terminal network scanner & diagnostic tool with TUI (v0.6.3)",
2456
+ "fileNamePattern": {
2457
+ "amd64": {
2458
+ "linux": "netscanner-{version}-x86_64-unknown-linux-gnu.tar.gz",
2459
+ "macos": "netscanner-{version}-x86_64-apple-darwin.tar.gz",
2460
+ "windows": "netscanner-{version}-x86_64-pc-windows-msvc.zip"
2461
+ },
2462
+ "arm64": {
2463
+ "linux": "netscanner-{version}-aarch64-unknown-linux-gnu.tar.gz",
2464
+ "macos": "netscanner-{version}-aarch64-apple-darwin.tar.gz",
2465
+ "windows": "netscanner-{version}-aarch64-pc-windows-msvc.zip"
2058
2466
  }
2059
2467
  }
2060
2468
  },
@@ -2064,13 +2472,13 @@
2064
2472
  "doc": "⚡ A command-line benchmarking tool",
2065
2473
  "fileNamePattern": {
2066
2474
  "amd64": {
2067
- "linux": null,
2068
- "macos": null,
2069
- "windows": null
2475
+ "linux": "hyperfine-v{version}-x86_64-unknown-linux-gnu.tar.gz",
2476
+ "macos": "hyperfine-v{version}-x86_64-apple-darwin.tar.gz",
2477
+ "windows": "hyperfine-v{version}-x86_64-pc-windows-msvc.zip"
2070
2478
  },
2071
2479
  "arm64": {
2072
- "linux": null,
2073
- "macos": null,
2480
+ "linux": "hyperfine-v{version}-aarch64-unknown-linux-gnu.tar.gz",
2481
+ "macos": "hyperfine-v{version}-aarch64-apple-darwin.tar.gz",
2074
2482
  "windows": null
2075
2483
  }
2076
2484
  }
@@ -2081,14 +2489,14 @@
2081
2489
  "doc": "🤖 Get up and running with large language models locally.",
2082
2490
  "fileNamePattern": {
2083
2491
  "amd64": {
2084
- "linux": null,
2085
- "macos": null,
2086
- "windows": null
2492
+ "linux": "ollama-linux-amd64.tgz",
2493
+ "macos": "Ollama.dmg",
2494
+ "windows": "OllamaSetup.exe"
2087
2495
  },
2088
2496
  "arm64": {
2089
- "linux": null,
2090
- "macos": null,
2091
- "windows": null
2497
+ "linux": "ollama-linux-arm64.tgz",
2498
+ "macos": "Ollama.dmg",
2499
+ "windows": "ollama-windows-arm64.zip"
2092
2500
  }
2093
2501
  }
2094
2502
  },
@@ -2098,8 +2506,8 @@
2098
2506
  "doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
2099
2507
  "fileNamePattern": {
2100
2508
  "amd64": {
2101
- "linux": null,
2102
- "macos": null,
2509
+ "linux": "cointop_{version}_linux_amd64.tar.gz",
2510
+ "macos": "cointop_{version}_darwin_amd64.tar.gz",
2103
2511
  "windows": null
2104
2512
  },
2105
2513
  "arm64": {
@@ -2115,14 +2523,14 @@
2115
2523
  "doc": "🖥️ Text-based desktop environment inside your terminal",
2116
2524
  "fileNamePattern": {
2117
2525
  "amd64": {
2118
- "linux": null,
2119
- "macos": null,
2120
- "windows": null
2526
+ "linux": "vtm_linux_x86_64.tar.7z",
2527
+ "macos": "vtm_macos_any.tar.7z",
2528
+ "windows": "vtm_windows_x86_64.7z"
2121
2529
  },
2122
2530
  "arm64": {
2123
- "linux": null,
2124
- "macos": null,
2125
- "windows": null
2531
+ "linux": "vtm_linux_arm64.tar.7z",
2532
+ "macos": "vtm_macos_any.tar.7z",
2533
+ "windows": "vtm_windows_arm64.7z"
2126
2534
  }
2127
2535
  }
2128
2536
  },
@@ -2132,12 +2540,12 @@
2132
2540
  "doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
2133
2541
  "fileNamePattern": {
2134
2542
  "amd64": {
2135
- "linux": null,
2136
- "macos": null,
2137
- "windows": null
2543
+ "linux": "eDEX-UI-Linux-x86_64.AppImage",
2544
+ "macos": "eDEX-UI-macOS-x64.dmg",
2545
+ "windows": "eDEX-UI-Windows-x64.exe"
2138
2546
  },
2139
2547
  "arm64": {
2140
- "linux": null,
2548
+ "linux": "eDEX-UI-Linux-arm64.AppImage",
2141
2549
  "macos": null,
2142
2550
  "windows": null
2143
2551
  }
@@ -2149,9 +2557,9 @@
2149
2557
  "doc": "💻 Terminal emulator",
2150
2558
  "fileNamePattern": {
2151
2559
  "amd64": {
2152
- "linux": null,
2153
- "macos": null,
2154
- "windows": null
2560
+ "linux": "ExtratermQt-{version}.glibc2.34-x86_64.AppImage",
2561
+ "macos": "ExtratermQt_{version}.dmg",
2562
+ "windows": "extratermqt-setup-{version}.exe"
2155
2563
  },
2156
2564
  "arm64": {
2157
2565
  "linux": null,
@@ -2166,8 +2574,8 @@
2166
2574
  "doc": "🐚 Nushell, a cross-platform shell in Rust.",
2167
2575
  "fileNamePattern": {
2168
2576
  "amd64": {
2169
- "linux": "nu-0.108.0-x86_64-unknown-linux-gnu.tar.gz",
2170
- "macos": "nu-0.108.0-x86_64-apple-darwin.tar.gz",
2577
+ "linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
2578
+ "macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
2171
2579
  "windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
2172
2580
  },
2173
2581
  "arm64": {
@@ -2183,14 +2591,14 @@
2183
2591
  "doc": "🦊 WebDriver for Firefox.",
2184
2592
  "fileNamePattern": {
2185
2593
  "amd64": {
2186
- "linux": null,
2187
- "macos": null,
2188
- "windows": null
2594
+ "linux": "geckodriver-v{version}-linux64.tar.gz",
2595
+ "macos": "geckodriver-v{version}-macos.tar.gz",
2596
+ "windows": "geckodriver-v{version}-win64.zip"
2189
2597
  },
2190
2598
  "arm64": {
2191
- "linux": null,
2192
- "macos": null,
2193
- "windows": null
2599
+ "linux": "geckodriver-v{version}-linux-aarch64.tar.gz",
2600
+ "macos": "geckodriver-v{version}-macos-aarch64.tar.gz",
2601
+ "windows": "geckodriver-v{version}-win-aarch64.zip"
2194
2602
  }
2195
2603
  }
2196
2604
  },
@@ -2201,12 +2609,12 @@
2201
2609
  "fileNamePattern": {
2202
2610
  "amd64": {
2203
2611
  "linux": "ngrok.sh",
2204
- "windows": "winget install ngrok -s msstore",
2612
+ "windows": "winget install ngrok --source winget --scope user --accept-package-agreements --accept-source-agreements",
2205
2613
  "macos": "brew install ngrok"
2206
2614
  },
2207
2615
  "arm64": {
2208
2616
  "linux": "ngrok.sh",
2209
- "windows": "winget install ngrok -s msstore",
2617
+ "windows": "winget install ngrok --source winget --scope user --accept-package-agreements --accept-source-agreements",
2210
2618
  "macos": "brew install ngrok"
2211
2619
  }
2212
2620
  }
@@ -2246,6 +2654,23 @@
2246
2654
  }
2247
2655
  }
2248
2656
  },
2657
+ {
2658
+ "appName": "mods",
2659
+ "repoURL": "https://github.com/charmbracelet/mods/",
2660
+ "doc": "🤖 AI for the command line, built for pipelines",
2661
+ "fileNamePattern": {
2662
+ "amd64": {
2663
+ "linux": "mods_{version}_Linux_x86_64.tar.gz",
2664
+ "macos": "mods_{version}_Darwin_x86_64.tar.gz",
2665
+ "windows": "mods_{version}_Windows_x86_64.zip"
2666
+ },
2667
+ "arm64": {
2668
+ "linux": "mods_{version}_Linux_arm64.tar.gz",
2669
+ "macos": "mods_{version}_Darwin_arm64.tar.gz",
2670
+ "windows": "mods_{version}_Windows_arm64.zip"
2671
+ }
2672
+ }
2673
+ },
2249
2674
  {
2250
2675
  "appName": "aichat",
2251
2676
  "repoURL": "https://github.com/sigoden/aichat",
@@ -2382,6 +2807,23 @@
2382
2807
  }
2383
2808
  }
2384
2809
  },
2810
+ {
2811
+ "appName": "codex",
2812
+ "repoURL": "CMD",
2813
+ "doc": "Terminal-based CLI agents from openai designed specifically for openai models.",
2814
+ "fileNamePattern": {
2815
+ "amd64": {
2816
+ "linux": "npm i -g @openai/codex",
2817
+ "windows": "npm install -g @openai/codex",
2818
+ "macos": "npm install -g @openai/codex"
2819
+ },
2820
+ "arm64": {
2821
+ "linux": "npm install -g @openai/codex",
2822
+ "windows": "npm install -g @openai/codex",
2823
+ "macos": "npm install -g @openai/codex"
2824
+ }
2825
+ }
2826
+ },
2385
2827
  {
2386
2828
  "appName": "auggie",
2387
2829
  "repoURL": "CMD",
@@ -2400,19 +2842,36 @@
2400
2842
  }
2401
2843
  },
2402
2844
  {
2403
- "appName": "warp",
2845
+ "appName": "warp-terminal",
2404
2846
  "repoURL": "CMD",
2405
2847
  "doc": "Modern terminal with AI-powered features",
2848
+ "fileNamePattern": {
2849
+ "amd64": {
2850
+ "linux": "https://app.warp.dev/get_warp?package=deb",
2851
+ "windows": "winget install Warp.Warp --source winget --scope user --accept-package-agreements --accept-source-agreements",
2852
+ "macos": "brew install --cask warp"
2853
+ },
2854
+ "arm64": {
2855
+ "linux": "https://app.warp.dev/get_warp?package=deb_arm64",
2856
+ "windows": "winget install Warp.Warp --source winget --scope user --accept-package-agreements --accept-source-agreements",
2857
+ "macos": "brew install --cask warp"
2858
+ }
2859
+ }
2860
+ },
2861
+ {
2862
+ "appName": "warp-terminal-cli",
2863
+ "repoURL": "CMD",
2864
+ "doc": "Modern terminal cli with AI-powered features",
2406
2865
  "fileNamePattern": {
2407
2866
  "amd64": {
2408
2867
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
2409
2868
  "windows": null,
2410
- "macos": null
2869
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2411
2870
  },
2412
2871
  "arm64": {
2413
2872
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
2414
2873
  "windows": null,
2415
- "macos": null
2874
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2416
2875
  }
2417
2876
  }
2418
2877
  },
@@ -2485,7 +2944,7 @@
2485
2944
  }
2486
2945
  },
2487
2946
  {
2488
- "appName": "Brave",
2947
+ "appName": "brave",
2489
2948
  "repoURL": "CMD",
2490
2949
  "doc": "Privacy-focused web browser with built-in ad blocking",
2491
2950
  "fileNamePattern": {
@@ -2553,7 +3012,7 @@
2553
3012
  }
2554
3013
  },
2555
3014
  {
2556
- "appName": "Gorilla",
3015
+ "appName": "gorilla",
2557
3016
  "repoURL": "https://github.com/ShishirPatil/gorilla",
2558
3017
  "doc": "natural language to API",
2559
3018
  "fileNamePattern": {
@@ -2604,7 +3063,7 @@
2604
3063
  }
2605
3064
  },
2606
3065
  {
2607
- "appName": "Redis",
3066
+ "appName": "redis",
2608
3067
  "repoURL": "CMD",
2609
3068
  "doc": "submillisecond fast key-value db",
2610
3069
  "fileNamePattern": {
@@ -2621,7 +3080,7 @@
2621
3080
  }
2622
3081
  },
2623
3082
  {
2624
- "appName": "Wezterm",
3083
+ "appName": "wezterm",
2625
3084
  "repoURL": "CMD",
2626
3085
  "doc": "Modern, GPU-accelerated terminal emulator",
2627
3086
  "fileNamePattern": {
@@ -2687,6 +3146,567 @@
2687
3146
  "macos": "hx.py"
2688
3147
  }
2689
3148
  }
3149
+ },
3150
+ {
3151
+ "appName": "file",
3152
+ "repoURL": "CMD",
3153
+ "doc": "🔍 File type identification utility",
3154
+ "fileNamePattern": {
3155
+ "amd64": {
3156
+ "linux": null,
3157
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --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 \"File\" --Id \"GnuWin32.File\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3163
+ "macos": null
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "appName": "oh-my-posh",
3169
+ "repoURL": "CMD",
3170
+ "doc": "✨ Prompt theme engine for any shell",
3171
+ "fileNamePattern": {
3172
+ "amd64": {
3173
+ "linux": null,
3174
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --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 \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3180
+ "macos": null
3181
+ }
3182
+ }
3183
+ },
3184
+ {
3185
+ "appName": "vsredistrib",
3186
+ "repoURL": "CMD",
3187
+ "doc": "📦 Microsoft Visual C++ Redistributable",
3188
+ "fileNamePattern": {
3189
+ "amd64": {
3190
+ "linux": null,
3191
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --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 \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3197
+ "macos": null
3198
+ }
3199
+ }
3200
+ },
3201
+ {
3202
+ "appName": "vsbuildtools",
3203
+ "repoURL": "CMD",
3204
+ "doc": "🔨 Visual Studio Build Tools",
3205
+ "fileNamePattern": {
3206
+ "amd64": {
3207
+ "linux": null,
3208
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --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 \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3214
+ "macos": null
3215
+ }
3216
+ }
3217
+ },
3218
+ {
3219
+ "appName": "codeblocks",
3220
+ "repoURL": "CMD",
3221
+ "doc": "💻 IDE for C/C++",
3222
+ "fileNamePattern": {
3223
+ "amd64": {
3224
+ "linux": null,
3225
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --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 \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3231
+ "macos": null
3232
+ }
3233
+ }
3234
+ },
3235
+ {
3236
+ "appName": "make",
3237
+ "repoURL": "CMD",
3238
+ "doc": "🔧 GNU Make utility for building projects",
3239
+ "fileNamePattern": {
3240
+ "amd64": {
3241
+ "linux": null,
3242
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3243
+ "macos": null
3244
+ },
3245
+ "arm64": {
3246
+ "linux": null,
3247
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3248
+ "macos": null
3249
+ }
3250
+ }
3251
+ },
3252
+ {
3253
+ "appName": "gnupg",
3254
+ "repoURL": "CMD",
3255
+ "doc": "🔐 GNU Privacy Guard encryption tool",
3256
+ "fileNamePattern": {
3257
+ "amd64": {
3258
+ "linux": null,
3259
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --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 \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3265
+ "macos": null
3266
+ }
3267
+ }
3268
+ },
3269
+ {
3270
+ "appName": "graphviz",
3271
+ "repoURL": "CMD",
3272
+ "doc": "📊 Graph visualization software",
3273
+ "fileNamePattern": {
3274
+ "amd64": {
3275
+ "linux": "sudo nala install graphviz -y",
3276
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3277
+ "macos": "brew install graphviz"
3278
+ },
3279
+ "arm64": {
3280
+ "linux": "sudo nala install graphviz -y",
3281
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3282
+ "macos": "brew install graphviz"
3283
+ }
3284
+ }
3285
+ },
3286
+ {
3287
+ "appName": "winfsp",
3288
+ "repoURL": "CMD",
3289
+ "doc": "💾 Windows File System Proxy",
3290
+ "fileNamePattern": {
3291
+ "amd64": {
3292
+ "linux": null,
3293
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --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 \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3299
+ "macos": null
3300
+ }
3301
+ }
3302
+ },
3303
+ {
3304
+ "appName": "sshfs",
3305
+ "repoURL": "CMD",
3306
+ "doc": "🌐 Mount remote filesystems over SSH",
3307
+ "fileNamePattern": {
3308
+ "amd64": {
3309
+ "linux": "sudo nala install sshfs",
3310
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3311
+ "macos": "brew install sshfs"
3312
+ },
3313
+ "arm64": {
3314
+ "linux": "sudo nala install sshfs",
3315
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3316
+ "macos": "brew install sshfs"
3317
+ }
3318
+ }
3319
+ },
3320
+ {
3321
+ "appName": "xming",
3322
+ "repoURL": "CMD",
3323
+ "doc": "🖥️ X11 server for Windows",
3324
+ "fileNamePattern": {
3325
+ "amd64": {
3326
+ "linux": null,
3327
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --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 \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3333
+ "macos": null
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ "appName": "nodejs",
3339
+ "repoURL": "CMD",
3340
+ "doc": "🟢 JavaScript runtime environment",
3341
+ "fileNamePattern": {
3342
+ "amd64": {
3343
+ "linux": null,
3344
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --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 \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3350
+ "macos": null
3351
+ }
3352
+ }
3353
+ },
3354
+ {
3355
+ "appName": "rustup",
3356
+ "repoURL": "CMD",
3357
+ "doc": "🦀 Rust toolchain installer",
3358
+ "fileNamePattern": {
3359
+ "amd64": {
3360
+ "linux": null,
3361
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --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 \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3367
+ "macos": null
3368
+ }
3369
+ }
3370
+ },
3371
+ {
3372
+ "appName": "mouse-without-borders",
3373
+ "repoURL": "CMD",
3374
+ "doc": "🖱️ Control multiple computers with one mouse",
3375
+ "fileNamePattern": {
3376
+ "amd64": {
3377
+ "linux": null,
3378
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --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 \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3384
+ "macos": null
3385
+ }
3386
+ }
3387
+ },
3388
+ {
3389
+ "appName": "chrome",
3390
+ "repoURL": "CMD",
3391
+ "doc": "🌐 Google Chrome web browser",
3392
+ "fileNamePattern": {
3393
+ "amd64": {
3394
+ "linux": null,
3395
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --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 \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3401
+ "macos": null
3402
+ }
3403
+ }
3404
+ },
3405
+ {
3406
+ "appName": "chrome-remote-desktop",
3407
+ "repoURL": "CMD",
3408
+ "doc": "🖥️ Chrome Remote Desktop Host",
3409
+ "fileNamePattern": {
3410
+ "amd64": {
3411
+ "linux": null,
3412
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --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 \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3418
+ "macos": null
3419
+ }
3420
+ }
3421
+ },
3422
+ {
3423
+ "appName": "zoom",
3424
+ "repoURL": "CMD",
3425
+ "doc": "📹 Video conferencing software",
3426
+ "fileNamePattern": {
3427
+ "amd64": {
3428
+ "linux": null,
3429
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --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 \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3435
+ "macos": null
3436
+ }
3437
+ }
3438
+ },
3439
+ {
3440
+ "appName": "7zip",
3441
+ "repoURL": "CMD",
3442
+ "doc": "📦 File archiver with high compression ratio",
3443
+ "fileNamePattern": {
3444
+ "amd64": {
3445
+ "linux": null,
3446
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --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 \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3452
+ "macos": null
3453
+ }
3454
+ }
3455
+ },
3456
+ {
3457
+ "appName": "firefox",
3458
+ "repoURL": "CMD",
3459
+ "doc": "🦊 Mozilla Firefox web browser",
3460
+ "fileNamePattern": {
3461
+ "amd64": {
3462
+ "linux": null,
3463
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --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 \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3469
+ "macos": null
3470
+ }
3471
+ }
3472
+ },
3473
+ {
3474
+ "appName": "thunderbird",
3475
+ "repoURL": "CMD",
3476
+ "doc": "📧 Mozilla Thunderbird email client",
3477
+ "fileNamePattern": {
3478
+ "amd64": {
3479
+ "linux": null,
3480
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --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 \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3486
+ "macos": null
3487
+ }
3488
+ }
3489
+ },
3490
+ {
3491
+ "appName": "streamlabs-obs",
3492
+ "repoURL": "CMD",
3493
+ "doc": "🎥 Streamlabs OBS streaming software",
3494
+ "fileNamePattern": {
3495
+ "amd64": {
3496
+ "linux": null,
3497
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --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 \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3503
+ "macos": null
3504
+ }
3505
+ }
3506
+ },
3507
+ {
3508
+ "appName": "obs-studio",
3509
+ "repoURL": "CMD",
3510
+ "doc": "🎬 OBS Studio streaming and recording software",
3511
+ "fileNamePattern": {
3512
+ "amd64": {
3513
+ "linux": null,
3514
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --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 \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3520
+ "macos": null
3521
+ }
3522
+ }
3523
+ },
3524
+ {
3525
+ "appName": "miktex",
3526
+ "repoURL": "CMD",
3527
+ "doc": "📝 LaTeX distribution for Windows",
3528
+ "fileNamePattern": {
3529
+ "amd64": {
3530
+ "linux": null,
3531
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --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 \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3537
+ "macos": null
3538
+ }
3539
+ }
3540
+ },
3541
+ {
3542
+ "appName": "texmaker",
3543
+ "repoURL": "CMD",
3544
+ "doc": "📄 LaTeX editor",
3545
+ "fileNamePattern": {
3546
+ "amd64": {
3547
+ "linux": null,
3548
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --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 \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3554
+ "macos": null
3555
+ }
3556
+ }
3557
+ },
3558
+ {
3559
+ "appName": "lapce",
3560
+ "repoURL": "CMD",
3561
+ "doc": "⚡ Lightning-fast code editor written in Rust",
3562
+ "fileNamePattern": {
3563
+ "amd64": {
3564
+ "linux": null,
3565
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --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 \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3571
+ "macos": null
3572
+ }
3573
+ }
3574
+ },
3575
+ {
3576
+ "appName": "tesseract",
3577
+ "repoURL": "CMD",
3578
+ "doc": "🔤 OCR engine for text recognition",
3579
+ "fileNamePattern": {
3580
+ "amd64": {
3581
+ "linux": null,
3582
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --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 \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3588
+ "macos": null
3589
+ }
3590
+ }
3591
+ },
3592
+ {
3593
+ "appName": "perl",
3594
+ "repoURL": "CMD",
3595
+ "doc": "🍓 Strawberry Perl programming language",
3596
+ "fileNamePattern": {
3597
+ "amd64": {
3598
+ "linux": null,
3599
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --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 \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3605
+ "macos": null
3606
+ }
3607
+ }
3608
+ },
3609
+ {
3610
+ "appName": "db-browser-sqlite",
3611
+ "repoURL": "CMD",
3612
+ "doc": "🗄️ DB Browser for SQLite database tool",
3613
+ "fileNamePattern": {
3614
+ "amd64": {
3615
+ "linux": null,
3616
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --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 \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3622
+ "macos": null
3623
+ }
3624
+ }
3625
+ },
3626
+ {
3627
+ "appName": "ssms",
3628
+ "repoURL": "CMD",
3629
+ "doc": "🗄️ SQL Server Management Studio",
3630
+ "fileNamePattern": {
3631
+ "amd64": {
3632
+ "linux": null,
3633
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --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 \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3639
+ "macos": null
3640
+ }
3641
+ }
3642
+ },
3643
+ {
3644
+ "appName": "adobe-reader",
3645
+ "repoURL": "CMD",
3646
+ "doc": "📄 Adobe Acrobat Reader DC",
3647
+ "fileNamePattern": {
3648
+ "amd64": {
3649
+ "linux": null,
3650
+ "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",
3651
+ "macos": null
3652
+ },
3653
+ "arm64": {
3654
+ "linux": null,
3655
+ "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",
3656
+ "macos": null
3657
+ }
3658
+ }
3659
+ },
3660
+ {
3661
+ "appName": "julia",
3662
+ "repoURL": "CMD",
3663
+ "doc": "📊 Julia programming language",
3664
+ "fileNamePattern": {
3665
+ "amd64": {
3666
+ "linux": null,
3667
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --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 \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3673
+ "macos": null
3674
+ }
3675
+ }
3676
+ },
3677
+ {
3678
+ "appName": "awscli",
3679
+ "repoURL": "CMD",
3680
+ "doc": "☁️ AWS Command Line Interface",
3681
+ "fileNamePattern": {
3682
+ "amd64": {
3683
+ "linux": null,
3684
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3685
+ "macos": null
3686
+ },
3687
+ "arm64": {
3688
+ "linux": null,
3689
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3690
+ "macos": null
3691
+ }
3692
+ }
3693
+ },
3694
+ {
3695
+ "appName": "notepadplusplus",
3696
+ "repoURL": "CMD",
3697
+ "doc": "📝 Notepad++ text editor",
3698
+ "fileNamePattern": {
3699
+ "amd64": {
3700
+ "linux": null,
3701
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3702
+ "macos": null
3703
+ },
3704
+ "arm64": {
3705
+ "linux": null,
3706
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3707
+ "macos": null
3708
+ }
3709
+ }
2690
3710
  }
2691
3711
  ]
2692
- }
3712
+ }