machineconfig 7.98__py3-none-any.whl → 8.61__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 (353) hide show
  1. machineconfig/cluster/remote/run_cluster.py +1 -1
  2. machineconfig/cluster/remote/run_remote.py +1 -1
  3. machineconfig/cluster/sessions_managers/utils/maker.py +10 -8
  4. machineconfig/cluster/sessions_managers/wt_local.py +1 -1
  5. machineconfig/cluster/sessions_managers/wt_local_manager.py +1 -1
  6. machineconfig/cluster/sessions_managers/zellij_local.py +1 -1
  7. machineconfig/cluster/sessions_managers/zellij_local_manager.py +1 -1
  8. machineconfig/jobs/installer/checks/check_installations.py +133 -0
  9. machineconfig/jobs/installer/checks/install_utils.py +132 -0
  10. machineconfig/jobs/installer/checks/report_utils.py +39 -0
  11. machineconfig/jobs/installer/checks/vt_utils.py +89 -0
  12. machineconfig/jobs/installer/installer_data.json +271 -152
  13. machineconfig/jobs/installer/linux_scripts/docker.sh +6 -9
  14. machineconfig/jobs/installer/package_groups.py +11 -9
  15. machineconfig/jobs/installer/{custom → python_scripts}/boxes.py +1 -2
  16. machineconfig/jobs/installer/{custom_dev → python_scripts}/brave.py +1 -1
  17. machineconfig/jobs/installer/{custom_dev → python_scripts}/code.py +10 -8
  18. machineconfig/jobs/installer/{custom → python_scripts}/hx.py +30 -13
  19. machineconfig/jobs/installer/{custom_dev → python_scripts}/nerdfont.py +1 -1
  20. machineconfig/jobs/installer/{custom_dev → python_scripts}/nerfont_windows_helper.py +6 -5
  21. machineconfig/jobs/installer/{custom_dev → python_scripts}/sysabc.py +28 -43
  22. machineconfig/jobs/installer/{custom_dev → python_scripts}/wezterm.py +1 -1
  23. machineconfig/jobs/installer/{custom → python_scripts}/yazi.py +39 -19
  24. machineconfig/jobs/scripts/powershell_scripts/cmatrix.ps1 +52 -0
  25. machineconfig/jobs/scripts_dynamic/a.py +428 -0
  26. machineconfig/logger.py +1 -1
  27. machineconfig/profile/create_helper.py +21 -10
  28. machineconfig/profile/create_links.py +77 -20
  29. machineconfig/profile/create_links_export.py +63 -58
  30. machineconfig/profile/create_shell_profile.py +14 -0
  31. machineconfig/profile/mapper_data.toml +45 -0
  32. machineconfig/profile/mapper_dotfiles.toml +249 -0
  33. machineconfig/scripts/python/agents.py +76 -171
  34. machineconfig/scripts/python/ai/initai.py +3 -1
  35. machineconfig/scripts/python/ai/scripts/__init__.py +1 -0
  36. machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +2 -0
  37. machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +8 -6
  38. machineconfig/scripts/python/ai/solutions/claude/claude.py +1 -1
  39. machineconfig/scripts/python/ai/solutions/cline/cline.py +1 -1
  40. machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py +1 -1
  41. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +29 -0
  42. machineconfig/scripts/python/ai/solutions/crush/crush.py +1 -1
  43. machineconfig/scripts/python/ai/solutions/cursor/cursors.py +1 -1
  44. machineconfig/scripts/python/ai/solutions/gemini/gemini.py +1 -1
  45. machineconfig/scripts/python/ai/solutions/gemini/settings.json +3 -0
  46. machineconfig/scripts/python/ai/{solutions → utils}/generic.py +2 -15
  47. machineconfig/scripts/python/ai/utils/vscode_tasks.py +6 -3
  48. machineconfig/scripts/python/cloud.py +58 -11
  49. machineconfig/scripts/python/croshell.py +4 -155
  50. machineconfig/scripts/python/devops.py +57 -38
  51. machineconfig/scripts/python/devops_navigator.py +17 -3
  52. machineconfig/scripts/python/fire_jobs.py +10 -193
  53. machineconfig/scripts/python/ftpx.py +5 -224
  54. machineconfig/scripts/python/graph/cli_graph.json +8743 -0
  55. machineconfig/scripts/python/{env_manager → helper_env}/path_manager_tui.py +2 -2
  56. machineconfig/scripts/python/{env_manager → helpers/helper_env}/env_manager_tui.py +1 -1
  57. machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py +228 -0
  58. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_crush.py +1 -1
  59. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_cursor_agents.py +1 -1
  60. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_gemini.py +1 -1
  61. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_qwen.py +1 -1
  62. machineconfig/scripts/python/helpers/helpers_agents/agents_impl.py +168 -0
  63. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_help_launch.py +10 -7
  64. machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aichat/config.yaml +5 -0
  65. machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aider/.aider.conf.yml +2 -0
  66. machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/copilot/config.yml +1 -0
  67. machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/crush/crush.json +10 -0
  68. machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/gemini/settings.json +12 -0
  69. machineconfig/scripts/python/helpers/helpers_agents/privacy/privacy.py +109 -0
  70. machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.sh +3 -1
  71. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_copy.py +6 -6
  72. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_mount.py +10 -5
  73. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_sync.py +4 -4
  74. machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/helpers2.py +1 -1
  75. machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py +229 -0
  76. machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/scheduler.py +4 -4
  77. machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/start_slidev.py +7 -6
  78. machineconfig/scripts/python/helpers/helpers_devops/backup_config.py +149 -0
  79. machineconfig/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py +262 -0
  80. machineconfig/scripts/python/helpers/helpers_devops/cli_config.py +130 -0
  81. machineconfig/scripts/python/helpers/helpers_devops/cli_config_dotfile.py +274 -0
  82. machineconfig/scripts/python/helpers/helpers_devops/cli_config_mount.py +77 -0
  83. machineconfig/scripts/python/helpers/helpers_devops/cli_data.py +71 -0
  84. machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py +285 -0
  85. machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py +274 -0
  86. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_self.py +84 -33
  87. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_file.py +44 -30
  88. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_server.py +26 -43
  89. machineconfig/scripts/python/helpers/helpers_devops/cli_share_temp.py +69 -0
  90. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/cli_share_terminal.py +12 -6
  91. machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py +167 -0
  92. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/devops_status.py +12 -6
  93. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/devops_update_repos.py +1 -1
  94. machineconfig/scripts/python/{interactive.py → helpers/helpers_devops/interactive.py} +64 -50
  95. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/commands.py +25 -0
  96. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/device_entry.py +17 -0
  97. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/devices.py +17 -0
  98. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/linux.py +103 -0
  99. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/macos.py +100 -0
  100. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/selection.py +47 -0
  101. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/utils.py +28 -0
  102. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/windows.py +91 -0
  103. machineconfig/scripts/python/helpers/helpers_devops/run_script.py +197 -0
  104. machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1 +41 -0
  105. machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.sh +48 -0
  106. machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/themes/choose_wezterm_theme.py +3 -3
  107. machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/file_wrangler.py +1 -0
  108. machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_args_helper.py +1 -0
  109. machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_impl.py +233 -0
  110. machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/fire_jobs_route_helper.py +3 -3
  111. machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_streamlit_helper.py +0 -0
  112. machineconfig/scripts/python/helpers/helpers_msearch/msearch_impl.py +248 -0
  113. machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/scripts_linux/fzfg +4 -3
  114. machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/search_with_context.sh +48 -0
  115. machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/scripts_windows/fzfg.ps1 +2 -7
  116. machineconfig/scripts/python/helpers/helpers_navigator/__init__.py +20 -0
  117. machineconfig/scripts/python/helpers/helpers_navigator/cli_graph_loader.py +234 -0
  118. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/command_builder.py +61 -13
  119. machineconfig/scripts/python/helpers/helpers_navigator/command_detail.py +153 -0
  120. machineconfig/scripts/python/helpers/helpers_navigator/command_tree.py +45 -0
  121. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/data_models.py +18 -11
  122. machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/main_app.py +5 -5
  123. machineconfig/scripts/python/helpers/helpers_network/__init__.py +0 -0
  124. machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/address.py +52 -10
  125. machineconfig/scripts/python/helpers/helpers_network/address_switch.py +78 -0
  126. machineconfig/scripts/python/helpers/helpers_network/ftpx_impl.py +276 -0
  127. machineconfig/scripts/python/helpers/helpers_network/ssh/__init__.py +0 -0
  128. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_identity.py +73 -0
  129. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_key_windows.py +23 -0
  130. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_ssh_key.py +169 -0
  131. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_cloud_init.py +33 -0
  132. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux.py +338 -0
  133. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux_utils.py +35 -0
  134. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows.py +245 -0
  135. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows_utils.py +34 -0
  136. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/action.py +3 -3
  137. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/action_helper.py +3 -3
  138. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/cloud_repo_sync.py +120 -37
  139. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/grource.py +3 -2
  140. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/record.py +33 -13
  141. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/repo_analyzer_2.py +63 -19
  142. machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/update.py +0 -6
  143. machineconfig/scripts/python/helpers/helpers_search/script_help.py +81 -0
  144. machineconfig/scripts/python/helpers/helpers_sessions/__init__.py +0 -0
  145. machineconfig/scripts/python/helpers/helpers_sessions/attach_impl.py +87 -0
  146. machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py +114 -0
  147. machineconfig/scripts/python/{helpers_sessions → helpers/helpers_sessions}/sessions_multiprocess.py +1 -2
  148. machineconfig/scripts/python/helpers/helpers_sessions/utils.py +69 -0
  149. machineconfig/scripts/python/{helpers_utils → helpers/helpers_utils}/download.py +1 -1
  150. machineconfig/scripts/python/{helpers_devops/cli_utils.py → helpers/helpers_utils/pdf.py} +2 -2
  151. machineconfig/scripts/python/{helpers_utils/path.py → helpers/helpers_utils/python.py} +65 -40
  152. machineconfig/scripts/python/helpers/helpers_utils/specs.py +246 -0
  153. machineconfig/scripts/python/mcfg_entry.py +126 -48
  154. machineconfig/scripts/python/msearch.py +16 -61
  155. machineconfig/scripts/python/sessions.py +137 -191
  156. machineconfig/scripts/python/utils.py +104 -24
  157. machineconfig/settings/atuin/config.toml +294 -0
  158. machineconfig/settings/atuin/themes/catppuccin-mocha-mauve.toml +12 -0
  159. machineconfig/settings/linters/.ruff.toml +2 -1
  160. machineconfig/settings/mprocs/windows/mprocs.yaml +2 -2
  161. machineconfig/settings/shells/bash/init.sh +6 -10
  162. machineconfig/settings/shells/nushell/config.nu +23 -1
  163. machineconfig/settings/shells/nushell/env.nu +22 -48
  164. machineconfig/settings/shells/nushell/init.nu +64 -240
  165. machineconfig/settings/shells/pwsh/init.ps1 +71 -5
  166. machineconfig/settings/shells/pwsh/search_pwsh_history.ps1 +99 -0
  167. machineconfig/settings/shells/wezterm/wezterm.lua +4 -0
  168. machineconfig/settings/shells/wt/settings.json +31 -37
  169. machineconfig/settings/shells/zsh/init.sh +25 -5
  170. machineconfig/settings/television/cable_unix/bash-history.toml +1 -1
  171. machineconfig/settings/television/cable_windows/pwsh-history.toml +1 -1
  172. machineconfig/settings/tv/config.toml +234 -0
  173. machineconfig/settings/tv/themes/catppuccin-mocha-sky.toml +22 -0
  174. machineconfig/settings/wsl/.wslconfig +5 -30
  175. machineconfig/settings/wt/__init__.py +0 -0
  176. machineconfig/settings/yazi/yazi_linux.toml +18 -8
  177. machineconfig/settings/zellij/__init__.py +0 -0
  178. machineconfig/settings/zellij/config.kdl +0 -295
  179. machineconfig/settings/zellij/layouts/__init__.py +0 -0
  180. machineconfig/settings/zellij/layouts/st.kdl +39 -9
  181. machineconfig/settings/zellij/layouts/st2.kdl +6 -2
  182. machineconfig/setup_linux/__init__.py +0 -1
  183. machineconfig/setup_linux/apps_desktop.sh +8 -27
  184. machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
  185. machineconfig/setup_linux/web_shortcuts/live_from_github.sh +3 -0
  186. machineconfig/setup_mac/__init__.py +0 -2
  187. machineconfig/setup_windows/__init__.py +2 -5
  188. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +14 -13
  189. machineconfig/setup_windows/web_shortcuts/live_from_github.ps1 +4 -3
  190. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +3 -3
  191. machineconfig/type_hinting/sql/__init__.py +1 -0
  192. machineconfig/type_hinting/sql/base.py +216 -0
  193. machineconfig/type_hinting/sql/core_schema.py +64 -0
  194. machineconfig/type_hinting/sql/core_schema_typeddict.py +41 -0
  195. machineconfig/type_hinting/sql/typeddict_codegen.py +222 -0
  196. machineconfig/type_hinting/typedict/__init__.py +1 -0
  197. machineconfig/type_hinting/typedict/ast_utils.py +130 -0
  198. machineconfig/type_hinting/typedict/generator_helpers.py +319 -0
  199. machineconfig/type_hinting/typedict/generators.py +231 -0
  200. machineconfig/type_hinting/typedict/polars_schema.py +24 -0
  201. machineconfig/type_hinting/typedict/polars_schema_typeddict.py +63 -0
  202. machineconfig/utils/accessories.py +24 -0
  203. machineconfig/utils/code.py +78 -33
  204. machineconfig/utils/files/ascii_art.py +10 -14
  205. machineconfig/utils/files/headers.py +3 -5
  206. machineconfig/utils/files/read.py +8 -1
  207. machineconfig/utils/installer_utils/github_release_bulk.py +11 -91
  208. machineconfig/utils/installer_utils/github_release_scraper.py +99 -0
  209. machineconfig/utils/installer_utils/install_from_url.py +1 -1
  210. machineconfig/utils/installer_utils/installer_class.py +12 -4
  211. machineconfig/utils/installer_utils/installer_cli.py +7 -17
  212. machineconfig/utils/installer_utils/installer_helper.py +52 -36
  213. machineconfig/utils/installer_utils/installer_locator_utils.py +15 -25
  214. machineconfig/utils/installer_utils/installer_runner.py +4 -4
  215. machineconfig/utils/io.py +25 -8
  216. machineconfig/utils/meta.py +6 -4
  217. machineconfig/utils/options.py +49 -19
  218. machineconfig/utils/options_utils/__init__.py +0 -0
  219. machineconfig/utils/options_utils/options_tv_linux.py +211 -0
  220. machineconfig/utils/options_utils/options_tv_windows.py +88 -0
  221. machineconfig/utils/options_utils/tv_options.py +37 -0
  222. machineconfig/utils/path_extended.py +8 -7
  223. machineconfig/utils/procs.py +35 -27
  224. machineconfig/utils/scheduler.py +8 -2
  225. machineconfig/utils/schemas/fire_agents/fire_agents_input.py +1 -1
  226. machineconfig/utils/schemas/layouts/layout_types.py +10 -0
  227. machineconfig/utils/source_of_truth.py +7 -1
  228. machineconfig/utils/ssh.py +73 -23
  229. machineconfig/utils/ssh_utils/abc.py +1 -1
  230. machineconfig/utils/ssh_utils/copy_from_here.py +19 -14
  231. machineconfig/utils/ssh_utils/copy_to_here.py +2 -1
  232. machineconfig/utils/ssh_utils/utils.py +23 -7
  233. machineconfig/utils/ssh_utils/wsl.py +107 -170
  234. machineconfig/utils/ssh_utils/wsl_helper.py +217 -0
  235. machineconfig/utils/upgrade_packages.py +4 -8
  236. {machineconfig-7.98.dist-info → machineconfig-8.61.dist-info}/METADATA +30 -23
  237. machineconfig-8.61.dist-info/RECORD +539 -0
  238. {machineconfig-7.98.dist-info → machineconfig-8.61.dist-info}/entry_points.txt +0 -1
  239. machineconfig/jobs/installer/check_installations.py +0 -248
  240. machineconfig/profile/backup.toml +0 -49
  241. machineconfig/profile/mapper.toml +0 -263
  242. machineconfig/scripts/linux/other/share_cloud.sh +0 -64
  243. machineconfig/scripts/linux/other/share_nfs +0 -49
  244. machineconfig/scripts/linux/other/start_docker +0 -23
  245. machineconfig/scripts/linux/other/switch_ip +0 -20
  246. machineconfig/scripts/python/helpers/run_py_script.py +0 -79
  247. machineconfig/scripts/python/helpers/tmp_py_scripts/a.py +0 -26
  248. machineconfig/scripts/python/helpers_devops/cli_config.py +0 -105
  249. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +0 -89
  250. machineconfig/scripts/python/helpers_devops/cli_data.py +0 -25
  251. machineconfig/scripts/python/helpers_devops/cli_nw.py +0 -214
  252. machineconfig/scripts/python/helpers_devops/cli_repos.py +0 -215
  253. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +0 -80
  254. machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash +0 -3
  255. machineconfig/scripts/python/helpers_navigator/__init__.py +0 -20
  256. machineconfig/scripts/python/helpers_navigator/command_detail.py +0 -44
  257. machineconfig/scripts/python/helpers_navigator/command_tree.py +0 -620
  258. machineconfig/scripts/python/helpers_network/devops_add_identity.py +0 -82
  259. machineconfig/scripts/python/helpers_network/devops_add_ssh_key.py +0 -153
  260. machineconfig/scripts/python/helpers_network/mount_drive +0 -128
  261. machineconfig/scripts/python/helpers_network/mount_nfs +0 -49
  262. machineconfig/scripts/python/helpers_network/mount_nfs.py +0 -85
  263. machineconfig/scripts/python/helpers_network/mount_nw_drive +0 -61
  264. machineconfig/scripts/python/helpers_network/mount_nw_drive.py +0 -48
  265. machineconfig/scripts/python/helpers_network/mount_smb +0 -3
  266. machineconfig/scripts/python/helpers_network/mount_ssh.py +0 -64
  267. machineconfig/scripts/python/helpers_network/ssh_debug_linux.py +0 -391
  268. machineconfig/scripts/python/helpers_network/ssh_debug_windows.py +0 -338
  269. machineconfig/scripts/python/helpers_network/wsl_windows_transfer.py +0 -67
  270. machineconfig/scripts/python/helpers_repos/entrypoint.py +0 -77
  271. machineconfig/scripts/python/terminal.py +0 -133
  272. machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1 +0 -92
  273. machineconfig/scripts/windows/mounts/mount_nfs.ps1 +0 -42
  274. machineconfig/scripts/windows/mounts/mount_nw.ps1 +0 -9
  275. machineconfig/scripts/windows/mounts/mount_smb.ps1 +0 -2
  276. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +0 -13
  277. machineconfig/scripts/windows/mounts/share_cloud.cmd +0 -34
  278. machineconfig/scripts/windows/mounts/share_smb.ps1 +0 -16
  279. machineconfig/settings/zellij/config.orig.kdl +0 -295
  280. machineconfig/setup_linux/others/android.sh +0 -2
  281. machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh +0 -30
  282. machineconfig/setup_linux/ssh/openssh_all.sh +0 -25
  283. machineconfig/setup_linux/ssh/openssh_wsl.sh +0 -38
  284. machineconfig/setup_mac/ssh/openssh_setup.sh +0 -114
  285. machineconfig/setup_windows/others/docker.ps1 +0 -7
  286. machineconfig/setup_windows/others/obs.ps1 +0 -4
  287. machineconfig/setup_windows/others/power_options.ps1 +0 -7
  288. machineconfig/setup_windows/ssh/add-sshkey.ps1 +0 -29
  289. machineconfig/setup_windows/ssh/add_identity.ps1 +0 -11
  290. machineconfig/setup_windows/ssh/openssh-server.ps1 +0 -37
  291. machineconfig/setup_windows/ssh/openssh-server_add_key.ps1 +0 -7
  292. machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1 +0 -14
  293. machineconfig/utils/options_tv.py +0 -119
  294. machineconfig/utils/tst.py +0 -20
  295. machineconfig-7.98.dist-info/RECORD +0 -504
  296. /machineconfig/{jobs/installer/custom_dev → cluster/sessions_managers/wt_utils/examples}/__init__.py +0 -0
  297. /machineconfig/{scripts/python/helpers_agents → jobs/installer/checks}/__init__.py +0 -0
  298. /machineconfig/{scripts/python/helpers_agents/agentic_frameworks → jobs/installer/python_scripts}/__init__.py +0 -0
  299. /machineconfig/jobs/installer/{custom_dev → python_scripts}/alacritty.py +0 -0
  300. /machineconfig/jobs/installer/{custom_dev → python_scripts}/bypass_paywall.py +0 -0
  301. /machineconfig/jobs/installer/{custom_dev → python_scripts}/cloudflare_warp_cli.py +0 -0
  302. /machineconfig/jobs/installer/{custom_dev → python_scripts}/cursor.py +0 -0
  303. /machineconfig/jobs/installer/{custom_dev → python_scripts}/dubdb_adbc.py +0 -0
  304. /machineconfig/jobs/installer/{custom_dev → python_scripts}/espanso.py +0 -0
  305. /machineconfig/jobs/installer/{custom → python_scripts}/gh.py +0 -0
  306. /machineconfig/jobs/installer/{custom_dev → python_scripts}/goes.py +0 -0
  307. /machineconfig/jobs/installer/{custom_dev → python_scripts}/lvim.py +0 -0
  308. /machineconfig/jobs/installer/{custom_dev → python_scripts}/redis.py +0 -0
  309. /machineconfig/jobs/installer/{custom_dev → python_scripts}/winget.py +0 -0
  310. /machineconfig/jobs/{installer/linux_scripts → scripts/bash_scripts}/lid.sh +0 -0
  311. /machineconfig/{scripts/windows/mounts → jobs/scripts/powershell_scripts}/unlock_bitlocker.ps1 +0 -0
  312. /machineconfig/scripts/python/ai/{solutions/_shared.py → utils/shared.py} +0 -0
  313. /machineconfig/scripts/python/{helpers_cloud → graph}/__init__.py +0 -0
  314. /machineconfig/scripts/python/{helpers_croshell → helpers}/__init__.py +0 -0
  315. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/__init__.py +0 -0
  316. /machineconfig/scripts/python/{env_manager → helpers/helper_env}/path_manager_backend.py +0 -0
  317. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_agents}/__init__.py +0 -0
  318. /machineconfig/scripts/python/{helpers_devops/themes → helpers/helpers_agents/agentic_frameworks}/__init__.py +0 -0
  319. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/agentic_frameworks/fire_crush.json +0 -0
  320. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_help_search.py +0 -0
  321. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_helper_types.py +0 -0
  322. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/fire_agents_load_balancer.py +0 -0
  323. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/prompt.txt +0 -0
  324. /machineconfig/scripts/python/{helpers_agents → helpers/helpers_agents}/templates/template.ps1 +0 -0
  325. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_cloud}/__init__.py +0 -0
  326. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/cloud_helpers.py +0 -0
  327. /machineconfig/scripts/python/{helpers_cloud → helpers/helpers_cloud}/helpers5.py +0 -0
  328. /machineconfig/scripts/python/{helpers_network → helpers/helpers_croshell}/__init__.py +0 -0
  329. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/crosh.py +0 -0
  330. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/pomodoro.py +0 -0
  331. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer.py +0 -0
  332. /machineconfig/scripts/python/{helpers_croshell → helpers/helpers_croshell}/viewer_template.py +0 -0
  333. /machineconfig/scripts/python/{helpers_sessions → helpers/helpers_devops}/__init__.py +0 -0
  334. /machineconfig/{setup_windows/wt_and_pwsh → scripts/python/helpers/helpers_devops/mount_helpers}/__init__.py +0 -0
  335. /machineconfig/scripts/python/{helpers_devops/themes/choose_starship_theme.ps1 → helpers/helpers_devops/themes/__init__.py} +0 -0
  336. /machineconfig/scripts/python/{helpers_devops → helpers/helpers_devops}/themes/choose_pwsh_theme.ps1 +0 -0
  337. /machineconfig/scripts/python/{helpers_fire_command/f.py → helpers/helpers_fire_command/__init__.py} +0 -0
  338. /machineconfig/scripts/python/{helpers_fire_command → helpers/helpers_fire_command}/cloud_manager.py +0 -0
  339. /machineconfig/scripts/python/{helpers_fire_command/fire_jobs_streamlit_helper.py → helpers/helpers_fire_command/f.py} +0 -0
  340. /machineconfig/scripts/python/{helpers_msearch → helpers/helpers_msearch}/__init__.py +0 -0
  341. /machineconfig/scripts/python/{helpers_navigator → helpers/helpers_navigator}/search_bar.py +0 -0
  342. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/onetimeshare.py +0 -0
  343. /machineconfig/scripts/python/{helpers_network → helpers/helpers_network}/wifi_conn.py +0 -0
  344. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/clone.py +0 -0
  345. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/repo_analyzer_1.py +0 -0
  346. /machineconfig/scripts/python/{helpers_repos → helpers/helpers_repos}/sync.py +0 -0
  347. /machineconfig/scripts/python/helpers/{ast_search.py → helpers_search/ast_search.py} +0 -0
  348. /machineconfig/scripts/python/helpers/{qr_code.py → helpers_search/qr_code.py} +0 -0
  349. /machineconfig/scripts/python/helpers/{repo_rag.py → helpers_search/repo_rag.py} +0 -0
  350. /machineconfig/scripts/python/helpers/{symantic_search.py → helpers_search/symantic_search.py} +0 -0
  351. /machineconfig/{setup_windows/wt_and_pwsh → settings/wt}/set_wt_settings.py +0 -0
  352. {machineconfig-7.98.dist-info → machineconfig-8.61.dist-info}/WHEEL +0 -0
  353. {machineconfig-7.98.dist-info → machineconfig-8.61.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,539 @@
1
+ machineconfig/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
2
+ machineconfig/logger.py,sha256=mME0WvqNK6yYTt1Px1qpNY7FuXswHg2pP88VkvsH6Gc,1382
3
+ machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ machineconfig/cluster/remote/cloud_manager.py,sha256=Pa84Im8TyJ4WA6PaOt42LSU6VofBk2njhT16_RneLtU,26040
5
+ machineconfig/cluster/remote/data_transfer.py,sha256=1QxIUetqlhmyl67icBx0nFZEZ7Z2DRjygXofKLMOz-0,4385
6
+ machineconfig/cluster/remote/distribute.py,sha256=_IJ2h5UugjsUuQxiW4rhiVinlxqqSxu5xKBCPfgEvi0,15257
7
+ machineconfig/cluster/remote/file_manager.py,sha256=-92YhIFNTd5FT9Jg842qISOScnU-x_iRsY0my_2z3ho,13910
8
+ machineconfig/cluster/remote/job_params.py,sha256=_t5QKqRHReShaBlJfSgVS5E3_oHYcRUIRO_Uz1mbA-k,7698
9
+ machineconfig/cluster/remote/loader_runner.py,sha256=Ia62ALepM3TP7kHaymfp0jEMuHJ0HjF31VbNJOCYYtM,7061
10
+ machineconfig/cluster/remote/remote_machine.py,sha256=xRuoHKNsIT0-FTFSvF1q7scnGKz8Qp6bxuzYdQLUOVA,19670
11
+ machineconfig/cluster/remote/run_cloud.py,sha256=0o4-v5yFEqvlHzoKDXljRCR5ikx_r5w4oYE5OCtVIK8,2378
12
+ machineconfig/cluster/remote/run_cluster.py,sha256=GIgqTlOxFIbHKv4m5g7ZG20RXmKKplROL_9hT4tWDMw,4683
13
+ machineconfig/cluster/remote/run_remote.py,sha256=aVyfp9T2La9Yk6rs4k3oGh9j6Qr6E09v-nKPYxqzaAg,3239
14
+ machineconfig/cluster/remote/script_execution.py,sha256=d1NZdIHlB0H69cyLgOv81vS9ui81d9ClM4WA4ICHKLY,9857
15
+ machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
16
+ machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ machineconfig/cluster/sessions_managers/wt_local.py,sha256=ULBlsFymtxeAzV7E56ijlQ32-MpwTv5urnkmWx0Fpm4,9784
18
+ machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=PQrdVphYpCnQzRQCSYLNS3WwEQ7sQtX0ukJ1f6XHp4o,20092
19
+ machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
20
+ machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=IRkgyA3poswUoRsA_8nWqeA8Pr7DTJavg2MTRZctmbY,14609
21
+ machineconfig/cluster/sessions_managers/zellij_local.py,sha256=Y2dfDFAlPSIq-LhfXZdilksS2mNnRBqEHuQJxpQdPRI,10078
22
+ machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=4onklHLrUTKtNyLCX9T1lUfVQxC_vLYSq_hQeYT33BY,17820
23
+ machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=TFx-Xjmoue8KjbzBFtvFSOSx3zgoTdS_N1WWPPdMBm8,8513
24
+ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=3eka4YVypqDZa4UKTpHPGdeGYkE--fiJrVtLtQ9nELI,8535
25
+ machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
26
+ machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
27
+ machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
28
+ machineconfig/cluster/sessions_managers/utils/maker.py,sha256=wLzhDWa0JhOWuYoS3mDwgyoSjLac47FtmfJM9OhxrQw,3604
29
+ machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
30
+ machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
31
+ machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
32
+ machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
33
+ machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
34
+ machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcYwPqwdNRnLU9QGKxRR9i6ewY02Id-tgnODB_OzQ,12552
35
+ machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=t5EWNOVS-PTc2fWE8aWNBrDyqR8akLtwtRinztxOdpY,9590
36
+ machineconfig/cluster/sessions_managers/wt_utils/status_reporting.py,sha256=OE24ggT2IWwR22rLHPc6fKxnafjPqIqoPa5VqeMDV90,3961
37
+ machineconfig/cluster/sessions_managers/wt_utils/wt_helpers.py,sha256=T6u7Ae2F84VEoQykAZotJdkm8KtwLSyAW-LLC9PQKZE,7824
38
+ machineconfig/cluster/sessions_managers/wt_utils/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=FyYsqowiFAvqv4M0eXRnw2U38r7u8EI1I3p580kV5Y0,2976
40
+ machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=FMpwaSeDCc71pEiVk99s8f5NkZEQ8zKQNUuaSXojgq4,4615
41
+ machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=8l8OAfWYy5xv-EaVqtXLqvPo9YaR9i8kFqGMhPzk0nw,2616
42
+ machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=1EGBlIBqPP-7hynPsCB2KjcLgxx1GLt2gXPExx8_1Ow,13594
43
+ machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
44
+ machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=7JLq8HY-NWbJfzHfxaok_o1KrIwzMCK_PUnsdZYfzuA,4929
45
+ machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=Tlq8liGIs1wCOu6JOk2VUAVCaTzQmbyITSVZMMWvlwA,3830
46
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
47
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
48
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_with_panes.py,sha256=KkGh_9i4ViEQ3Jxxpbbqk0AWHTN8omjeJTids9ANpeg,9033
49
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
50
+ machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQwzAHH_04stPuV5bY,647
52
+ machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ machineconfig/jobs/installer/installer_data.json,sha256=zGdVcNk_pLQbV93RQSCEFd8EeUc5cvq2yujSWZjCatA,128166
55
+ machineconfig/jobs/installer/package_groups.py,sha256=OgKmrBdTVsOsoW2Qw-I0AiDvqvb0I3u-ywfF18wLnIA,4994
56
+ machineconfig/jobs/installer/checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ machineconfig/jobs/installer/checks/check_installations.py,sha256=fTUl3Qvlxs7uoYDJxj7mYSOKO4qNblFNoBH7cjKkheI,5482
58
+ machineconfig/jobs/installer/checks/install_utils.py,sha256=aMXpG7XCkoXR0O5JxVPMqFGTx3FBqTfnhGRJwkyPxLI,5248
59
+ machineconfig/jobs/installer/checks/report_utils.py,sha256=Eawrdpj9B4yHNEwUzfIk-1y3HVMTGZOT-MVR8yov0Oc,1173
60
+ machineconfig/jobs/installer/checks/vt_utils.py,sha256=AnLvW6BqdX9-Pzd-P1RwLbiM6leA5VtIh1SMFsyPwxQ,3213
61
+ machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
62
+ machineconfig/jobs/installer/linux_scripts/cloudflare_warp_cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
63
+ machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=IzC3H1eHm21jqrNzQN1gEIKOfjWn7rZUpjLoKBmNL_0,4133
64
+ machineconfig/jobs/installer/linux_scripts/docker_start.sh,sha256=8L2fLex6PU8nCpBii7yT8w4CvULZ9_JcDvxdCGJQ6cU,894
65
+ machineconfig/jobs/installer/linux_scripts/edge.sh,sha256=f1UI2Z2s0ToZ-QGlzkS1ThcRsTz5tMHOjxSFqfHK9SQ,1319
66
+ machineconfig/jobs/installer/linux_scripts/nerdfont.sh,sha256=ute9wl4BcqHUqavVHWJlnMcmugdb50LbnUVlU0cUVso,1475
67
+ machineconfig/jobs/installer/linux_scripts/network.sh,sha256=j3kRV2mFEZK05XL2UdR9ssW2hkLH5rOYM7LU539UUEE,1358
68
+ machineconfig/jobs/installer/linux_scripts/ngrok.sh,sha256=K-t62nhnAHxhppTmqjubIJRHozkNHfBxXGbn1Oz3w-A,287
69
+ machineconfig/jobs/installer/linux_scripts/q.sh,sha256=dz_SK3y5qSpSTJvaKZKA5z-OWBCDfOv2DCLqofCP8Zs,460
70
+ machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=-Ur541bMwjq6TKrmvy-S5c_qoR8GlRpE6923USDylm8,2097
71
+ machineconfig/jobs/installer/linux_scripts/vscode.sh,sha256=fI6lNCWUjlstNE319Y-rUtimvLLb9GcNh3z9t1KRaaE,4541
72
+ machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVjoWATFzHqCt6V41_N8bImAQRc,1294
73
+ machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=Y7uof8naGBNv79heNXJ4KyH5sXDjDm0KwCKnshpprR4,6494
74
+ machineconfig/jobs/installer/python_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ machineconfig/jobs/installer/python_scripts/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
76
+ machineconfig/jobs/installer/python_scripts/boxes.py,sha256=DtiG-qblJvpMAXWsQNDgt31MJzittaXVloeLd5qp0Hk,1950
77
+ machineconfig/jobs/installer/python_scripts/brave.py,sha256=6kUl3OdcBEfBOdtB9sVLXlCVQhchqitRA7ZHjHU9mRA,3033
78
+ machineconfig/jobs/installer/python_scripts/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
79
+ machineconfig/jobs/installer/python_scripts/cloudflare_warp_cli.py,sha256=tcKmph3J_JQApjIMfGswLiHCbt7uQ6v9S9aixN_rnqg,914
80
+ machineconfig/jobs/installer/python_scripts/code.py,sha256=X68SVDPsCVDSXJWrel_PNaJB1uA43_BoyI5OvS8gyl0,2636
81
+ machineconfig/jobs/installer/python_scripts/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
82
+ machineconfig/jobs/installer/python_scripts/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKgnlhzS7PCoo39BSiux-3_DtBM,852
83
+ machineconfig/jobs/installer/python_scripts/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
84
+ machineconfig/jobs/installer/python_scripts/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
85
+ machineconfig/jobs/installer/python_scripts/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
86
+ machineconfig/jobs/installer/python_scripts/hx.py,sha256=xfKB5BarqSj61nRewKjTMnQgZN4ktHX8lz7b8sfroIk,9913
87
+ machineconfig/jobs/installer/python_scripts/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
88
+ machineconfig/jobs/installer/python_scripts/nerdfont.py,sha256=8Lz8NE0CYREDVVnSqRnaFsLqGAPUcQ-bt320KdTbrDw,4178
89
+ machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py,sha256=A8LDhdo8UfW__Lg9uZiqCA2FMI_KW9eVZNqJ8RDgaBI,6159
90
+ machineconfig/jobs/installer/python_scripts/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
91
+ machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=tjgmGgHSzEEsgUv4aNXS1fG3feER1B7iaRdnH_sJVuY,5836
92
+ machineconfig/jobs/installer/python_scripts/wezterm.py,sha256=MXJc0-8ixCm-5dN47R72FGkfzhIJD9-w4EM9bCdCGaM,3027
93
+ machineconfig/jobs/installer/python_scripts/winget.py,sha256=hxid9fWGLiTsqVqAFxM6jydmDeYdPQjsMh2XEBG-ROY,5631
94
+ machineconfig/jobs/installer/python_scripts/yazi.py,sha256=oy9GfhQlX2n_crfe8MrjJ2paAPe0xTxMouIEdN1IVL0,4893
95
+ machineconfig/jobs/scripts/bash_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob2wKSVKzCvOHIxEjoSTOA,864
96
+ machineconfig/jobs/scripts/powershell_scripts/cmatrix.ps1,sha256=T3K9vcALeY2UiR6hMCaiW_DdIWGAMqdESwvv1kE3kCQ,1781
97
+ machineconfig/jobs/scripts/powershell_scripts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
98
+ machineconfig/jobs/scripts_dynamic/a.py,sha256=bJWHVlrgs0khj_w6cxeOyyvhWSnLeWNh0xuIkzq2cI0,16576
99
+ machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
+ machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
101
+ machineconfig/profile/create_helper.py,sha256=YmXKtFrSGcvKso9czDu3YPObheqNF-fe3N6t490JzDE,2912
102
+ machineconfig/profile/create_links.py,sha256=NRo0jRwLgCH1VEPdGB-zeo45oH6yBwoHqSfuc6U2LRY,15831
103
+ machineconfig/profile/create_links_export.py,sha256=ZgL8uW5qZtDXF2FiVQRP8gGKdG3iUm3nwoZXpikS9qQ,4529
104
+ machineconfig/profile/create_shell_profile.py,sha256=CBwHoGQDtUlyqqRi7e46TfvrF5RHumcW2TAYZRc07pQ,8203
105
+ machineconfig/profile/mapper_data.toml,sha256=T_4flvVYtiqscrc8vvgcFAGPqH7I3LxK88q0VfJWHXs,2648
106
+ machineconfig/profile/mapper_dotfiles.toml,sha256=XkfQD81zgj5FcUtHBCF7XwGhMe_X8ndfGB99N9vTm5E,15930
107
+ machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
108
+ machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
109
+ machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
110
+ machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
111
+ machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
112
+ machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ machineconfig/scripts/linux/wrap_mcfg,sha256=JLrUn5pPhPlcnhOIhCENiclKk3oX-qbMuMBzcKC47eY,1461
114
+ machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
115
+ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
+ machineconfig/scripts/python/agents.py,sha256=eYxZsXZC1uiLzNZuRUcTjtcvCEhKAxFWfpglU3_XevQ,8259
117
+ machineconfig/scripts/python/cloud.py,sha256=Wu1BOIQds5Qcyg0Eo2vYatLqVdue8EHJiIlO8Uxaw4k,4700
118
+ machineconfig/scripts/python/croshell.py,sha256=qV3SbzTnc9MICX9kwTDGHWLbTZrWZYGqteAMn1VPUPs,1585
119
+ machineconfig/scripts/python/devops.py,sha256=wxXsIuko0mPg91dYYRwGldRkgd678ti10YHfN5WpKHY,4754
120
+ machineconfig/scripts/python/devops_navigator.py,sha256=XMfIUdtTIuGv6KHomt1i2pvW0bCRzMylVB1tOHhgo3o,415
121
+ machineconfig/scripts/python/fire_jobs.py,sha256=UYQuhdVWZL6kVk_5TMZn87t-BwQPP6gwh9qyLDrk_rw,4062
122
+ machineconfig/scripts/python/ftpx.py,sha256=x1GTztr9D1-Go7rZhdGNL_lixx_RJnCJKBKngxT2ki4,1305
123
+ machineconfig/scripts/python/mcfg_entry.py,sha256=1ew2Jpbi7Wy8lRg1jy3lmmtfRTX_rfir0AO_7frWWq4,8686
124
+ machineconfig/scripts/python/msearch.py,sha256=sWwFmbAuUqNY45BPJ5LVCIuOkGLq-aBOhK3pVIK3pgE,1787
125
+ machineconfig/scripts/python/sessions.py,sha256=qDYAbC8bHQiJ1Q3exm46DkHHCFPzeiBmUE78eTzqaIg,10242
126
+ machineconfig/scripts/python/utils.py,sha256=zgclmap5KM76_tQi7NClxFRPpqO6SlTCaB7QnDEuJ4M,8878
127
+ machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ machineconfig/scripts/python/ai/initai.py,sha256=s43xJ2GsyniiMfqt-lOdtILSf1KRsiYbqzqzm52e70s,1678
129
+ machineconfig/scripts/python/ai/scripts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
130
+ machineconfig/scripts/python/ai/scripts/command_runner.ps1,sha256=LB_4iflhPJ2FXB9RzoltTfnQeYYi2giANW16-dkYQ7U,1599
131
+ machineconfig/scripts/python/ai/scripts/command_runner.sh,sha256=XWm1mGd_HNVC45StUo9ZgKU8Ez0I_aD0q55rk1hTskw,767
132
+ machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=jfJzNcPmce0wRuPppBXpflrHw1otAOHE4GAaV-z90fY,5152
133
+ machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=wOIuPv2e6yNrQkn6rzD0QOi2KL564e_WXxWv7U49O2E,4717
134
+ machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=a2fatzyS8FgVOA8KrkuIRcKbkfT47q3x1VPVXPVOno0,338
136
+ machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=H6c4WJ3aiyyhA-z74dRxr-ttAKJtyZ8EBjVtfZzvYkE,441
137
+ machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=Vgm8K1vkp3BdNflwdwhrMfDFx33lDOdkfLDR62OLyJQ,1864
138
+ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeGB9apH2o4jdV-Co85CXmVmHJTMgrIqdY,156
139
+ machineconfig/scripts/python/ai/solutions/copilot/agents/Thinking-Beast-Mode.agent.md,sha256=pCCwoc7q3xQXYDJItJIPdvBi56WT_o8ekPsIrYwCiHA,17918
140
+ machineconfig/scripts/python/ai/solutions/copilot/agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md,sha256=y_NclkcqNaYsH5RWVWIYTCFlr7Kr5-WraDgeGFulDuk,28969
141
+ machineconfig/scripts/python/ai/solutions/copilot/agents/deepResearch.agent.md,sha256=7P5dn1OkLQaQOtd7AdjFuBW6fDH9tETpAMoAKd3ef9E,5162
142
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=PqhRKiuxos2kbcTVqkCBGPoFh-qDu5H1GQlbE_sgifc,5958
143
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md,sha256=xQrx2hrGlNBZk1L4Tm6UqvTquStqMSpX7_rCtlq0yQ4,1209
144
+ machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
145
+ machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
146
+ machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
147
+ machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=e0NW67tRIHsmQxHMhMfOemMKoOSb1SA2zsp-HqpxjFY,824
148
+ machineconfig/scripts/python/ai/solutions/crush/privacy.md,sha256=X0YXyzP5UWete_yAiSIpD7KAyCSTUBDGpNDF-RFH-o8,108
149
+ machineconfig/scripts/python/ai/solutions/cursor/cursors.py,sha256=wtzvvz48v8V-u-fSJ5R_D8PWRUSKZbWqeAUoSUY7p8E,463
150
+ machineconfig/scripts/python/ai/solutions/gemini/gemini.py,sha256=QkgoE4AS7KOOmnQhToyBG-yQ9vIdm2-fYcRhPjBi5K4,707
151
+ machineconfig/scripts/python/ai/solutions/gemini/settings.json,sha256=BMqBOmXeBuIqcakFu4lO6JLknQEpWVXnXjqRDzU5-Us,2346
152
+ machineconfig/scripts/python/ai/solutions/kilocode/privacy.md,sha256=oKOXnfFOdUuMlKwVf5MqeqCc24hZcjKE_e1MEXpijJI,117
153
+ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1dNzkUCS_vCX_fy2TisRtfg8DXH-D4N1iUVU,99
154
+ machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
155
+ machineconfig/scripts/python/ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
+ machineconfig/scripts/python/ai/utils/generate_files.py,sha256=gx39nVkmZZskR4FZRUtgUiHR2Pzej_yfvF_CjCHK1fI,14520
157
+ machineconfig/scripts/python/ai/utils/generic.py,sha256=nphGgmCCOoJYj_0FB55poFPLDVIZHCYSCQw_n7gIZe8,2136
158
+ machineconfig/scripts/python/ai/utils/shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
159
+ machineconfig/scripts/python/ai/utils/vscode_tasks.py,sha256=-TH1pRgjDWCJAtr1zp7a0tD2Ge1CS0SOcpcr27qaZjc,1555
160
+ machineconfig/scripts/python/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ machineconfig/scripts/python/graph/cli_graph.json,sha256=vwgjSe9Gn8LmT-_Cz5u16H4QTbKAWRcaVGhM6P0jVfY,371914
162
+ machineconfig/scripts/python/helper_env/path_manager_tui.py,sha256=N9-Bas1t75BMccBb6hhwGKLUfVP0Nmq7DfNFcdO9sBQ,6939
163
+ machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ machineconfig/scripts/python/helpers/helper_env/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
165
+ machineconfig/scripts/python/helpers/helper_env/env_manager_tui.py,sha256=-fTf-JepIklpiXCBaBrQOBJ1-Xl6VnqQEkaUKv1ntik,7055
166
+ machineconfig/scripts/python/helpers/helper_env/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
167
+ machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py,sha256=N9-Bas1t75BMccBb6hhwGKLUfVP0Nmq7DfNFcdO9sBQ,6939
168
+ machineconfig/scripts/python/helpers/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ machineconfig/scripts/python/helpers/helpers_agents/agents_impl.py,sha256=feo74reaBZ7-Zt-rpfWRrfC_i4rr2oft6M0VvzWeovQ,6961
170
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_help_launch.py,sha256=NbpYT8h3dhY1LFVjVQ4EmzMZkGc6l1KIveu3k4U3QqE,7129
171
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
172
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_helper_types.py,sha256=PA4EaLHm7lfExML8GA1bwxQDQipCTPLr70pGxMyDLDg,917
173
+ machineconfig/scripts/python/helpers/helpers_agents/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
174
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.json,sha256=1e87k_7ytyvOqmE8XPuU3qOHzlqCXzcoTNS3q4OwiKQ,252
176
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_crush.py,sha256=Y6CzLVEBs2YVnYbC5fJe8Csqc5TQMMyhwecr2_mWcGg,1852
177
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_cursor_agents.py,sha256=3sv2jzWZdkBzScm3jQBmaDeiDhz67qxcgZX_JrCIRhM,537
178
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=36GQN3yjx_mttz7UCA6Vz1ykZxMMjBU8gnjjaN5aJPc,2242
179
+ machineconfig/scripts/python/helpers/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=S757e0udxfEX9IRQrqm04B6iovkovAb9P7YGsdGFN94,1133
180
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/privacy.py,sha256=Q82sqb3PWngbT1U74HAXQfmeDlivpElB_REU3dmUdRM,5618
181
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aichat/config.yaml,sha256=9DbYNGq6oA8kJuFQXT-Osu04j-xMk6fWBOjpdlr4nvA,104
182
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/aider/.aider.conf.yml,sha256=hQOeSu1xCejGNUczyWpJQ0HDAjRKs6QjUQARDJvbt14,37
183
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/copilot/config.yml,sha256=NgAq9QSYMDJtDzCdsm8FK1mfq4Q7RpCFDBZlFe4_Kqc,32
184
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/crush/crush.json,sha256=S5mnVFLqKxgjzCJGAYQl2grTpL9ilwAxJGN_JDHKV84,182
185
+ machineconfig/scripts/python/helpers/helpers_agents/privacy/configs/gemini/settings.json,sha256=WSWzXLLNL1FIck0boRpQY-LJN9e-gRrIs6dlMsLNqvE,186
186
+ machineconfig/scripts/python/helpers/helpers_agents/templates/prompt.txt,sha256=4n7GShpw5Y5rnc9JEyBPuB8TBb2f2OhhxPnNpvk-RlI,313
187
+ machineconfig/scripts/python/helpers/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
188
+ machineconfig/scripts/python/helpers/helpers_agents/templates/template.sh,sha256=pSr1sdz6cizyXS3lFy5iRJQtmbFL2S2yA2lZ87qGOmQ,917
189
+ machineconfig/scripts/python/helpers/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_copy.py,sha256=RXyfA7oLq2-Op6XKG93jGXABzA3werPv5qzk-9omb3c,8653
191
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
192
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_mount.py,sha256=rHNQpXay0ARG_FFhdytidi-72nQY4rEYJ_vrnCOjGs4,6860
193
+ machineconfig/scripts/python/helpers/helpers_cloud/cloud_sync.py,sha256=7ww38mPmtpQTc_NDThSHvLJi-jJKLTjQEGLwRNDkq6Q,3568
194
+ machineconfig/scripts/python/helpers/helpers_cloud/helpers2.py,sha256=vRUAuDvtNUG1rZ4Ovq3e7A3tylT1jqttsBLLCW9TjTs,7318
195
+ machineconfig/scripts/python/helpers/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
196
+ machineconfig/scripts/python/helpers/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
+ machineconfig/scripts/python/helpers/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
198
+ machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py,sha256=Fa62SHvaLjbzOvaVN-uN3jcRG5V44NqU9LyReyBWlhg,8341
199
+ machineconfig/scripts/python/helpers/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
200
+ machineconfig/scripts/python/helpers/helpers_croshell/scheduler.py,sha256=Pmmn2lk8rmFTk3JcWxW88tLFPkICjkSbVtiTNHhASnA,3002
201
+ machineconfig/scripts/python/helpers/helpers_croshell/start_slidev.py,sha256=2AJ7m0180YxWFu3l9MJkvqGzZqtSIA5FprgzLqHFcZc,4940
202
+ machineconfig/scripts/python/helpers/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
203
+ machineconfig/scripts/python/helpers/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
204
+ machineconfig/scripts/python/helpers/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
+ machineconfig/scripts/python/helpers/helpers_devops/backup_config.py,sha256=YMVxInGQhhQF2TDsNGIGOM8fyLijpoKH2Mbne1piwIY,6217
206
+ machineconfig/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py,sha256=6qx-XdhbOyd5fMXHwSByO8M0qpoOyt560Iy-Hi_fO3s,12013
207
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config.py,sha256=wgMG7mGX7IlYhbfI_hjSj3W_yHmX31_Ib2FCHXjybAM,6903
208
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config_dotfile.py,sha256=WeG7-MpeQZXVqgfl6ylLbrROjy4oDS8UFSV18PbgMMw,14484
209
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config_mount.py,sha256=XvVCToIb_uVhHWTW0bHbtNWcx7iilQkgDNtn9KJz2fA,2572
210
+ machineconfig/scripts/python/helpers/helpers_devops/cli_data.py,sha256=7QdfpN8rtAjl5DaZDL1twc9QnA6WCtM14_3fd4fuCgI,3742
211
+ machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py,sha256=fjTbBMAYbXvan9S-cGuKgRYPyKStntNsSTLFK7QQTjg,14949
212
+ machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py,sha256=27cH5kekcCpNdviwe-H4Of43kjxJqgqFXHRrVWK7L1A,20140
213
+ machineconfig/scripts/python/helpers/helpers_devops/cli_self.py,sha256=6_LdbKPsxmkVny72FLDCj5RbGhzFL5NqRt16nNWIn_g,11410
214
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_file.py,sha256=-yV1kQkvCnUMkJ1cNgPLhCFJ9ql0xjevMOvjC95PvJw,7231
215
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_server.py,sha256=9uNNZrXeR_SncrqF5Dmr0PJkL4H5y6EZDfKiIG6YId0,6106
216
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_temp.py,sha256=K3rxd-AhzvuKuDpiGdVgfZ5KpMdYLOM8kfwGdGUQiCQ,2063
217
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_terminal.py,sha256=LlGxYa-ZYnp9fa0VHYEYShRg6gbEeHUQm5ME-J0wC8I,6538
218
+ machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py,sha256=OzbTQGTmBp2e5R8JuydcU8AVBQbMgromiURXt1wgzdM,8807
219
+ machineconfig/scripts/python/helpers/helpers_devops/devops_status.py,sha256=ePrIk6F9CqSRujiTZG9j-3V9KC93x2qBwJrAS2TI-Gs,20690
220
+ machineconfig/scripts/python/helpers/helpers_devops/devops_update_repos.py,sha256=h_V0sllK9a5vflvB32R44yTlK4rFmDuZacr6LhLhPlw,10141
221
+ machineconfig/scripts/python/helpers/helpers_devops/interactive.py,sha256=hpgMSUeNyXfu0FPYCrfY7zYfMU10cFjGjXluYr7O180,13137
222
+ machineconfig/scripts/python/helpers/helpers_devops/run_script.py,sha256=XojRnLi2aig84lPb4ATE6GTybok_TwHo7xZAdW_i6XE,9474
223
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/commands.py,sha256=SQcWmzJeVGIqN0E69DIuJOOFfjtbhvchEPbaLzEMUvs,912
225
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/device_entry.py,sha256=6cYbgS-wzErVm-LY1hxBQtLB-2ScD0bjC8jkjeaL7j8,335
226
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/devices.py,sha256=XCBAKU6DZRSqktTS-8BfqHSl2MLYjq6gtblK_iPy5iE,707
227
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/linux.py,sha256=xmOzK5lWcjZClVcA69k40o5kx4MP9LQm-cU_7-JPCnA,3458
228
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/macos.py,sha256=J4v0dB7FAOMLs_fsALTbV_SaN3c5kFxVEK1sYG_xT1c,3414
229
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/selection.py,sha256=R2iic91W3JlX9bgrh_qYPo73DHNbOgV7aHpSX9HcoJw,1784
230
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/utils.py,sha256=7nq7e1yWCtlLgB6iy5wDFycyBT2OSBn4ducXbSldKS0,1132
231
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/windows.py,sha256=IcVuVuV64z-nNnNWNAJYnjT_Xq_3Yi3TGj1ymjpFnaI,3469
232
+ machineconfig/scripts/python/helpers/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
234
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1,sha256=TdcjLlE6pJUFQydmkLyHXC4k-YCeKWwTYCdtW9qIxYE,2137
235
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.sh,sha256=vK5VbZD2zA-6qfdmNGyFs7HU5uIC-zN1ZiOcaYjY1x0,2344
236
+ machineconfig/scripts/python/helpers/helpers_devops/themes/choose_wezterm_theme.py,sha256=TtOIaq8YrVoPg128sWnOYiZdlT5Xjh8ANOguNJg4C64,3374
237
+ machineconfig/scripts/python/helpers/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ machineconfig/scripts/python/helpers/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
239
+ machineconfig/scripts/python/helpers/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
+ machineconfig/scripts/python/helpers/helpers_fire_command/file_wrangler.py,sha256=eSo8XQsYTplsiySKXPmF34UcTX54d0DfCDiQ6bQXkms,6263
241
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_args_helper.py,sha256=E5mdydDsyIVWdVdELvVq33ys9-jMOF3dUe5mrDFkNjY,4384
242
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_impl.py,sha256=22vOZUt84TdUwzmjm-DZiVliwPG4Z6z8i7j_SevNvoQ,11766
243
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_route_helper.py,sha256=YH3vMQQe_S74cNadRUVn_4cSvKKTF116XXSr4nmvC8M,5961
244
+ machineconfig/scripts/python/helpers/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
+ machineconfig/scripts/python/helpers/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
246
+ machineconfig/scripts/python/helpers/helpers_msearch/msearch_impl.py,sha256=BHcPJp84glqDEg06jfKAu-VnAzAHDImQuU8ncWQdjrU,9287
247
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/fzfg,sha256=5-YffQSd5-NLyXjPSw8QXiPD1aax1lQgUBRofEU4Hck,1195
248
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/search_with_context.sh,sha256=mOxFyFZn9jz9FZiG7RR3aCn9B9DmPawBs0OdgeiGPeQ,1827
249
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_windows/fzfg.ps1,sha256=qBGW2k0cV2iEUJ_7KMpgF3ZnR2TOjVNf4PaZKNfo8xQ,1754
250
+ machineconfig/scripts/python/helpers/helpers_navigator/__init__.py,sha256=o1wyu76ed8_iZqydmeUNBv4JLvcVx9GNuzz0qXDJ69w,812
251
+ machineconfig/scripts/python/helpers/helpers_navigator/cli_graph_loader.py,sha256=v_C3hZU4BTGWZFh-0VhNWVcH6lsFDiFFRmbpPp8g5ZQ,7099
252
+ machineconfig/scripts/python/helpers/helpers_navigator/command_builder.py,sha256=WTum9dOv73IeRkryFA6UDESg7t7GsSHNlKyb5_M8SvU,6527
253
+ machineconfig/scripts/python/helpers/helpers_navigator/command_detail.py,sha256=GRztKru3k8GJo2R1MH-WotbBkJHCx7YrNt6-8447VVQ,5978
254
+ machineconfig/scripts/python/helpers/helpers_navigator/command_tree.py,sha256=1KCBxW1Ng2bE7xhS63X2tNOBRjJvgHaa98I-L0RaRLs,1506
255
+ machineconfig/scripts/python/helpers/helpers_navigator/data_models.py,sha256=LIHzwpN_so_kOzBhyDRNgzATX9yJEYV73SibFfpqVPc,814
256
+ machineconfig/scripts/python/helpers/helpers_navigator/main_app.py,sha256=iom-xweZAlSjFWLBp3Dg7A8pThRm5qsMimnVqbOmPFU,8889
257
+ machineconfig/scripts/python/helpers/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
258
+ machineconfig/scripts/python/helpers/helpers_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
+ machineconfig/scripts/python/helpers/helpers_network/address.py,sha256=0VXkrR0L1dwIldb98-C2d2KJHIrA3Nfs8w08j3eQ4JA,5569
260
+ machineconfig/scripts/python/helpers/helpers_network/address_switch.py,sha256=nAkBHZX228G4vhxJjeTtNnQmSk40QwINPiYTrvomfq4,2743
261
+ machineconfig/scripts/python/helpers/helpers_network/ftpx_impl.py,sha256=ObLz6ltByQMQjFQs_TgzZaKxWF9W_V5ncuDILFMBtlQ,11895
262
+ machineconfig/scripts/python/helpers/helpers_network/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
263
+ machineconfig/scripts/python/helpers/helpers_network/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
264
+ machineconfig/scripts/python/helpers/helpers_network/ssh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_identity.py,sha256=AAlRlNCX3Rj88KnzMgdTxSkVD1JKYOrG3q1wV61cHEg,2937
266
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_key_windows.py,sha256=UmICnGaFEJ-mnLDNMxAQRHzins1nXYytmjlzWQmllR4,1125
267
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_ssh_key.py,sha256=REWbzI0vHl7X5t3RVRvxHLLXOfW0QwEt8FAw3tjqoLE,8194
268
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_cloud_init.py,sha256=i8XEdnoRrSQeonbcKpdgNruXkkwzsK81QMDZlF9xBSo,1617
269
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux.py,sha256=akoHHRjucFTc9acUs1QtJC7LXk_1N8J5Oj6bFZrFRVo,18901
270
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux_utils.py,sha256=lbeG-wYBsxtzKnhcqMZYi_01LFdAc0Z4byw-PakXnas,1308
271
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows.py,sha256=o34Qs_Ridf5d355xWjoTMmduDsd7T6sfyZlL7_THKGs,15350
272
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows_utils.py,sha256=vS4WTEKHbTR2RjOTbm9j2hnUObgxH7E7S_xcYb7hk8Q,1312
273
+ machineconfig/scripts/python/helpers/helpers_repos/action.py,sha256=kFR8rznnAIvmmuY7N-rgDg1z5jDBwqlHrnAPZtE2548,9769
274
+ machineconfig/scripts/python/helpers/helpers_repos/action_helper.py,sha256=h5upRh0nMne1FLaQsZzdTl50Ed-yfT_d4OP971VokDM,6126
275
+ machineconfig/scripts/python/helpers/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
276
+ machineconfig/scripts/python/helpers/helpers_repos/cloud_repo_sync.py,sha256=VRYXJmt-xpLzqOuqwOkd_otppwHm7xlteIkc9ZJni1E,14664
277
+ machineconfig/scripts/python/helpers/helpers_repos/grource.py,sha256=fEofCvK_Ds8Lmw5LhVBsnJz-UVmA49MAuBW8ZBNCRg4,14704
278
+ machineconfig/scripts/python/helpers/helpers_repos/record.py,sha256=Q4hNVX_uO7dimcFgGElH2P-J1yJGZu7tjP81BFg5jos,11626
279
+ machineconfig/scripts/python/helpers/helpers_repos/repo_analyzer_1.py,sha256=72ahcOdEbcJamrjFSKVWn5ATbxUyL7uNA8XU8O63_wA,6269
280
+ machineconfig/scripts/python/helpers/helpers_repos/repo_analyzer_2.py,sha256=WGRCZIGQzZGPVdUewEwzxLxSn7neTFK4jhkSgig7-Zk,14251
281
+ machineconfig/scripts/python/helpers/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
282
+ machineconfig/scripts/python/helpers/helpers_repos/update.py,sha256=WrLK70EXVGxX0v49ZK3kGr2PumCmg4bnZp2hHYcTV0Y,10750
283
+ machineconfig/scripts/python/helpers/helpers_search/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
284
+ machineconfig/scripts/python/helpers/helpers_search/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
285
+ machineconfig/scripts/python/helpers/helpers_search/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
286
+ machineconfig/scripts/python/helpers/helpers_search/script_help.py,sha256=9rqKA8W8ptI2p521L8bWBgwnM5RT39bZSlu5UTAea2k,4041
287
+ machineconfig/scripts/python/helpers/helpers_search/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
288
+ machineconfig/scripts/python/helpers/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ machineconfig/scripts/python/helpers/helpers_sessions/attach_impl.py,sha256=8PRbwAF0BZhnD-dRd02QG5eRhmE1utrFhNmPWOPCUzc,3587
290
+ machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py,sha256=rN0rR8kGS4uB6HkFwK_Ux2uVaMioLGrdLvdu0V_q7r8,5659
291
+ machineconfig/scripts/python/helpers/helpers_sessions/sessions_multiprocess.py,sha256=Qz4TaxDN832TXgznmY_7hLlDFmUp5vp5t7IBCT1IEns,3229
292
+ machineconfig/scripts/python/helpers/helpers_sessions/utils.py,sha256=rKkTZ4C32OqMDSTt2RkhPf7ohjD-v0gbmSPUlfUrjt4,3105
293
+ machineconfig/scripts/python/helpers/helpers_utils/download.py,sha256=6N5N-jloQhW-a5dvBBNVyQDY__iXpJfe4OtbKXUC934,6711
294
+ machineconfig/scripts/python/helpers/helpers_utils/pdf.py,sha256=zMcJJ-38YOnF8pQShWqenX5y1EyWdfDW7PZFt9MUiKQ,5079
295
+ machineconfig/scripts/python/helpers/helpers_utils/python.py,sha256=B9baIFic2tvdzabjR1lrHcxIbFVvN7tmL76F01lXHNs,8100
296
+ machineconfig/scripts/python/helpers/helpers_utils/specs.py,sha256=zKrQdpjeoEYPd40gEmUi_lLj-Tus3I2wHrqE_ZKQKYs,9207
297
+ machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=S6WuBYXdm4roQc1YPjSgWBmDFOgWD9hrRw6HHbHfpbE,2174
298
+ machineconfig/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
+ machineconfig/settings/atuin/config.toml,sha256=lqICFNRcMewNHTxnWHb6JjQPtDfLD10kYfpVfdVfyc4,11388
300
+ machineconfig/settings/atuin/themes/catppuccin-mocha-mauve.toml,sha256=X66L7YmWQ4ClPeQoFhXkkWXPrmpLwWfHcDNbvnc-K3g,218
301
+ machineconfig/settings/broot/br.sh,sha256=7CCJflIAirkiuo1suDCT8BzhVzDdJWEfbAxNDG4VPSI,1455
302
+ machineconfig/settings/broot/brootcd.ps1,sha256=BB8uGnoVywxFWSgwsHxlbS8V4W_Qom3L1SedekGpgWA,877
303
+ machineconfig/settings/broot/conf.toml,sha256=-skF2U0iojMZ2OD-3HViWAkyNKonfcvdZKF6LZKck34,56
304
+ machineconfig/settings/glow/glow.yml,sha256=59eFsIPBXRgJSVb6kcA7XHkWuLe0_wNandhc9KGykmE,245
305
+ machineconfig/settings/gromit-mpx/gromit-mpx.cfg,sha256=NW7a4OmGPpMCiFkQNNFNdUf5VqL1DN8Tkiz2oVRt7Gw,1067
306
+ machineconfig/settings/helix/config.toml,sha256=uXHZEP1t3SeF9HYuRoWHrwnLyjTmJdw0S607Ej4tVY4,1352
307
+ machineconfig/settings/helix/languages.toml,sha256=l0OYgoKvlyed15BDdcd4dTH6BzydhHMjgvRJ9W8MvE4,874
308
+ machineconfig/settings/helix/yazi-picker.sh,sha256=1uFyRFwaIRuZKwrfxhryHw0TSj5Myiv5INmgJfgLOkA,352
309
+ machineconfig/settings/keras/keras.json,sha256=uSJa-eCun6xl6xvlVP-totLgWDw7etCMzxZT5jS2mgw,115
310
+ machineconfig/settings/keyboard/espanso/config/default.yml,sha256=RBIuA4AsAWB8BoRojQhbkVV0LtjL0sYFPaLtgbWookM,1685
311
+ machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42WqGLCZkwi5l8LmbDUuBO8XV_jIQ,1567
312
+ machineconfig/settings/keyboard/kanata/kanata.kbd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
+ machineconfig/settings/lf/linux/colors,sha256=uSW9O3CkiVomxK8-JN8hQRcM71yADuOSjichbfBFTpg,4148
314
+ machineconfig/settings/lf/linux/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
315
+ machineconfig/settings/lf/linux/lfrc,sha256=Qg3HlAIspkubYTj8xONGxC6SouQD2TSzGGaIdlFrSQg,5227
316
+ machineconfig/settings/lf/linux/autocall/delete.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
+ machineconfig/settings/lf/linux/autocall/on-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
+ machineconfig/settings/lf/linux/autocall/on-quit.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
+ machineconfig/settings/lf/linux/autocall/open.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
320
+ machineconfig/settings/lf/linux/autocall/paste.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
+ machineconfig/settings/lf/linux/autocall/pre-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
+ machineconfig/settings/lf/linux/autocall/rename.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
+ machineconfig/settings/lf/linux/exe/cleaner.sh,sha256=NKK30rUcrHXnwy8srylyaWL-XJdDWJIjF4a3mfbdEsA,209
324
+ machineconfig/settings/lf/linux/exe/leftpane_previewer.sh,sha256=KXMq81hIvU9uzOuanluVcxVgJmEOYy-5sUbzcuc9b6U,200
325
+ machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=qU2AtGR22UWR3Isw5UkJ4OZdxW2VFR3FOaIEJDVjYTg,771
326
+ machineconfig/settings/lf/linux/exe/previewer.sh,sha256=sjiU6S_P8ExSmCPGz-Uwmrrn075rBmj_-3H4Cvr-ROI,1259
327
+ machineconfig/settings/lf/linux/exe/previewer_archive.sh,sha256=MGAlXrso-RSrvBbkFnmBHSGoPB54ZHtY_s5Qd1-fNZM,3536
328
+ machineconfig/settings/lf/windows/cd_tere.ps1,sha256=kiW7LiE0Pe2Pjq_4CO2N36wHx_0N-9fXXUDUvHWCOuc,203
329
+ machineconfig/settings/lf/windows/cd_zoxide.ps1,sha256=gQKJPa_YDmp5BiCKeYYHkZB_p7py8EXIhXtZi6vnN8o,159
330
+ machineconfig/settings/lf/windows/cd_zoxide2.ps1,sha256=9JwMeQdRxgEA9EGSlDh-XOFgIxQH3Dl9fuAWYnMFROs,141
331
+ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8DS4my2CZpjng,2991
332
+ machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
333
+ machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
334
+ machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
335
+ machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
336
+ machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
337
+ machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
338
+ machineconfig/settings/lf/windows/previewer.ps1,sha256=Mfg1WDXIBu0GVECWd11MUCBzE20KVfvu63uhcmncZro,206
339
+ machineconfig/settings/lf/windows/autocall/delete.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
+ machineconfig/settings/lf/windows/autocall/on-cd.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
+ machineconfig/settings/lf/windows/autocall/on-quit.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
342
+ machineconfig/settings/lf/windows/autocall/open.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
343
+ machineconfig/settings/lf/windows/autocall/paste.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
+ machineconfig/settings/lf/windows/autocall/pre-cd.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
+ machineconfig/settings/lf/windows/autocall/rename.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
+ machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJudwD3SVGhQ,1958
347
+ machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
348
+ machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
349
+ machineconfig/settings/linters/.ruff.toml,sha256=lbB4ctZz5Y91Ft8LONqbiyF5vtxXj2IeC3TJKD-4Sus,1708
350
+ machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
+ machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
+ machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=EM__UsSkXDIIN7tIdMV-tkQV4z_jUmDCmHhjamEyiUA,651
353
+ machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
354
+ machineconfig/settings/marimo/marimo.toml,sha256=tqEKoinBB4KpbOhqMbSjRhNAudpGiT1AvY05f3P2clc,1356
355
+ machineconfig/settings/marimo/snippets/globalize.py,sha256=HAS8A-gm1bW0rO7tF8SSvuE5bJMksfIpgNpMThAfzq4,600
356
+ machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=J7k_pvDNlnf21AK3Mw6_1wz2tb3yq8Rytq3PklwoFbY,862
357
+ machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
358
+ machineconfig/settings/pistol/pistol.conf,sha256=zjhSJDA3X1TDLRfimnVgJT_Dt54lDJc5hlTBB649d5A,378
359
+ machineconfig/settings/presenterm/config.yaml,sha256=xxuapoLwxTJRz7nNXZ-7fiXFVclo2UxC3ENuNgDkpMg,1872
360
+ machineconfig/settings/procs/.procs.toml,sha256=BNHaEMJNL9KH3KZhewO3UdNW2LeSxv2ApXt4Lj5mf6M,2656
361
+ machineconfig/settings/pudb/pudb.cfg,sha256=CdiSeSRSXwSIFkCt5oIILM_QivUoRy9PpISLATponz4,508
362
+ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLaLOGX_VTuso,97
363
+ machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
364
+ machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
365
+ machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
+ machineconfig/settings/shells/bash/init.sh,sha256=JYbPl7-f6XwnB24IW1jjfyRxQiq5knrRjcw8Hl-RcBk,3829
367
+ machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
368
+ machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
+ machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
+ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=f26BRsxBXN-JNFm3SvJ-3gN2VSIsEN9KlJ6z3j5IqNE,3519
371
+ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
372
+ machineconfig/settings/shells/nushell/config.nu,sha256=6gPrVo01cLXI7WMaeC12rxSEGWgfIwq7V-QGunC3InE,1117
373
+ machineconfig/settings/shells/nushell/env.nu,sha256=w90OQSYTgl0O2flD9p8I1rViw1229L6wGKDVJQNViCs,764
374
+ machineconfig/settings/shells/nushell/init.nu,sha256=-JmUQZPBS8jU4benz8JxlIr7KLcCxYBX_59GTg0DUSA,4761
375
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=iZ3jcE0c9wgtQ0AqEBsl5IRlu2CyZUzD1pcO-y71aDg,4745
376
+ machineconfig/settings/shells/pwsh/search_pwsh_history.ps1,sha256=DfUTqlHKlb2po7eY4UQ8DaMkrdiQV1IcNFetgsV4VP4,3117
377
+ machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
378
+ machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
379
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=iBuLYFpi_5nkW_MYemw1n2DPtET9jae3Q5BF5dZrSfI,6453
380
+ machineconfig/settings/shells/wt/settings.json,sha256=BaJg6jljm6Bic6zwCcBSlKaSsXn8n_PGm3Gif1lAZUg,10564
381
+ machineconfig/settings/shells/zsh/init.sh,sha256=h1fBIOPO6TJWnTRZRyn1o7So6Xp_yTSLFtQESLehfrE,3304
382
+ machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
383
+ machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
384
+ machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
385
+ machineconfig/settings/television/cable_unix/alias.toml,sha256=OS2OVD_h9zbnnGGlAbXjr5QNv0fIC-7_I4kzENpeTrk,206
386
+ machineconfig/settings/television/cable_unix/aws-buckets.toml,sha256=zIfV_m_8r6E_zMflm7qRRlWQSS92omYxZZKOU0BI5kU,291
387
+ machineconfig/settings/television/cable_unix/aws-instances.toml,sha256=gIXqWUzkZXmd8DsIAPLkwFnhsE7qWzZmohxg7-GGe3I,415
388
+ machineconfig/settings/television/cable_unix/bash-history.toml,sha256=KH-IOZlIU3Mg-RVj-QNHrBBYyFqlaaV_bGQkXhzJqZw,319
389
+ machineconfig/settings/television/cable_unix/channels.toml,sha256=2SG5RPwK7EyfGODDOFj2-Cp7mqSEB_bfidzNr-N-Y_I,399
390
+ machineconfig/settings/television/cable_unix/dirs.toml,sha256=TtyxgiXpvUOD848FOxOA2lFGjI3hNfANMYX9D9HPMOQ,233
391
+ machineconfig/settings/television/cable_unix/distrobox-list.toml,sha256=2NrbpBhjhFpl9JRLbf0nO49c6KbX_R0wxeSWP9EXyIQ,1222
392
+ machineconfig/settings/television/cable_unix/docker-images.toml,sha256=JtpH0aCT_1FCv-vAwtpz6E4zhChHiqZWKtuh0ubgBr8,304
393
+ machineconfig/settings/television/cable_unix/dotfiles.toml,sha256=wT39w01vvgIF4i8ZkhOXF8_ZL-5h0x-QaaoXstkNXcQ,217
394
+ machineconfig/settings/television/cable_unix/env.toml,sha256=Oan6MJh17aQ4bzCj_iXwYQLmPVjRBBhY8Yvhh_X11tU,317
395
+ machineconfig/settings/television/cable_unix/files.toml,sha256=wjhvIzAotarioKHCyWCWXQeKRfWrkXDSHnCYqSQBCGo,242
396
+ machineconfig/settings/television/cable_unix/fish-history.toml,sha256=KBnYIPgBQzneI-NtSSEZWQux3JNW9vc6XAQpL6lBx0E,167
397
+ machineconfig/settings/television/cable_unix/git-branch.toml,sha256=--u28VWDNvHhpN3a2lYYP0_VlYHTnM1Fr69-LwrxN8k,290
398
+ machineconfig/settings/television/cable_unix/git-diff.toml,sha256=hSdNv1c_fGNN0HWmeqoia5df-dnYw4ruBLo6RqgqCoA,225
399
+ machineconfig/settings/television/cable_unix/git-log.toml,sha256=IMCrJTtbC_dZf4GArBbgSB-RrBMvE3jIwt9fLl14T7Q,437
400
+ machineconfig/settings/television/cable_unix/git-reflog.toml,sha256=l3x11d_01S-4WXCmD3Ndf6jFvJUn5rLiPQ3a2vj7NjA,301
401
+ machineconfig/settings/television/cable_unix/git-repos.toml,sha256=qUmxBh2LN3VUEh9rzqsPbu613Xxsrrr7hBeH50EJkMI,630
402
+ machineconfig/settings/television/cable_unix/guix.toml,sha256=KEici84LVpAUDJIbOged6-z4MxIvBfROCNZAUGqpnZo,532
403
+ machineconfig/settings/television/cable_unix/just-recipes.toml,sha256=fxw88Wgav40Z6UFD0_ysTKjypC-XKzquoCkYDWg7b_I,365
404
+ machineconfig/settings/television/cable_unix/k8s-deployments.toml,sha256=2ZcGyWDSLO-ufZBz7yEjoq8SmXLqmuBycYn8lmeenco,896
405
+ machineconfig/settings/television/cable_unix/k8s-pods.toml,sha256=2uh2PdwzA_Pl-6OcDzyEJgJySniWizXP6jG7LR7xn2s,1280
406
+ machineconfig/settings/television/cable_unix/k8s-services.toml,sha256=SSNnu0QkgCzEkqjOTCETfkPuEtmK3Fv4d0qGjzh9qCc,872
407
+ machineconfig/settings/television/cable_unix/man-pages.toml,sha256=Bu7qeG1UwqK2oYPVIxPC8LiAtMXRNgyPCPz1rfbkqew,498
408
+ machineconfig/settings/television/cable_unix/nu-history.toml,sha256=y3YQKbqaefTOs4NbM6aIFCCYjG7HT5l6r4NsbURawws,176
409
+ machineconfig/settings/television/cable_unix/procs.toml,sha256=I6C9-4OY8fv763MQk1PBhLDOdZnz6bCySPwaSicdLI4,478
410
+ machineconfig/settings/television/cable_unix/text.toml,sha256=PAz0-5ucdcXX5NcKKDTSOD2Aa4vaLo-tk4Q6FQ-FN1g,483
411
+ machineconfig/settings/television/cable_unix/tldr.toml,sha256=tL0f4rx75ue815qD-k77y5CIQxoYCkbfwzp8sxarVqo,330
412
+ machineconfig/settings/television/cable_unix/zsh-history.toml,sha256=umeTeNyu7xEkgI_B__Z3RQ8QxXBAqbI3nvhMVbjgDQQ,236
413
+ machineconfig/settings/television/cable_windows/alias.toml,sha256=8kui74-PjGBpX0EIsD8CJFTKf-8QRrICRLv7Peoqgdw,195
414
+ machineconfig/settings/television/cable_windows/dirs.toml,sha256=MakXIZdToEVf3CifckDxN9-5kiumPzXHtFC-kQlh5Zs,217
415
+ machineconfig/settings/television/cable_windows/docker-images.toml,sha256=JtpH0aCT_1FCv-vAwtpz6E4zhChHiqZWKtuh0ubgBr8,304
416
+ machineconfig/settings/television/cable_windows/dotfiles.toml,sha256=spNdMDuez2ZPG43UGeARC6-Y3U4FgXtN3512cXkWRLA,244
417
+ machineconfig/settings/television/cable_windows/env.toml,sha256=jLLIXFswa7dHUnQaMT8_GfnObfz9WVRfMJ129q_crnA,388
418
+ machineconfig/settings/television/cable_windows/files.toml,sha256=0RPhmY6sInx9t6ZdwGaUWbwZnk-3r4syp3OFW5l-Lww,269
419
+ machineconfig/settings/television/cable_windows/git-branch.toml,sha256=--u28VWDNvHhpN3a2lYYP0_VlYHTnM1Fr69-LwrxN8k,290
420
+ machineconfig/settings/television/cable_windows/git-diff.toml,sha256=hSdNv1c_fGNN0HWmeqoia5df-dnYw4ruBLo6RqgqCoA,225
421
+ machineconfig/settings/television/cable_windows/git-log.toml,sha256=IE9Z4qAvihUQbmFA7irUQAVqyK_UXGr1x-nyGP6udAo,297
422
+ machineconfig/settings/television/cable_windows/git-reflog.toml,sha256=AdAJAzLsbLW1-qXLRhNkNOnZVDilJh236ImEhz-l-Uk,249
423
+ machineconfig/settings/television/cable_windows/git-repos.toml,sha256=X4S0mYFR4GeDEaa9tyuy2ixeNedEdkgtipCctNeGiAY,498
424
+ machineconfig/settings/television/cable_windows/nu-history.toml,sha256=y3YQKbqaefTOs4NbM6aIFCCYjG7HT5l6r4NsbURawws,176
425
+ machineconfig/settings/television/cable_windows/pwsh-history.toml,sha256=MTFYcq4Mg1QUqM4KmKrRIpqSMKCtbElhCwAl0v6AHXY,370
426
+ machineconfig/settings/television/cable_windows/text.toml,sha256=aNUd8CAdshw2vsHbawMJqBkbA9Zvw_L6giESJZUeiwo,409
427
+ machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
428
+ machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
429
+ machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
430
+ machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
431
+ machineconfig/settings/tv/config.toml,sha256=iqCxg0G4F7_UzGCiN0tIOybhur6jVOrgOivvKKfto4E,6574
432
+ machineconfig/settings/tv/themes/catppuccin-mocha-sky.toml,sha256=KOHWAvfOShalge5nX_EwbJT7ZvjhOsAPk-hzXRmhFm4,506
433
+ machineconfig/settings/wsl/.wslconfig,sha256=ufmRHkuClLx0uAQ_HAXINIQsmev23fwkEy3NMjyyPZQ,233
434
+ machineconfig/settings/wt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
+ machineconfig/settings/wt/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
436
+ machineconfig/settings/yazi/init.lua,sha256=5ihDgbs9I1wxLpSUBJMBs4ecZ39P-MvMj25jWPbI0sY,1609
437
+ machineconfig/settings/yazi/keymap_linux.toml,sha256=tWMS0JbDXQ4fh-4G09NKKmWFDBat4tU8ysnuqx8pwWs,2338
438
+ machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
439
+ machineconfig/settings/yazi/theme.toml,sha256=YIzoyrdGQA-srv41M0z-O1avoQMM5_Mw9lwUCDagFio,56
440
+ machineconfig/settings/yazi/yazi_linux.toml,sha256=8p0qEp6pDj7m_GFPrahId0gw8MFhIXDxRyKtBZHLrpE,2900
441
+ machineconfig/settings/yazi/yazi_windows.toml,sha256=kiNr_lFyMLAa9CGeTW3hKcGCttqG76dOGvkK4tzQCLc,1535
442
+ machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
443
+ machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
444
+ machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
445
+ machineconfig/settings/zellij/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
446
+ machineconfig/settings/zellij/config.kdl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
+ machineconfig/settings/zellij/commands/monitor,sha256=b90hWtmb2Romv_g2znRxyoVBuhRcDsXFIjihB2SxH3w,210
448
+ machineconfig/settings/zellij/commands/standard_panes,sha256=iGZpkJRDPVaw423REaUGwyvtd3IOGVlLQznFYNdz16g,1046
449
+ machineconfig/settings/zellij/layouts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
+ machineconfig/settings/zellij/layouts/hist,sha256=ryF00zllHpYPpqr6xyBleY7rb1oQSMT2GcMiiipoH1I,303
451
+ machineconfig/settings/zellij/layouts/panes.kdl,sha256=KlhKtelBy4Z2ENV_pix4xE7NHVc8sT5gLa745eoqn2Y,417
452
+ machineconfig/settings/zellij/layouts/st.kdl,sha256=5db7sMcAJdxyngkzBV18etExeIPGgJ_0pLwRBcnk8wE,1173
453
+ machineconfig/settings/zellij/layouts/st2.kdl,sha256=EDxOxXGlwvaH1RH4rv3m2mYPx6QO3Q89-caTQr4tjcs,1591
454
+ machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWDivPg0i0drpM1Biw-tOnNZVjiZU,163
455
+ machineconfig/setup_linux/__init__.py,sha256=-OGRER8JTu_qhXBHQl0noB6vkVW_y2JA8BlK7Iwq7r4,348
456
+ machineconfig/setup_linux/apps_desktop.sh,sha256=l1jvwK-0zxlcpn7ia7PMWmBr3OddKBmzkpUXwGl5czg,2769
457
+ machineconfig/setup_linux/apps_gui.sh,sha256=lFPYq7H2bRogPwW6QoEuSr9GnTjHS-jRM_eYg2rjOmM,2301
458
+ machineconfig/setup_linux/uv.sh,sha256=cyegPmMMB7B3OnVx9KxZiU1JQU3Z_oqboUgwzmW2W40,487
459
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=oUPfobNsxPiJmbuMjr389HSrAduSapCHbtQOjCWDVh4,1605
460
+ machineconfig/setup_linux/web_shortcuts/live_from_github.sh,sha256=Ik51YDkaCEJnmhbL88JNHEzVnAUeKk3ajM5w7WPJmPY,1186
461
+ machineconfig/setup_mac/__init__.py,sha256=BOsP9N33npuqSxs-no7Y6DLJz03Av09B--_1H5a0xDE,421
462
+ machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
463
+ machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
464
+ machineconfig/setup_windows/__init__.py,sha256=bB4HzU4_bvISIHdJDYmLu0CV7RtVrMRKzcWZ7q_JWco,236
465
+ machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
466
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=3YMLKmUdDiK-rjCYl5x7nCy5tONv3K0Iy6kLgeRG9Gg,1946
467
+ machineconfig/setup_windows/web_shortcuts/live_from_github.ps1,sha256=jOGZfyML4yRmQRcYE50vORUc3GDCzDlWQ3ZqJnSpODE,1415
468
+ machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=ZPOlCGIcPrbr6CM3Q8BgaTgttYHj0tSLTFK_k3wnctU,655
469
+ machineconfig/type_hinting/sql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
470
+ machineconfig/type_hinting/sql/base.py,sha256=atQ6RygUWgRIF9rbuKgXYx-880qmOtP0Ht_rXCh5Y0s,5462
471
+ machineconfig/type_hinting/sql/core_schema.py,sha256=QG_y2OCT6xP1B3bfd1oyblZZybUhrjmgvHoloIVqQOM,2711
472
+ machineconfig/type_hinting/sql/core_schema_typeddict.py,sha256=PZ77liCN2ESOaWNeJPb0hjhw-Mv0BteYbTiiyrSgZ10,1033
473
+ machineconfig/type_hinting/sql/typeddict_codegen.py,sha256=FFnn5FckphwYWUWha7mCF8_DcUoPbmGgzCy_r8wPbSs,8063
474
+ machineconfig/type_hinting/typedict/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
475
+ machineconfig/type_hinting/typedict/ast_utils.py,sha256=gqQmxAh9VO3h9NJs-QJ4yMBT0HtyfjG0RTh7lk0-IxY,5430
476
+ machineconfig/type_hinting/typedict/generator_helpers.py,sha256=lQhtMouz8sddMciV8GqiYClXRpNGaPLGXuG-HdKNhTk,14641
477
+ machineconfig/type_hinting/typedict/generators.py,sha256=a9qNeSkj5SUFxF5UEKmPSTTBPRtBc2mTNJSDjBgPdk8,10269
478
+ machineconfig/type_hinting/typedict/polars_schema.py,sha256=rKMbFaL5FsSnpDQUlEomQSUn7Qj6eZ9co-9-BbsdY44,666
479
+ machineconfig/type_hinting/typedict/polars_schema_typeddict.py,sha256=L7whEJXC5P-IAIjlCjmoyuA6rqRkMIud-cGLNMSgij4,2431
480
+ machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
+ machineconfig/utils/accessories.py,sha256=dqCzgzY7lj-CBRqPrIU6bXQp0pt09ThQfz346pCLZkI,5233
482
+ machineconfig/utils/code.py,sha256=jMJ73TRTWHlk1G3gjOLhAYVq2SjEYf4vgLOpYUL5q4Q,11276
483
+ machineconfig/utils/io.py,sha256=QlUGzULrdSm5ayiO5aLqjx3yekfMbAULhgJXh8PbVYA,6958
484
+ machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
485
+ machineconfig/utils/meta.py,sha256=8nLCvhODltX8OnHjuc-oUAniRW-qYo8HKmJLVxUuUjs,10707
486
+ machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
487
+ machineconfig/utils/options.py,sha256=W1osr13sHjkaG2Px0AimlIahg4GM1_pcTDizE54NIHo,10627
488
+ machineconfig/utils/path_extended.py,sha256=5IOpkROgQ2bumavGsheo1vb6D9q4z_k1BpeMUNbmtkQ,50991
489
+ machineconfig/utils/path_helper.py,sha256=RVis6gsJ9mEUPdh3tpyM7F2Ow8TruXpI1AoFqWInr7g,10368
490
+ machineconfig/utils/procs.py,sha256=0HzjDIdp3qkWsn8w-l0f3RJfgnlCDAWLPyPgjsiGogQ,11556
491
+ machineconfig/utils/scheduler.py,sha256=4LirDDlXg0zBDqpsF8FVFdGHEHbt6beUsbqWIBSlu4A,14469
492
+ machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
493
+ machineconfig/utils/source_of_truth.py,sha256=33B-PPzv_3SQgr97G_FHQr7q6DkiKBeiECdFI-_a3yw,1035
494
+ machineconfig/utils/ssh.py,sha256=5xVKaFubIsd0rk6uCWs--QhvcZhUQ-VShQ_LuyHM6UY,18890
495
+ machineconfig/utils/terminal.py,sha256=7zi33CpnoEHFoopgzgtNtY1hDOCp0kxeFxzmjTmGo4k,4265
496
+ machineconfig/utils/upgrade_packages.py,sha256=8ba8P_D_LPtaQSdqhEKqmI-NVOtVhBls_1ANBrOixO8,7174
497
+ machineconfig/utils/ve.py,sha256=Fu4iV4g3zTeOv1MSChI_lUkmnyZCpIbgCykObq4ELSc,2506
498
+ machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
499
+ machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
500
+ machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
501
+ machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
502
+ machineconfig/utils/files/ascii_art.py,sha256=h1w7N5h7cWe4w15Ga-8ETMWUOLXDAFnclPzBHbimQWc,4767
503
+ machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
504
+ machineconfig/utils/files/headers.py,sha256=sUIOSE_f1NrlHQR5hguqpMZfaQleS_cBFjCeWAiSDKo,3404
505
+ machineconfig/utils/files/read.py,sha256=o1cyZzA1E8DmWZym2PE15t9lLu7a4CGRKZ8F-76m4ug,4605
506
+ machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
507
+ machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
508
+ machineconfig/utils/files/art/happy_croco.txt,sha256=VwuSikjKVmdc_Kvd0IyclxVOYo1v4ZBaD_i1XOv7hRo,967
509
+ machineconfig/utils/files/art/water_croco.txt,sha256=5SPK6W3TQe6mO9eFbDIZ4n1rNAjVbfEfQEQOMsf0rQ8,623
510
+ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
511
+ machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
512
+ machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
513
+ machineconfig/utils/installer_utils/github_release_bulk.py,sha256=iHwFdPvezi5wkmUNaEGyFpN3Eerg9Z1o1-nI7mJXock,5409
514
+ machineconfig/utils/installer_utils/github_release_scraper.py,sha256=-sxYirnF-BmuUAJjKD7phRs3LyQIScwvdoeIfVsxXas,4748
515
+ machineconfig/utils/installer_utils/install_from_url.py,sha256=1cE9DTV6DnRg98YGtj81-RZgaZPJdLDn3P7_3ZvZ8yQ,8683
516
+ machineconfig/utils/installer_utils/installer_class.py,sha256=D6BATWDMdzAJFuVJQmWQbR-Iqk0v9zTMdy7L0ZX8DTU,14911
517
+ machineconfig/utils/installer_utils/installer_cli.py,sha256=6k0hetXXCiSzFZ0RikCHID8QYAMS7xJv6Ob34VCeb6k,8393
518
+ machineconfig/utils/installer_utils/installer_helper.py,sha256=Q_XM9PJ9tBrZDqTcu3YZ-zrZ3vpi0CQwhUMFovn7RD4,7272
519
+ machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=gW7Lw4HtLNFeUPX9Nr16bLJIFLKgVuzRa8R-3mzTIvc,9848
520
+ machineconfig/utils/installer_utils/installer_runner.py,sha256=mMizhXdO4QDrPgWLPMCuQhHnE9WHx_sx8wNRqBR4ILo,7967
521
+ machineconfig/utils/options_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
522
+ machineconfig/utils/options_utils/options_tv_linux.py,sha256=W87UX-MDnDvGSjkr_AN5ti6lIi81HvX5XyTXUS2-lmU,8054
523
+ machineconfig/utils/options_utils/options_tv_windows.py,sha256=mDSyAENfhxMoDT6Tut8EDUN7gO0uXq46yDgTbEGEm9c,4195
524
+ machineconfig/utils/options_utils/tv_options.py,sha256=X3nv5KNfKxA9fS-auJ_sZR3rjw-dSDXexua-xf6aCqc,1707
525
+ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=wN9n96t5qplpDc4S1mw1qdoUfp0uA4A1vLhj-mvJzQc,2060
526
+ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
527
+ machineconfig/utils/schemas/layouts/layout_types.py,sha256=RIn-N5gqqA4aAz5qBqeJSDGyP-iIZ9WVOTO1oFnEm0A,2485
528
+ machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
529
+ machineconfig/utils/ssh_utils/abc.py,sha256=3YxLMIwqo9kO_Qt4EUK37tgYRSAxCQYJrU_LnaJHC8U,103
530
+ machineconfig/utils/ssh_utils/copy_from_here.py,sha256=YGIKqOnQgXHye-b6t5L67pwl3KIXKYdgwxm4DbGz2L0,5774
531
+ machineconfig/utils/ssh_utils/copy_to_here.py,sha256=ibDivdzzKC7-1sc6JQn4mzreSY8Tbm4etIsAZrbAZv8,13892
532
+ machineconfig/utils/ssh_utils/utils.py,sha256=hPQH9N1xyR9wWWne1VWMTaSPiZysdOXk-PE5QJL4iuE,7043
533
+ machineconfig/utils/ssh_utils/wsl.py,sha256=emECrPITxBaiy3XTFfMfdby0taPkTDYr4m2E63askb0,6295
534
+ machineconfig/utils/ssh_utils/wsl_helper.py,sha256=n3FWkhTfSGMbqkg6whH2sOP0bcnMLeQZ1O_ZmYlfv6U,8273
535
+ machineconfig-8.61.dist-info/METADATA,sha256=vOaNti0f92HyP0ZAnrnsr0_k5T9v7Y8Hh4aeHcbbiiM,6354
536
+ machineconfig-8.61.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
537
+ machineconfig-8.61.dist-info/entry_points.txt,sha256=59ba4RDpVvVj-B2Lis3zB-k25WRfdxHthHj54WVKxNc,584
538
+ machineconfig-8.61.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
539
+ machineconfig-8.61.dist-info/RECORD,,
@@ -9,5 +9,4 @@ machineconfig = machineconfig.scripts.python.mcfg_entry:main
9
9
  mcfg = machineconfig.scripts.python.mcfg_entry:main
10
10
  msearch = machineconfig.scripts.python.msearch:main
11
11
  sessions = machineconfig.scripts.python.sessions:main
12
- terminal = machineconfig.scripts.python.terminal:main
13
12
  utils = machineconfig.scripts.python.utils:main