machineconfig 7.50__py3-none-any.whl → 8.12__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 +84 -39
  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 +168 -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 +17 -26
  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 +39 -11
  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.12.dist-info/METADATA +132 -0
  226. {machineconfig-7.50.dist-info → machineconfig-8.12.dist-info}/RECORD +265 -215
  227. {machineconfig-7.50.dist-info → machineconfig-8.12.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/ssh/openssh_all.sh +0 -25
  254. machineconfig/setup_linux/ssh/openssh_wsl.sh +0 -38
  255. machineconfig/setup_mac/apps.sh +0 -73
  256. machineconfig/setup_windows/apps.ps1 +0 -62
  257. machineconfig/setup_windows/others/obs.ps1 +0 -4
  258. machineconfig/setup_windows/ssh/add_identity.ps1 +0 -11
  259. machineconfig/utils/installer_utils/installer.py +0 -221
  260. machineconfig-7.50.dist-info/METADATA +0 -92
  261. /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
  262. /machineconfig/jobs/installer/{custom_dev → python_scripts}/__init__.py +0 -0
  263. /machineconfig/jobs/installer/{custom_dev → python_scripts}/alacritty.py +0 -0
  264. /machineconfig/jobs/installer/{custom_dev → python_scripts}/bypass_paywall.py +0 -0
  265. /machineconfig/jobs/installer/{custom_dev → python_scripts}/cursor.py +0 -0
  266. /machineconfig/jobs/installer/{custom_dev → python_scripts}/espanso.py +0 -0
  267. /machineconfig/jobs/installer/{custom → python_scripts}/gh.py +0 -0
  268. /machineconfig/jobs/installer/{custom_dev → python_scripts}/goes.py +0 -0
  269. /machineconfig/jobs/installer/{custom_dev → python_scripts}/lvim.py +0 -0
  270. /machineconfig/jobs/installer/{custom_dev → python_scripts}/redis.py +0 -0
  271. /machineconfig/{setup_linux/others → jobs/scripts/bash_scripts}/android.sh +0 -0
  272. /machineconfig/jobs/{installer/linux_scripts → scripts/bash_scripts}/lid.sh +0 -0
  273. /machineconfig/{setup_linux/others → jobs/scripts/bash_scripts}/mint_keyboard_shortcuts.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.12.dist-info}/WHEEL +0 -0
  298. {machineconfig-7.50.dist-info → machineconfig-8.12.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  machineconfig/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
2
- machineconfig/logger.py,sha256=XLckvZ8cPDpC5v75ESP3YNTputIrDYuvoYisj0YZtGw,1415
2
+ machineconfig/logger.py,sha256=4LrXsRpU6O8Wa9CLhWBJdJusSh9IrJoWIEzTbRr3IwY,1380
3
3
  machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- machineconfig/cluster/remote/cloud_manager.py,sha256=8f5mIkAnXNjhVswlv49bEgAGLJIv_e_tNbI_wgPBo0Q,26041
4
+ machineconfig/cluster/remote/cloud_manager.py,sha256=Pa84Im8TyJ4WA6PaOt42LSU6VofBk2njhT16_RneLtU,26040
5
5
  machineconfig/cluster/remote/data_transfer.py,sha256=1QxIUetqlhmyl67icBx0nFZEZ7Z2DRjygXofKLMOz-0,4385
6
6
  machineconfig/cluster/remote/distribute.py,sha256=_IJ2h5UugjsUuQxiW4rhiVinlxqqSxu5xKBCPfgEvi0,15257
7
7
  machineconfig/cluster/remote/file_manager.py,sha256=-92YhIFNTd5FT9Jg842qISOScnU-x_iRsY0my_2z3ho,13910
@@ -15,17 +15,17 @@ machineconfig/cluster/remote/script_execution.py,sha256=d1NZdIHlB0H69cyLgOv81vS9
15
15
  machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
16
16
  machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  machineconfig/cluster/sessions_managers/wt_local.py,sha256=AwiSXXOX4XLfrAkgZoy1sSYkNo-7Nq_n4hxPYFAoYqo,9781
18
- machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=Y4NT-ukc7z8BVO2tqRZU0tzbLro3uWwU9UUI5MVLut4,19841
18
+ machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=ssdAkKDCvoFQqCKTDbFqCn6B5DzDlbUToBvj7riUiBU,20092
19
19
  machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
20
- machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=XC6JUlUsPAuKkw42T0s8wrJNOaXttley2BcfMicH6X0,14490
20
+ machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=IRkgyA3poswUoRsA_8nWqeA8Pr7DTJavg2MTRZctmbY,14609
21
21
  machineconfig/cluster/sessions_managers/zellij_local.py,sha256=eI3nLzlg1lrKDBu-RscTUEAvsJVRd06TrcdVABNgVu4,10076
22
- machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=YJVhBTWh4FVduvnysMeka_uQ7cckRTLpMrBx5O386zs,17701
22
+ machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=W_l-Z_Luq6rADF5pPSKkgzZSL0XtHwu2GIJFJThoiI0,17820
23
23
  machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=TFx-Xjmoue8KjbzBFtvFSOSx3zgoTdS_N1WWPPdMBm8,8513
24
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_1vMH58kMQE2oFj5sdjDM8lWhe5lbz0U9hZo,8417
24
+ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=3eka4YVypqDZa4UKTpHPGdeGYkE--fiJrVtLtQ9nELI,8535
25
25
  machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
26
26
  machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
27
27
  machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
28
- machineconfig/cluster/sessions_managers/utils/maker.py,sha256=DifhHbmp0n35KnSO54SeXaHTgCMB5ocV3Jmv17Prz0w,2671
28
+ machineconfig/cluster/sessions_managers/utils/maker.py,sha256=ZcxDalj2IAC_HHtuy104GSp5JaecfdGedHlcuXl939Y,3462
29
29
  machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
30
30
  machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
31
31
  machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
@@ -38,7 +38,7 @@ machineconfig/cluster/sessions_managers/wt_utils/wt_helpers.py,sha256=T6u7Ae2F84
38
38
  machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=FyYsqowiFAvqv4M0eXRnw2U38r7u8EI1I3p580kV5Y0,2976
39
39
  machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=FMpwaSeDCc71pEiVk99s8f5NkZEQ8zKQNUuaSXojgq4,4615
40
40
  machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=8l8OAfWYy5xv-EaVqtXLqvPo9YaR9i8kFqGMhPzk0nw,2616
41
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=0UL4b-uq15IWKx4ryLR3lgF2V9VDIHUAWPMhcFyAwng,13602
41
+ machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=1EGBlIBqPP-7hynPsCB2KjcLgxx1GLt2gXPExx8_1Ow,13594
42
42
  machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
43
43
  machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=7JLq8HY-NWbJfzHfxaok_o1KrIwzMCK_PUnsdZYfzuA,4929
44
44
  machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=Tlq8liGIs1wCOu6JOk2VUAVCaTzQmbyITSVZMMWvlwA,3830
@@ -51,101 +51,112 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
51
51
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
54
- machineconfig/jobs/installer/installer_data.json,sha256=WJ0v1f86duVBp945xm52m7-mNmgDer3DCUA-aluTxCA,83436
55
- machineconfig/jobs/installer/package_groups.py,sha256=nRru-M8wiqdSs3U8TDOGFmA2xTV4gwFUeMJZ28xBrvw,5293
56
- machineconfig/jobs/installer/custom/boxes.py,sha256=ws8QRbDn48oKhbQntr54I0nSfkwINbprjTy0HOpuX40,1974
57
- machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
58
- machineconfig/jobs/installer/custom/hx.py,sha256=c670AJYgTRS9QN0ooRt8oz3Cxwd9Fv16WpA4rCr7JL0,8728
59
- machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- machineconfig/jobs/installer/custom_dev/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
61
- machineconfig/jobs/installer/custom_dev/brave.py,sha256=kHgGRwgKrvpIlGzmdnWO6HJnSrnj8RlBEV_1Zz4s_Hw,2829
62
- machineconfig/jobs/installer/custom_dev/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
63
- machineconfig/jobs/installer/custom_dev/code.py,sha256=0Hb4ToMLQX4WWyG4xfUEJMTwN01ad5VZGogu3Llqtbc,2480
64
- machineconfig/jobs/installer/custom_dev/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
65
- machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=okeKEVhgijS_iG-53StyzUJkPcSfIuI7HddJ0u4flds,829
66
- machineconfig/jobs/installer/custom_dev/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
67
- machineconfig/jobs/installer/custom_dev/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
68
- machineconfig/jobs/installer/custom_dev/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
69
- machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=dsPmiqP9AJCack7mNeJ8Qzo4dSOwC0bsupH0Hn3gqSg,4149
70
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=RfCU9PHJbBG7TDHCFtTX80iIbSVNQiz6QYzt2qCC7XA,5994
71
- machineconfig/jobs/installer/custom_dev/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
72
- machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=73BzfUdY8mXM4l4jVFIBxR1qXSE4g_PAyxefanrVkFU,3555
73
- machineconfig/jobs/installer/custom_dev/winget.py,sha256=gLdwM20jKMf2bMV3BAcOg4MkuzwF09CU5OhXvLkPoHo,5738
54
+ machineconfig/jobs/installer/installer_data.json,sha256=9qDaFy95XeGJiYTvIbQfKS_cWtiVXIRIeKnl68Xvz4I,124238
55
+ machineconfig/jobs/installer/package_groups.py,sha256=j96Ac2aULKCt0mfEmI0LOpPa7aGksfZDfeHG465Q3uk,4982
74
56
  machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
57
+ machineconfig/jobs/installer/linux_scripts/cloudflare_warp_cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
75
58
  machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=4NYWXCdvh6qlggVVH7FGe6jWkYuWoaJoDwLJvI4oRNQ,4471
76
59
  machineconfig/jobs/installer/linux_scripts/docker_start.sh,sha256=8L2fLex6PU8nCpBii7yT8w4CvULZ9_JcDvxdCGJQ6cU,894
77
60
  machineconfig/jobs/installer/linux_scripts/edge.sh,sha256=f1UI2Z2s0ToZ-QGlzkS1ThcRsTz5tMHOjxSFqfHK9SQ,1319
78
- machineconfig/jobs/installer/linux_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob2wKSVKzCvOHIxEjoSTOA,864
79
61
  machineconfig/jobs/installer/linux_scripts/nerdfont.sh,sha256=ute9wl4BcqHUqavVHWJlnMcmugdb50LbnUVlU0cUVso,1475
80
62
  machineconfig/jobs/installer/linux_scripts/network.sh,sha256=j3kRV2mFEZK05XL2UdR9ssW2hkLH5rOYM7LU539UUEE,1358
81
63
  machineconfig/jobs/installer/linux_scripts/ngrok.sh,sha256=K-t62nhnAHxhppTmqjubIJRHozkNHfBxXGbn1Oz3w-A,287
82
- machineconfig/jobs/installer/linux_scripts/pgsql.sh,sha256=FbIteF6RVCcDdHl8seFFO7FuAX9siZpkwr9WVeKn5NA,1655
83
- machineconfig/jobs/installer/linux_scripts/q.sh,sha256=lPSHBeZm4z6xv5K3cYPiOkK0A-LaNSNJN2ysVb1Qa9Y,261
84
- machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=GbElaDpkICLL6_XnkPev0UPZm4wQ8euGoOmrX2okneg,2064
85
- machineconfig/jobs/installer/linux_scripts/timescaledb.sh,sha256=PTvo7KBpyxmWdpVoBK4cuPJ5slxJIPlVTfGQYnvKEQg,2508
64
+ machineconfig/jobs/installer/linux_scripts/q.sh,sha256=dz_SK3y5qSpSTJvaKZKA5z-OWBCDfOv2DCLqofCP8Zs,460
65
+ machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=-Ur541bMwjq6TKrmvy-S5c_qoR8GlRpE6923USDylm8,2097
86
66
  machineconfig/jobs/installer/linux_scripts/vscode.sh,sha256=fI6lNCWUjlstNE319Y-rUtimvLLb9GcNh3z9t1KRaaE,4541
87
- machineconfig/jobs/installer/linux_scripts/warp-cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
88
67
  machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVjoWATFzHqCt6V41_N8bImAQRc,1294
89
- machineconfig/jobs/installer/powershell_scripts/archive_pygraphviz.ps1,sha256=UbOApUB0UiAHANOnGFHIP3zY_UCtWBhT5I6vqPhwqgE,618
90
- machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
91
- machineconfig/jobs/installer/powershell_scripts/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
92
- machineconfig/jobs/installer/powershell_scripts/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
68
+ machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=Y7uof8naGBNv79heNXJ4KyH5sXDjDm0KwCKnshpprR4,6494
69
+ machineconfig/jobs/installer/python_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ machineconfig/jobs/installer/python_scripts/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
71
+ machineconfig/jobs/installer/python_scripts/boxes.py,sha256=C6R5T1INjBUKwaYPOnpx13N1VrNxHsbJ-j-llujuujY,1991
72
+ machineconfig/jobs/installer/python_scripts/brave.py,sha256=bUoIk_8J8PJTxIaKbr-ScQIKrkSPpt-sXz_svvZ_NgQ,2995
73
+ machineconfig/jobs/installer/python_scripts/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
74
+ machineconfig/jobs/installer/python_scripts/cloudflare_warp_cli.py,sha256=tcKmph3J_JQApjIMfGswLiHCbt7uQ6v9S9aixN_rnqg,914
75
+ machineconfig/jobs/installer/python_scripts/code.py,sha256=YSmLCh4nxK9CHqeE5mOBAVkNRDRZVT8FAWggraHsiPA,2483
76
+ machineconfig/jobs/installer/python_scripts/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
77
+ machineconfig/jobs/installer/python_scripts/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKgnlhzS7PCoo39BSiux-3_DtBM,852
78
+ machineconfig/jobs/installer/python_scripts/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
79
+ machineconfig/jobs/installer/python_scripts/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
80
+ machineconfig/jobs/installer/python_scripts/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
81
+ machineconfig/jobs/installer/python_scripts/hx.py,sha256=nI8g49zsmksx5ZZOcvcaM_gqWesOjobcG8wTzhrIA64,9021
82
+ machineconfig/jobs/installer/python_scripts/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
83
+ machineconfig/jobs/installer/python_scripts/nerdfont.py,sha256=8Lz8NE0CYREDVVnSqRnaFsLqGAPUcQ-bt320KdTbrDw,4178
84
+ machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py,sha256=EQrooSjtqw3YvOfD9z8JaVrQShZbzGh3QPLiHPrKSEs,6017
85
+ machineconfig/jobs/installer/python_scripts/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
86
+ machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=HrqL_fDtqO0J_Oyyr-or3EZ5UqJqa6wOL0pnfZeklKM,6420
87
+ machineconfig/jobs/installer/python_scripts/wezterm.py,sha256=MXJc0-8ixCm-5dN47R72FGkfzhIJD9-w4EM9bCdCGaM,3027
88
+ machineconfig/jobs/installer/python_scripts/winget.py,sha256=hxid9fWGLiTsqVqAFxM6jydmDeYdPQjsMh2XEBG-ROY,5631
89
+ machineconfig/jobs/installer/python_scripts/yazi.py,sha256=HyFIqQ5i5oeHzruQ3Ymrt6NB670n-2AQGwFiZkLbOjs,4331
90
+ machineconfig/jobs/scripts/bash_scripts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
91
+ machineconfig/jobs/scripts/bash_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob2wKSVKzCvOHIxEjoSTOA,864
92
+ machineconfig/jobs/scripts/bash_scripts/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
93
+ machineconfig/jobs/scripts/bash_scripts/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
94
+ machineconfig/jobs/scripts/bash_scripts/mount_nfs,sha256=bgP0NmplFZowg48J0KMkUSqteHYGB2PNmhAYvtPJhHk,1756
95
+ machineconfig/jobs/scripts/bash_scripts/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
96
+ machineconfig/jobs/scripts/bash_scripts/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
97
+ machineconfig/jobs/scripts/bash_scripts/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
98
+ machineconfig/jobs/scripts/bash_scripts/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
99
+ machineconfig/jobs/scripts/bash_scripts/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
100
+ machineconfig/jobs/scripts/powershell_scripts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
101
+ machineconfig/jobs/scripts/powershell_scripts/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
102
+ machineconfig/jobs/scripts/powershell_scripts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
103
+ machineconfig/jobs/scripts/powershell_scripts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
104
+ machineconfig/jobs/scripts/powershell_scripts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
105
+ machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1,sha256=EI3mYJx7kL-YQY-emYiXA4j4ZvUof_CfhfOyzSkizgU,490
106
+ machineconfig/jobs/scripts/powershell_scripts/obs.ps1,sha256=3SNCjvkaaWMaN6JJAHDMvbvOIHw_zaXF74KalRimnE4,114
107
+ machineconfig/jobs/scripts/powershell_scripts/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
108
+ machineconfig/jobs/scripts/powershell_scripts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
109
+ machineconfig/jobs/scripts/powershell_scripts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
110
+ machineconfig/jobs/scripts/powershell_scripts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
111
+ machineconfig/jobs/scripts_dynamic/a.py,sha256=NRh6nDmfOoc8UcKGk1rHo3R2aD2OKujXAbKcFkALEP8,361
93
112
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
113
  machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623RtfQQ,766
95
114
  machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
96
- machineconfig/profile/create_helper.py,sha256=jBwgf2r6Wid9LNXw_O8JpVmm7Vk5sZJWlN0qeIkQhjE,2986
115
+ machineconfig/profile/create_helper.py,sha256=YmXKtFrSGcvKso9czDu3YPObheqNF-fe3N6t490JzDE,2912
97
116
  machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
98
- machineconfig/profile/create_links_export.py,sha256=DNBdylSzDdBq_wAduIYbscpOWoTx_QVynOP27y0mklA,4444
99
- machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
100
- machineconfig/profile/mapper.toml,sha256=FaB07P-558XAycqLLc17O0rT098lMPh3ILH7UgoauXQ,12793
117
+ machineconfig/profile/create_links_export.py,sha256=kLORw7eUiQjoJWDiwzjNiiQPHkGaU8d6XuZj38esI_Y,5249
118
+ machineconfig/profile/create_shell_profile.py,sha256=KjJwCum9F8_9stgc9_awSzxcX68WY8bhMufiLgTWWFE,7709
119
+ machineconfig/profile/mapper.toml,sha256=Qj6POCITKTmyezHfM-SgNGBpzUkLPamdNAm3ovDBQq4,13010
101
120
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
102
121
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
103
122
  machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
104
123
  machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
105
124
  machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
106
- machineconfig/scripts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
107
- machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
108
- machineconfig/scripts/linux/wrap_mcfg,sha256=ZmOoVoSfNOzPxNPnCxrYDwkFvaKEVcDj-WNkx_-68L4,1405
109
- machineconfig/scripts/linux/other/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
110
- machineconfig/scripts/linux/other/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
111
- machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
112
- machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
125
+ machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ machineconfig/scripts/linux/wrap_mcfg,sha256=JLrUn5pPhPlcnhOIhCENiclKk3oX-qbMuMBzcKC47eY,1461
113
127
  machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
114
128
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- machineconfig/scripts/python/agents.py,sha256=aVbLQDgpngXZm4taHcED4sAxyHvV2_Dz5VW3apPcQcY,10651
116
- machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
117
- machineconfig/scripts/python/croshell.py,sha256=E8RSe84CQHAyFDn115cifYX4DkshmpKK1Rdg2xMUqnE,8379
118
- machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
119
- machineconfig/scripts/python/devops.py,sha256=Lv4d-UlyOREj4VTcu_pxswYo54Mawe3XGeKjreGQDYg,2222
120
- machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
121
- machineconfig/scripts/python/explore.py,sha256=3kNglM1KYp57U8yrbWeHEslN458-xieRuFYsJAhrpIs,1247
122
- machineconfig/scripts/python/fire_jobs.py,sha256=r_V5ZpZhE2-Hn_f5pvzbulUTl7_2S4AI_M71WlD4Vlw,13701
123
- machineconfig/scripts/python/ftpx.py,sha256=A13hL_tDYfcsaK9PkshK-0lrUS6KPhPCtwqWtLSo6IM,9764
124
- machineconfig/scripts/python/interactive.py,sha256=jFHpiQq_lisa51BS4-qUlWPJ1-pmHmPAfA6dixdsOzY,11745
125
- machineconfig/scripts/python/machineconfig.py,sha256=l211lxHRcQ6BH7x3FwQHSJCYbYs6RJL5e0POjyWAW9A,3048
126
- machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
127
- machineconfig/scripts/python/sessions.py,sha256=Q_fbprawvW1x_E6jKQ-Z2Z5MRurRaepKUvi5z1G4CUw,9531
128
- machineconfig/scripts/python/terminal.py,sha256=PQ2C2flC2UngfeTNYhHLBiwj__kmE12gxZu2ivtr4Kg,5978
129
- machineconfig/scripts/python/utils.py,sha256=WHf7ahRjAW7dOfjJ83hpsWe5F-If-IdJCBMzTYSPbdM,3149
129
+ machineconfig/scripts/python/agents.py,sha256=n8Z40QeRFjuYnmF_4ayL3pVOP5vpAYKMG0ZLy0XflhI,12070
130
+ machineconfig/scripts/python/cloud.py,sha256=BddtWa8Rg5AF2U22ha4pQ4IvcrKvfeDrmnI3hb0D4Pk,1415
131
+ machineconfig/scripts/python/croshell.py,sha256=WufbJ_xals_8LAvNc1xw7VeHRDigYU_JY3zZAb6eMqg,8455
132
+ machineconfig/scripts/python/devops.py,sha256=vngpKJnRS9Gj3FLeHn4ShTEhZWnUXkiUiTmBdNsK54A,3100
133
+ machineconfig/scripts/python/devops_navigator.py,sha256=UeqkY9_c22Ce9b1ksFGq-lNwaGCMMHL1LikPhP-QDt8,154
134
+ machineconfig/scripts/python/fire_jobs.py,sha256=CLGoLBLJXOc1EPK_-w0BPYC2WZsvEvR1on__a8ZxkJ0,14215
135
+ machineconfig/scripts/python/ftpx.py,sha256=WPRq1HSDcYPCbF9T-pgdepIDj_5Q4fhz4h0Vf_GeXG8,11181
136
+ machineconfig/scripts/python/interactive.py,sha256=5DqylL5oMShL8G31Ba1EbKHFsUz9vs8I0gKo8U3Gt_M,11536
137
+ machineconfig/scripts/python/mcfg_entry.py,sha256=PE23iE4NdSOTjFqHzRA6yu48XeZTZM9vgxhk8BAON-g,2797
138
+ machineconfig/scripts/python/msearch.py,sha256=EXM2U5WgngwJhLx0RPKYnoZ7hxeQZ12pcI3lsHUVR9E,3646
139
+ machineconfig/scripts/python/sessions.py,sha256=kDopndSXi-wk3nGipNtf9S655FP9JvAEnz8uRk7kuaM,12797
140
+ machineconfig/scripts/python/terminal.py,sha256=VaAMrCG3VGWmDVtpQFwelg8KHjJaqDkNU9uDRPbzuak,6436
141
+ machineconfig/scripts/python/utils.py,sha256=NVYE0ALCyZWhcWetiXn5Gcix-BlvqLyynlRhHcOeue0,3555
130
142
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
132
- machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
133
- machineconfig/scripts/python/ai/vscode_tasks.py,sha256=OF8q4oKu53lJy8u36h3alHx3XmMhqHaaXZ-T5nr7b18,1481
134
- machineconfig/scripts/python/ai/command_runner/command_runner.sh,sha256=PRaQyeI3lDi3s8pm_0xZc71gRvUFO0bEt8o1g1rwwD4,761
135
- machineconfig/scripts/python/ai/command_runner/prompt.txt,sha256=-2NFBMf-8yk5pOe-3LBX3RTIhqIZHJS_m-v4k-j9sWI,779
143
+ machineconfig/scripts/python/ai/initai.py,sha256=z98wjXCXvMwpibmNaz7pZhUnpSbjEHkMXKe9Ns50l0s,1579
144
+ machineconfig/scripts/python/ai/scripts/command_runner.ps1,sha256=LB_4iflhPJ2FXB9RzoltTfnQeYYi2giANW16-dkYQ7U,1599
145
+ machineconfig/scripts/python/ai/scripts/command_runner.sh,sha256=XWm1mGd_HNVC45StUo9ZgKU8Ez0I_aD0q55rk1hTskw,767
136
146
  machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=m_z4vzLrvi6bgTZumN8twcbIWb9i8ZHfVJPE8jPdxyc,5074
137
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=Mt9D0LSEwbvVaq_wxTAch4NLyFUuDGHjn6rtEt_9alU,4615
147
+ machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=niFWWPziF0niNX-nY5JayXJxIzsAPPar-y8mKY0z2Cw,4624
138
148
  machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
149
  machineconfig/scripts/python/ai/solutions/_shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
140
- machineconfig/scripts/python/ai/solutions/generic.py,sha256=wXmajwy99GNCr1lPGPwavKHRgLtR8JrTalovYNn0kCg,2364
150
+ machineconfig/scripts/python/ai/solutions/generic.py,sha256=ck-YXL6Xwu3NNUzJZWz3rY1N2cqEf5bjXqzA0q_N-DQ,2361
141
151
  machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=tVMdaOL_9jC1nvfPsJs9WRkPPNa2tQVyq4vxdpOPK6k,343
142
152
  machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=3nYdEmdk76sYerEvImEDi3Qi-n94ExFkg20HttI7iCc,446
143
- machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=spuPpENX_lZIBiANQq9eTxefoPBE2Ao_LEY16ZCaUQY,1890
153
+ machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=XAMeSKWtJFOSoO5dqyKdq4z8As1W2C20y8ujRRK4WoY,1869
144
154
  machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeGB9apH2o4jdV-Co85CXmVmHJTMgrIqdY,156
145
- machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
146
- machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
147
- machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
148
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=heoUNQ55Uwbs0rO-gAuydkdc9Fld9Ip8zxAl7d7f_jA,4488
155
+ machineconfig/scripts/python/ai/solutions/copilot/agents/Thinking-Beast-Mode.agent.md,sha256=pCCwoc7q3xQXYDJItJIPdvBi56WT_o8ekPsIrYwCiHA,17918
156
+ machineconfig/scripts/python/ai/solutions/copilot/agents/Ultimate-Transparent-Thinking-Beast-Mode.agent.md,sha256=y_NclkcqNaYsH5RWVWIYTCFlr7Kr5-WraDgeGFulDuk,28969
157
+ machineconfig/scripts/python/ai/solutions/copilot/agents/deepResearch.agent.md,sha256=7P5dn1OkLQaQOtd7AdjFuBW6fDH9tETpAMoAKd3ef9E,5162
158
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=Evz3iDmrJQxl5CBO6CLdmO-Xc6HpzCsVBcZAMI95TnY,4635
159
+ machineconfig/scripts/python/ai/solutions/copilot/instructions/python/watch_exec.prompt.md,sha256=xQrx2hrGlNBZk1L4Tm6UqvTquStqMSpX7_rCtlq0yQ4,1209
149
160
  machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
150
161
  machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
151
162
  machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
@@ -157,114 +168,116 @@ machineconfig/scripts/python/ai/solutions/gemini/settings.json,sha256=tFdtqZkyti
157
168
  machineconfig/scripts/python/ai/solutions/kilocode/privacy.md,sha256=oKOXnfFOdUuMlKwVf5MqeqCc24hZcjKE_e1MEXpijJI,117
158
169
  machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1dNzkUCS_vCX_fy2TisRtfg8DXH-D4N1iUVU,99
159
170
  machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
171
+ machineconfig/scripts/python/ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ machineconfig/scripts/python/ai/utils/generate_files.py,sha256=gx39nVkmZZskR4FZRUtgUiHR2Pzej_yfvF_CjCHK1fI,14520
173
+ machineconfig/scripts/python/ai/utils/vscode_tasks.py,sha256=OF8q4oKu53lJy8u36h3alHx3XmMhqHaaXZ-T5nr7b18,1481
160
174
  machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
175
+ machineconfig/scripts/python/env_manager/env_manager_tui.py,sha256=nqaN3Q7u53tdlQP9VskdJQIO2s56HUoy5AVk_Budb3k,7055
161
176
  machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
162
- machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=xiJ7T1xPkyrPYgk1U_oOuzyL4LM66C7qAwRMLPv9M_w,6932
177
+ machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=aljd_Zn3H_uUSihTkgWpQCLOkmEeMofM2MDQ62KRmrI,6932
178
+ machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
179
+ machineconfig/scripts/python/helpers/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
180
+ machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
181
+ machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
163
182
  machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
183
+ machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=d65fb95jWgn4-b9llfxXKklbjghkodGNjU3Tfhnip3I,7089
165
184
  machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
166
- machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py,sha256=yLES5EVu-NNJ6_scZ22jvI8O9cDb3-tpNN606h4LctA,824
185
+ machineconfig/scripts/python/helpers_agents/fire_agents_helper_types.py,sha256=PA4EaLHm7lfExML8GA1bwxQDQipCTPLr70pGxMyDLDg,917
167
186
  machineconfig/scripts/python/helpers_agents/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
168
187
  machineconfig/scripts/python/helpers_agents/agentic_frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json,sha256=YGuJF-qlMjhICPf0QnNfQlGNPsYrJJDlNcgmes0TFhM,252
170
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py,sha256=QcHVXodLRqso1Y71AhN06hfOckCQfDZfiCkaipOJyA8,1754
188
+ machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.json,sha256=1e87k_7ytyvOqmE8XPuU3qOHzlqCXzcoTNS3q4OwiKQ,252
189
+ machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_crush.py,sha256=GJ6RmnEahu5iA4GqI4Hy1uK5L61dPV62fX5Zv8RACKU,1844
171
190
  machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_cursor_agents.py,sha256=4LD841Qk9PRP6I97oNlV_twixoERg4IVdZjvy49mGVk,529
172
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=6FHDONsdvEjA97ZIB7sWP6w2TgjzheW7YEF95xDnc_A,1518
173
- machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=BIb3hdT4YQB931rhqKmTNz_qbHfurF1wimzrGeUCSRA,1636
174
- machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hxaazNw-cv9hIw_XdL6WTcsiG53ILwoyZWv5o,257
191
+ machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_gemini.py,sha256=YWpFr5JiKTBLVnWnrgicc8R_dg40nP2GccLJNRYTSFI,2234
192
+ machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py,sha256=ZOicLX5WbIiXLu6rEvGjAwtRgFg5ejZ6QilCdFwBIus,1125
193
+ machineconfig/scripts/python/helpers_agents/privacy/privacy.py,sha256=Q82sqb3PWngbT1U74HAXQfmeDlivpElB_REU3dmUdRM,5618
194
+ machineconfig/scripts/python/helpers_agents/privacy/configs/aichat/config.yaml,sha256=9DbYNGq6oA8kJuFQXT-Osu04j-xMk6fWBOjpdlr4nvA,104
195
+ machineconfig/scripts/python/helpers_agents/privacy/configs/aider/.aider.conf.yml,sha256=hQOeSu1xCejGNUczyWpJQ0HDAjRKs6QjUQARDJvbt14,37
196
+ machineconfig/scripts/python/helpers_agents/privacy/configs/copilot/config.yml,sha256=NgAq9QSYMDJtDzCdsm8FK1mfq4Q7RpCFDBZlFe4_Kqc,32
197
+ machineconfig/scripts/python/helpers_agents/privacy/configs/crush/crush.json,sha256=S5mnVFLqKxgjzCJGAYQl2grTpL9ilwAxJGN_JDHKV84,182
198
+ machineconfig/scripts/python/helpers_agents/privacy/configs/gemini/settings.json,sha256=WSWzXLLNL1FIck0boRpQY-LJN9e-gRrIs6dlMsLNqvE,186
199
+ machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=4n7GShpw5Y5rnc9JEyBPuB8TBb2f2OhhxPnNpvk-RlI,313
175
200
  machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
176
- machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
201
+ machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=pSr1sdz6cizyXS3lFy5iRJQtmbFL2S2yA2lZ87qGOmQ,917
177
202
  machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=OV1w3ajFVFs6FJytjIPOntYB_aW2ywGohKi73V4Dm2Y,8691
179
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAsPT-Xl3RG9-yBed71a2tu9Pig,4914
180
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=DEZHwOgFcAVoI-NrBflFLbAjijOYZYq_D5M8xJQdtSQ,6487
181
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=ThfI4rvKG6IPzAo3KrkKtf6CQJmBDt-9OXkFGxg1sn8,3481
203
+ machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
204
+ machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
205
+ machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=0CF6VN26a0j7E7PcIGEX_vFBKPXOx7U7sRDkfrE_A1I,6618
206
+ machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
182
207
  machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
183
208
  machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
184
209
  machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=FlK3qyMsbacM27Hq83JpXNOSlC4QSsF8B2665BEFs34,1620
210
+ machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
186
211
  machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
187
212
  machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
188
- machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPhwcbAvCyJyTBd2iumJB5wmPdcTXz_Yvh8,4897
213
+ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=PUDG2MAuQXXF5s0tikJlZBccboA9IGk3mHABMnpdUss,4887
189
214
  machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
190
215
  machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
191
216
  machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
- machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=SfQx8ftegtwuzfxSIwv0Byt0vkxEn8xRAz8zEpcTKnM,5922
193
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=SL6P3Ioib3P9OWG1GmULb5-l4ySYZ1RuuIDCHY4lCyU,3502
217
+ machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=zli4KuUqFFkVjEXV9U8eXyaiXgILSJ3m6jXzwDP-6W8,5504
218
+ machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
194
219
  machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
195
- machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=u_2l5Cc3dFnh0seKrbH9j-Z0bUCrgy45MOM6HCjgkQg,7562
196
- machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
197
- machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=_WQB_5DXXSCnB5D2k0h5HJM_Qs183tHKewmaDlUMyjM,6515
198
- machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=AL04784ncdP9ue5bKyqJfXrMksxjFKtuv_w353kQQsI,6298
199
- machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=S2xQ7sDVvfvGKcJNlquXj9Gc0ofk2EXnfvpRx2AWVD8,6278
200
- machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
201
- machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=E3UAqqna7rZD7u6j4K997trVPfR-e5x7uPCZANE63IY,11138
202
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Dn8luB6QJzxKiiFSC-NMqiYddWZoca3A8eOjMYZDzTc,5598
203
- machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
220
+ machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=1R7xxP4wO7wZUvIzjrbzwx4Fe8_UsVCY68xAxnXaYbI,11510
221
+ machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=5PPYndihw29hnq-Uyp88j4NBGlfSAFKAe265-ohF8zE,13925
222
+ machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=HkAw5Vtf5BZHqHYauGYuqec_oqIRFz9koRdTVElxr74,8917
223
+ machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=dYZPSI39iDUH69dRYszLIun7Wfn5lCG7stc70YX5Ni8,6417
224
+ machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=FzMEUvZXGLMkndcvox_RiVkUKAPj9ElHKORa8iJcNCE,6506
225
+ machineconfig/scripts/python/helpers_devops/cli_share_terminal.py,sha256=5G0-qtqcnbVEpKPvHl1mzp-3uEx9fww3CRrpGv1T-f8,6169
226
+ machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
227
+ machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=4CXWhuD0h_0VGQLKCNUxVl7pZBboq9jrgZazit1LbWs,20314
204
228
  machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
229
+ machineconfig/scripts/python/helpers_devops/run_script.py,sha256=HSNgFQc0oeNwpSMS70qKj0GNSp4QoJQM-qp3slR2Tz0,7994
205
230
  machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
231
  machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
207
232
  machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.bash,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
208
233
  machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
234
+ machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=JcfrFhWExnWsE8ekNHPMvWWZDR_l1c48ya8lWCjtKzs,3424
210
235
  machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
211
236
  machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
212
- machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=tZS9qXOXiHltiZ9JHEs2serGEFm0uLbz7xh6ZBAa2l0,6946
213
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=teioVhLI-skNpbYOJGo7WJEnz_FHzyidHff174CZSg8,4359
214
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=0aqH_ShEvmrzMC2oyWDds-CwtUqJNniNjp39-0wTpvQ,5391
237
+ machineconfig/scripts/python/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=eSo8XQsYTplsiySKXPmF34UcTX54d0DfCDiQ6bQXkms,6263
239
+ machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=E5mdydDsyIVWdVdELvVq33ys9-jMOF3dUe5mrDFkNjY,4384
240
+ machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=JF6n7MAqemyueeda5DibpNPTxQgxqudyjS-7bTRU0cQ,5937
215
241
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
242
  machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
217
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag,sha256=u3EYNQ_WT8jP11V0DPXWWXmFj1rzgNBnRokVBdVZpmc,677
218
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg,sha256=v24TH1UpadimORxSH1EY3SRfiSAOVZyYXJUaifwc2qw,1188
219
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga,sha256=9K84gLZbxar19FE2bjbgdTztmyFyyCH7lELr6S9PwyA,454
220
- machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg,sha256=JgQJGwxaChr148bDnpTB0rrqZMe2o2zGSDA9x_oUhWM,133
221
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
222
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
223
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
243
+ machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg,sha256=1WPQn8nudfOLdpyya4THQgAzTH7LOSnk-YH0e9e8KRE,1201
244
+ machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1,sha256=CJbrvZVAAUxDxMFhgPKjq07mtn6V29tBrpodCvCDGT4,1918
224
245
  machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
225
246
  machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
226
247
  machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
227
- machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=Kw673rk7QbRBL1lCvCDC5HsoQemzh2mEw5aJSQPbgtk,24421
248
+ machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
228
249
  machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
229
250
  machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
230
251
  machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
252
+ machineconfig/scripts/python/helpers_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
253
+ machineconfig/scripts/python/helpers_network/address.py,sha256=2VKQ9smY429t86qQN7x7DLGO_ri5cQzUKphqViXLJjo,5634
254
+ machineconfig/scripts/python/helpers_network/address_switch.py,sha256=l7D317DMEyY4q9n_yfknx-TfRbo0l2pIw1LbWCPM65c,2735
255
+ machineconfig/scripts/python/helpers_network/mount_nfs.py,sha256=00YsimP7MWdRqpzr-bxnE828MsWjBYvb56VqLvtu_y0,3601
256
+ machineconfig/scripts/python/helpers_network/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
257
+ machineconfig/scripts/python/helpers_network/mount_ssh.py,sha256=71BSfsOpNwBcvvEs79pmaE3kPOWnLJRa0w2qomQw1Nk,2601
258
+ machineconfig/scripts/python/helpers_network/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
259
+ machineconfig/scripts/python/helpers_network/ssh_add_identity.py,sha256=Eyh2i3Ug3ZqQrdbriUOkWisUQS3tf6uS9_vuouAs78Q,5331
260
+ machineconfig/scripts/python/helpers_network/ssh_add_ssh_key.py,sha256=r_UnTP5ntCJZ7gi2gRwDzqbbE3FnaFwZMuCBl4HonyU,9755
261
+ machineconfig/scripts/python/helpers_network/ssh_debug_linux.py,sha256=0tjKgf5bElHqSgwUEFVY7iKOxax93Lxy-nJ8krqjUZ0,30868
262
+ machineconfig/scripts/python/helpers_network/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJhSzsDIvYoyqQMVzzSNgXz11A,29920
263
+ machineconfig/scripts/python/helpers_network/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
231
264
  machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
232
265
  machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
233
- machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
234
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=wUlWc-02WRcZVLnHqbKTa6jbbRz6EaONuxA2ue52Sbc,11271
235
- machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
236
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=sHvvlKPirfSnmis8vXSIEu-aNqSAVOyIh-5iEXuyHnw,607
237
- machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
266
+ machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
267
+ machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=5PPkJVEGAsUMksezdpb2Frm4fHTEiGw-7_eWl20PIk4,11689
268
+ machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
238
269
  machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
239
- machineconfig/scripts/python/helpers_repos/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
270
+ machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
271
+ machineconfig/scripts/python/helpers_repos/repo_analyzer_1.py,sha256=72ahcOdEbcJamrjFSKVWn5ATbxUyL7uNA8XU8O63_wA,6269
272
+ machineconfig/scripts/python/helpers_repos/repo_analyzer_2.py,sha256=-pDJvHYIVZ1ed7UhmOVoTPjevXM0Tm4BWmZX8eu0ePM,13190
240
273
  machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
241
274
  machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
242
275
  machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=RPJ7cu9IIzjPw9OKEma1HEz7t5TPg1DMvVnFqoAagLE,3135
244
- machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
- machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdCR90LwY6_9P7gKQzEE,9373
246
- machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
247
- machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
248
- machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
249
- machineconfig/scripts/python/nw/mount_nfs,sha256=Dri4hGiM2GxpqqxpdBPbf7dRHrr7P1HzZy6xtrHYQfU,1855
250
- machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
251
- machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
252
- machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
253
- machineconfig/scripts/python/nw/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
254
- machineconfig/scripts/python/nw/mount_ssh.py,sha256=qt0P4T4pheszexBxaDeLVrGdLIVRoOc-UdfYv5r0OLY,2587
255
- machineconfig/scripts/python/nw/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
256
- machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=VSFhyzYQeLIoSwsUFJFW1Wc89DinrpZ_YxyYB2Ndy-4,30966
257
- machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=2prJs3PMsoAUu5LlZhHIKGVgqj7h6OviGEjAMJLJ7LI,29986
258
- machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
259
- machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=jHJyFTuks_Kw4cgE8xuGDVjO_71JgICrsV9ZQt53meY,3524
260
- machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFTbhwFchYUu8zsjM,2117
261
- machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
262
- machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
263
- machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
264
- machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=An7VTpyrODqrBUPdMsNDwQqY2sBQ3YPyW_87tx2UbJQ,322
265
- machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
266
- machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
267
- machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
276
+ machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=umimrBrLjGimfZzRlvxHgKdld5S-bRrFZTAk6OOZqq0,3221
277
+ machineconfig/scripts/python/helpers_utils/download.py,sha256=Yjooy8vwDJpqXAb-J47C8rPSazIEGUPVRR089TrW7iA,6730
278
+ machineconfig/scripts/python/helpers_utils/pdf.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
279
+ machineconfig/scripts/python/helpers_utils/python.py,sha256=eIVpmtNFI3oI07SXG_tzmz1GPLl7TQkN-6JKlGyzA_4,7153
280
+ machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=S6WuBYXdm4roQc1YPjSgWBmDFOgWD9hrRw6HHbHfpbE,2174
268
281
  machineconfig/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
282
  machineconfig/settings/broot/br.sh,sha256=7CCJflIAirkiuo1suDCT8BzhVzDdJWEfbAxNDG4VPSI,1455
270
283
  machineconfig/settings/broot/brootcd.ps1,sha256=BB8uGnoVywxFWSgwsHxlbS8V4W_Qom3L1SedekGpgWA,877
@@ -289,7 +302,6 @@ machineconfig/settings/lf/linux/autocall/paste.sh,sha256=47DEQpj8HBSa-_TImW-5JCe
289
302
  machineconfig/settings/lf/linux/autocall/pre-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
303
  machineconfig/settings/lf/linux/autocall/rename.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
291
304
  machineconfig/settings/lf/linux/exe/cleaner.sh,sha256=NKK30rUcrHXnwy8srylyaWL-XJdDWJIjF4a3mfbdEsA,209
292
- machineconfig/settings/lf/linux/exe/fzf_nano.sh,sha256=aqYZ2mb-gLu4C6Ct-Tntfb9Xz6LcIYu3hVjQ_EmTXoI,599
293
305
  machineconfig/settings/lf/linux/exe/leftpane_previewer.sh,sha256=KXMq81hIvU9uzOuanluVcxVgJmEOYy-5sUbzcuc9b6U,200
294
306
  machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=qU2AtGR22UWR3Isw5UkJ4OZdxW2VFR3FOaIEJDVjYTg,771
295
307
  machineconfig/settings/lf/linux/exe/previewer.sh,sha256=sjiU6S_P8ExSmCPGz-Uwmrrn075rBmj_-3H4Cvr-ROI,1259
@@ -298,15 +310,13 @@ machineconfig/settings/lf/windows/cd_tere.ps1,sha256=kiW7LiE0Pe2Pjq_4CO2N36wHx_0
298
310
  machineconfig/settings/lf/windows/cd_zoxide.ps1,sha256=gQKJPa_YDmp5BiCKeYYHkZB_p7py8EXIhXtZi6vnN8o,159
299
311
  machineconfig/settings/lf/windows/cd_zoxide2.ps1,sha256=9JwMeQdRxgEA9EGSlDh-XOFgIxQH3Dl9fuAWYnMFROs,141
300
312
  machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8DS4my2CZpjng,2991
301
- machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=TUpOoG2WpnKbjpgECT2_yPsGdhu_5JxWfl4KpY9yS0A,365
302
313
  machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
303
314
  machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
304
- machineconfig/settings/lf/windows/lfcd.ps1,sha256=9mka24wTS2fwu9xUiveCEoodpniAuboZcvbsusQ708E,971
315
+ machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
305
316
  machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
306
317
  machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
307
318
  machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
308
319
  machineconfig/settings/lf/windows/previewer.ps1,sha256=Mfg1WDXIBu0GVECWd11MUCBzE20KVfvu63uhcmncZro,206
309
- machineconfig/settings/lf/windows/tst.ps1,sha256=exLMP3aMVyhCjfJYgdYtcKVwJr_toxtNvVJHldyiGlI,4
310
320
  machineconfig/settings/lf/windows/autocall/delete.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
321
  machineconfig/settings/lf/windows/autocall/on-cd.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
322
  machineconfig/settings/lf/windows/autocall/on-quit.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -317,7 +327,7 @@ machineconfig/settings/lf/windows/autocall/rename.ps1,sha256=47DEQpj8HBSa-_TImW-
317
327
  machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJudwD3SVGhQ,1958
318
328
  machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
319
329
  machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
320
- machineconfig/settings/linters/.ruff.toml,sha256=Cw9FHSyM1oPlLJDAy9Y9GiwyuBYUWI1mqSpz94ddAhc,1655
330
+ machineconfig/settings/linters/.ruff.toml,sha256=JD5bIwK0CIb5fQRx8vPGqcOCra1APQevKxTY1E2527c,1655
321
331
  machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
332
  machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
333
  machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=EM__UsSkXDIIN7tIdMV-tkQV4z_jUmDCmHhjamEyiUA,651
@@ -334,36 +344,80 @@ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLa
334
344
  machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
335
345
  machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
336
346
  machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
337
- machineconfig/settings/shells/bash/init.sh,sha256=p_xu0lPV0hbw70Kn4a5tVhwRQI9GyvDbg460UnzLd0U,3065
347
+ machineconfig/settings/shells/bash/init.sh,sha256=jW2tctxZ7ZxA1KN8CzByByCke2L0iB9IpPWhr_nHNBI,4032
338
348
  machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
339
349
  machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
350
  machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
- machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3NJlhjjNW60tpvMgUYAqO4fKtJ5MsAnlf0CefcLO4,3520
351
+ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=f26BRsxBXN-JNFm3SvJ-3gN2VSIsEN9KlJ6z3j5IqNE,3519
342
352
  machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
343
- machineconfig/settings/shells/nushell/config.nu,sha256=5eN9S7BL9MbznZEwqk2bxcYXzWlaF_g-9JL4tw0pp4E,78
344
- machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
345
- machineconfig/settings/shells/nushell/init.nu,sha256=7JQShOUpztbyoLDb9XJCmRYacrNF6xIt_9uCafUmWJ0,4578
346
- machineconfig/settings/shells/pwsh/init.ps1,sha256=T0Zw9mfQa8rgDTxRk40UbzBq-7gkMgINAC7Or5W4HIY,2926
347
- machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
+ machineconfig/settings/shells/nushell/config.nu,sha256=_8fPc2vIoKIquK0EFJ2lrkzJdb3ZMQnMF70LIbt9Czo,108
354
+ machineconfig/settings/shells/nushell/env.nu,sha256=YmFVuUToLG8YHH5B1UQ0y9kvgxhGzIjHbBjdtFM3e-U,1039
355
+ machineconfig/settings/shells/nushell/init.nu,sha256=_VpH1S6iX_27L7gUPkyVowdQu3CJWE5XgOUrVn3tiTk,7252
356
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
348
357
  machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
349
358
  machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
350
- machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
359
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
351
360
  machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
352
- machineconfig/settings/shells/zsh/init.sh,sha256=3C1YM6bX5MSlC3b-PzHAHj2MzgOAJ767WBCMHL0cJOA,3060
361
+ machineconfig/settings/shells/zsh/init.sh,sha256=46-PVbbuv4h86k6lkSzALCkW7i_qZukfQm5ZFRwAEhs,2821
353
362
  machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
354
363
  machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
355
364
  machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
365
+ machineconfig/settings/television/cable_unix/alias.toml,sha256=OS2OVD_h9zbnnGGlAbXjr5QNv0fIC-7_I4kzENpeTrk,206
366
+ machineconfig/settings/television/cable_unix/aws-buckets.toml,sha256=zIfV_m_8r6E_zMflm7qRRlWQSS92omYxZZKOU0BI5kU,291
367
+ machineconfig/settings/television/cable_unix/aws-instances.toml,sha256=gIXqWUzkZXmd8DsIAPLkwFnhsE7qWzZmohxg7-GGe3I,415
368
+ machineconfig/settings/television/cable_unix/bash-history.toml,sha256=pnqmBdyWVhWzjtXMXKa7072vmWoYl7dT0LI6dIHXRDs,200
369
+ machineconfig/settings/television/cable_unix/channels.toml,sha256=2SG5RPwK7EyfGODDOFj2-Cp7mqSEB_bfidzNr-N-Y_I,399
370
+ machineconfig/settings/television/cable_unix/dirs.toml,sha256=TtyxgiXpvUOD848FOxOA2lFGjI3hNfANMYX9D9HPMOQ,233
371
+ machineconfig/settings/television/cable_unix/distrobox-list.toml,sha256=2NrbpBhjhFpl9JRLbf0nO49c6KbX_R0wxeSWP9EXyIQ,1222
372
+ machineconfig/settings/television/cable_unix/docker-images.toml,sha256=JtpH0aCT_1FCv-vAwtpz6E4zhChHiqZWKtuh0ubgBr8,304
373
+ machineconfig/settings/television/cable_unix/dotfiles.toml,sha256=wT39w01vvgIF4i8ZkhOXF8_ZL-5h0x-QaaoXstkNXcQ,217
374
+ machineconfig/settings/television/cable_unix/env.toml,sha256=Oan6MJh17aQ4bzCj_iXwYQLmPVjRBBhY8Yvhh_X11tU,317
375
+ machineconfig/settings/television/cable_unix/files.toml,sha256=wjhvIzAotarioKHCyWCWXQeKRfWrkXDSHnCYqSQBCGo,242
376
+ machineconfig/settings/television/cable_unix/fish-history.toml,sha256=KBnYIPgBQzneI-NtSSEZWQux3JNW9vc6XAQpL6lBx0E,167
377
+ machineconfig/settings/television/cable_unix/git-branch.toml,sha256=--u28VWDNvHhpN3a2lYYP0_VlYHTnM1Fr69-LwrxN8k,290
378
+ machineconfig/settings/television/cable_unix/git-diff.toml,sha256=hSdNv1c_fGNN0HWmeqoia5df-dnYw4ruBLo6RqgqCoA,225
379
+ machineconfig/settings/television/cable_unix/git-log.toml,sha256=IMCrJTtbC_dZf4GArBbgSB-RrBMvE3jIwt9fLl14T7Q,437
380
+ machineconfig/settings/television/cable_unix/git-reflog.toml,sha256=l3x11d_01S-4WXCmD3Ndf6jFvJUn5rLiPQ3a2vj7NjA,301
381
+ machineconfig/settings/television/cable_unix/git-repos.toml,sha256=qUmxBh2LN3VUEh9rzqsPbu613Xxsrrr7hBeH50EJkMI,630
382
+ machineconfig/settings/television/cable_unix/guix.toml,sha256=KEici84LVpAUDJIbOged6-z4MxIvBfROCNZAUGqpnZo,532
383
+ machineconfig/settings/television/cable_unix/just-recipes.toml,sha256=fxw88Wgav40Z6UFD0_ysTKjypC-XKzquoCkYDWg7b_I,365
384
+ machineconfig/settings/television/cable_unix/k8s-deployments.toml,sha256=2ZcGyWDSLO-ufZBz7yEjoq8SmXLqmuBycYn8lmeenco,896
385
+ machineconfig/settings/television/cable_unix/k8s-pods.toml,sha256=2uh2PdwzA_Pl-6OcDzyEJgJySniWizXP6jG7LR7xn2s,1280
386
+ machineconfig/settings/television/cable_unix/k8s-services.toml,sha256=SSNnu0QkgCzEkqjOTCETfkPuEtmK3Fv4d0qGjzh9qCc,872
387
+ machineconfig/settings/television/cable_unix/man-pages.toml,sha256=Bu7qeG1UwqK2oYPVIxPC8LiAtMXRNgyPCPz1rfbkqew,498
388
+ machineconfig/settings/television/cable_unix/nu-history.toml,sha256=y3YQKbqaefTOs4NbM6aIFCCYjG7HT5l6r4NsbURawws,176
389
+ machineconfig/settings/television/cable_unix/procs.toml,sha256=I6C9-4OY8fv763MQk1PBhLDOdZnz6bCySPwaSicdLI4,478
390
+ machineconfig/settings/television/cable_unix/text.toml,sha256=PAz0-5ucdcXX5NcKKDTSOD2Aa4vaLo-tk4Q6FQ-FN1g,483
391
+ machineconfig/settings/television/cable_unix/tldr.toml,sha256=tL0f4rx75ue815qD-k77y5CIQxoYCkbfwzp8sxarVqo,330
392
+ machineconfig/settings/television/cable_unix/zsh-history.toml,sha256=umeTeNyu7xEkgI_B__Z3RQ8QxXBAqbI3nvhMVbjgDQQ,236
393
+ machineconfig/settings/television/cable_windows/alias.toml,sha256=8kui74-PjGBpX0EIsD8CJFTKf-8QRrICRLv7Peoqgdw,195
394
+ machineconfig/settings/television/cable_windows/dirs.toml,sha256=MakXIZdToEVf3CifckDxN9-5kiumPzXHtFC-kQlh5Zs,217
395
+ machineconfig/settings/television/cable_windows/docker-images.toml,sha256=JtpH0aCT_1FCv-vAwtpz6E4zhChHiqZWKtuh0ubgBr8,304
396
+ machineconfig/settings/television/cable_windows/dotfiles.toml,sha256=spNdMDuez2ZPG43UGeARC6-Y3U4FgXtN3512cXkWRLA,244
397
+ machineconfig/settings/television/cable_windows/env.toml,sha256=jLLIXFswa7dHUnQaMT8_GfnObfz9WVRfMJ129q_crnA,388
398
+ machineconfig/settings/television/cable_windows/files.toml,sha256=0RPhmY6sInx9t6ZdwGaUWbwZnk-3r4syp3OFW5l-Lww,269
399
+ machineconfig/settings/television/cable_windows/git-branch.toml,sha256=--u28VWDNvHhpN3a2lYYP0_VlYHTnM1Fr69-LwrxN8k,290
400
+ machineconfig/settings/television/cable_windows/git-diff.toml,sha256=hSdNv1c_fGNN0HWmeqoia5df-dnYw4ruBLo6RqgqCoA,225
401
+ machineconfig/settings/television/cable_windows/git-log.toml,sha256=IE9Z4qAvihUQbmFA7irUQAVqyK_UXGr1x-nyGP6udAo,297
402
+ machineconfig/settings/television/cable_windows/git-reflog.toml,sha256=AdAJAzLsbLW1-qXLRhNkNOnZVDilJh236ImEhz-l-Uk,249
403
+ machineconfig/settings/television/cable_windows/git-repos.toml,sha256=X4S0mYFR4GeDEaa9tyuy2ixeNedEdkgtipCctNeGiAY,498
404
+ machineconfig/settings/television/cable_windows/nu-history.toml,sha256=y3YQKbqaefTOs4NbM6aIFCCYjG7HT5l6r4NsbURawws,176
405
+ machineconfig/settings/television/cable_windows/pwsh-history.toml,sha256=BBEVBi7o6UvkqOJ7S7bKP0VVDTbA6eSC3CoFVtv25QU,197
406
+ machineconfig/settings/television/cable_windows/text.toml,sha256=aNUd8CAdshw2vsHbawMJqBkbA9Zvw_L6giESJZUeiwo,409
356
407
  machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
357
408
  machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
358
409
  machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
359
410
  machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
360
411
  machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
361
- machineconfig/settings/yazi/init.lua,sha256=fW_FIMNSh8mFGMYqwPerr61HJYMNQJfeKMWzoaVpFKs,892
362
- machineconfig/settings/yazi/keymap_linux.toml,sha256=DFLc_KcyaskQT26Y5eNsvUOPbQeShURbmilyew-8ctI,1982
363
- machineconfig/settings/yazi/keymap_windows.toml,sha256=W4cBsJ2KHA33Qsw4tQTczvJ0DFkZX2dlgyPWNtX3FlE,2024
364
- machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
- machineconfig/settings/yazi/yazi.toml,sha256=KRGbjMkCmbCdTRxEXJXd5gI1kTEQK7VtDGm1MXsOJDw,234
366
- machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=gvXZyD2Csil8KjaMtrx5ZkF9AqRt0LaVfTL724vxMCE,312
412
+ machineconfig/settings/wt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
+ machineconfig/settings/wt/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
414
+ machineconfig/settings/yazi/init.lua,sha256=5ihDgbs9I1wxLpSUBJMBs4ecZ39P-MvMj25jWPbI0sY,1609
415
+ machineconfig/settings/yazi/keymap_linux.toml,sha256=tWMS0JbDXQ4fh-4G09NKKmWFDBat4tU8ysnuqx8pwWs,2338
416
+ machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
417
+ machineconfig/settings/yazi/theme.toml,sha256=YIzoyrdGQA-srv41M0z-O1avoQMM5_Mw9lwUCDagFio,56
418
+ machineconfig/settings/yazi/yazi_linux.toml,sha256=vjQUmL8sn6AFaZUMZG1MULXEP7l1e6l4yhI_DkBbTUQ,2589
419
+ machineconfig/settings/yazi/yazi_windows.toml,sha256=kiNr_lFyMLAa9CGeTW3hKcGCttqG76dOGvkK4tzQCLc,1535
420
+ machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
367
421
  machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
368
422
  machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
369
423
  machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
@@ -372,64 +426,53 @@ machineconfig/settings/zellij/commands/monitor,sha256=b90hWtmb2Romv_g2znRxyoVBuh
372
426
  machineconfig/settings/zellij/commands/standard_panes,sha256=iGZpkJRDPVaw423REaUGwyvtd3IOGVlLQznFYNdz16g,1046
373
427
  machineconfig/settings/zellij/layouts/hist,sha256=ryF00zllHpYPpqr6xyBleY7rb1oQSMT2GcMiiipoH1I,303
374
428
  machineconfig/settings/zellij/layouts/panes.kdl,sha256=KlhKtelBy4Z2ENV_pix4xE7NHVc8sT5gLa745eoqn2Y,417
375
- machineconfig/settings/zellij/layouts/st.kdl,sha256=QXLRK7Wx05aKbKRHVmm4RspLYzPmEa44JMK1TwXQk58,523
429
+ machineconfig/settings/zellij/layouts/st.kdl,sha256=DmcOGKhw64-MsFFkyi9ZKpO8rpfb21FSIBTA-4uO6d4,1176
376
430
  machineconfig/settings/zellij/layouts/st2.kdl,sha256=1FKTH3qQWYMWp_wPMreP7fKOTlVd4cfBy3J8fv4zCBc,1489
377
431
  machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWDivPg0i0drpM1Biw-tOnNZVjiZU,163
378
- machineconfig/setup_linux/__init__.py,sha256=5gT_vc6ze_RUMx9mk7_9kkOTyPPTo3MJFh2fq8MGToU,391
379
- machineconfig/setup_linux/apps.sh,sha256=XOEzhuwYNat83ybamUdnVhDaGf2wlQiT5wVNvz2aJYM,3262
380
- machineconfig/setup_linux/apps_desktop.sh,sha256=L2b_pcw3GiQdoAaoMO7J4bVvUoG5Pnuy9kDhV8JqprU,3325
432
+ machineconfig/setup_linux/__init__.py,sha256=-OGRER8JTu_qhXBHQl0noB6vkVW_y2JA8BlK7Iwq7r4,348
433
+ machineconfig/setup_linux/apps_desktop.sh,sha256=l1jvwK-0zxlcpn7ia7PMWmBr3OddKBmzkpUXwGl5czg,2769
381
434
  machineconfig/setup_linux/apps_gui.sh,sha256=lFPYq7H2bRogPwW6QoEuSr9GnTjHS-jRM_eYg2rjOmM,2301
382
435
  machineconfig/setup_linux/uv.sh,sha256=cyegPmMMB7B3OnVx9KxZiU1JQU3Z_oqboUgwzmW2W40,487
383
- machineconfig/setup_linux/others/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
384
- machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE31BXDP0Fmeta4--gpr-zJZlY,4010
385
- machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
386
- machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
387
- machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
388
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=Wt6lGnLQuqME-U73UJUBtJcaxbtBX7FGPDxcoOJAP8E,1581
389
- machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
390
- machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
436
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=iuAjETHTmxySVXQv76jtUH_J4TIHmh930Uv2EzN6k2Y,1605
437
+ machineconfig/setup_linux/web_shortcuts/live_from_github.sh,sha256=-zDKAzop3P9-XJ9qaRXCfkpcGHKykrTpzsXa6VPTsmQ,1159
438
+ machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
391
439
  machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
392
440
  machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
393
441
  machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
394
- machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
395
- machineconfig/setup_windows/apps.ps1,sha256=rc9M0T6pXK7QunucyF4o9KTULu5xUFOhWRC9uQJH8ho,11020
396
- machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
397
- machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
398
- machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
399
- machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
442
+ machineconfig/setup_windows/__init__.py,sha256=V9kZaO4lrEygI3rxim_Mzq3TAAbG_Ok5GZGxewF_-Nk,307
443
+ machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
400
444
  machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
401
- machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
402
- machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
403
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=-fRdr-hloTWRT0F_ucVvkPVOGGBxzmtNxcQW5ibMvM0,1916
404
- machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
445
+ machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=SoE_WDK5bCwcgoHp4nl-kG1a8Q_ldgSNXDIzB0LW_tY,2584
446
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=8nTvX8yVVaaL9ub314odXTwQLhS3r-_YVxvu8uTwiF8,1939
447
+ machineconfig/setup_windows/web_shortcuts/live_from_github.ps1,sha256=03JtjjEfMxPN5V1-o5R6dvGpRVKLxq4Mx5VhRjPw5Dw,1402
448
+ machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=zMT67MFwq_J6gc6O1kIV4FSI9UDE2AUiZon3FBs4GOk,652
406
449
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
- machineconfig/utils/accessories.py,sha256=Rs8R0GUb2Ub6YimkgXHnI02CShS5BKlrZdCigVxfPlk,4339
408
- machineconfig/utils/code.py,sha256=oI5x0lZFj7MoGc32v-POhs1h20PGZnyCS5KUWRzYQZI,7825
409
- machineconfig/utils/installer.py,sha256=1ScBaTe_pRsfTYht9-LXmirgnNizNy8u1GgetUfEDO4,10351
410
- machineconfig/utils/io.py,sha256=3Z2dLf12sCXe2y2_2p2ypfIH5OCwqvKqcYjcHMgCZt0,6491
411
- machineconfig/utils/links.py,sha256=m5-MfendBa8YiPPyS-lWiuu6Ru1-jU3hg3BYQgIaWg8,25012
412
- machineconfig/utils/meta.py,sha256=4ocYH3Zi6bVN6FVgXoGIfoasV6oxi67I9rQ8hvyYinc,9892
450
+ machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
451
+ machineconfig/utils/code.py,sha256=p6O-TtlY33E2l1muNDBhLXu-Js9_263U4BmJ1RKWwwc,8864
452
+ machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
453
+ machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
454
+ machineconfig/utils/meta.py,sha256=CLkBibpumQGQXJvOhsCeUQSU9-BVdapntTMLlV6RGx0,10528
413
455
  machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
414
- machineconfig/utils/options.py,sha256=VWYx3EKJxIp-CJ8gDGYdjclKSc1tMUhyrC8v3seeneo,7447
415
- machineconfig/utils/path_extended.py,sha256=F9xjmuJ4JMqI6Ap2Hypvfz81BlBe-VsN0CfBaHWGEnQ,49293
416
- machineconfig/utils/path_helper.py,sha256=Yxj8qlf-g_254-dfvRx5rlisM2WA0P-BhZBEbmReeys,8095
417
- machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
418
- machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
456
+ machineconfig/utils/options.py,sha256=dh4PDwLMI2E1uCIEmqjxzAqV5g1VPg5-fw2q42eVs4U,8753
457
+ machineconfig/utils/options_tv.py,sha256=N_LaNlXkBU0tFQ1HvqYmEgJxJEo3ebRTsMGZjM77UcY,4133
458
+ machineconfig/utils/path_extended.py,sha256=7WprxKVo855pFGhM41ZFXaYpLqhG66JkyQ6KzgR6Si4,50851
459
+ machineconfig/utils/path_helper.py,sha256=RVis6gsJ9mEUPdh3tpyM7F2Ow8TruXpI1AoFqWInr7g,10368
460
+ machineconfig/utils/procs.py,sha256=hpavbXmcEZZaDkueqBnEeMLBjAxHMgNxrRJ5kaCEYms,10956
461
+ machineconfig/utils/scheduler.py,sha256=En7M9jgzC5PXDPC5Fq0_RtFf2WDg6fFmsyxYTsW-w6c,14099
419
462
  machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
420
463
  machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
421
- machineconfig/utils/ssh.py,sha256=Ys_wugWWrdSNmgh3QVEEkt0MvFiRX56ngHABn95kw6c,39274
422
- machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
464
+ machineconfig/utils/ssh.py,sha256=jVVvOoVt7F54bwmuahXtFnOG-Ten0eW10CvBvACSBJg,17811
465
+ machineconfig/utils/terminal.py,sha256=7zi33CpnoEHFoopgzgtNtY1hDOCp0kxeFxzmjTmGo4k,4265
423
466
  machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
424
- machineconfig/utils/upgrade_packages.py,sha256=e4iJn_9vL2zCJxAR2dhKJjM0__ALKgI5yB1uBRxSjhQ,6994
425
- machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
467
+ machineconfig/utils/upgrade_packages.py,sha256=zu5oswNQBBwfWCE52khCFEMBc99mC3fEorzRNk99ffw,7295
468
+ machineconfig/utils/ve.py,sha256=Fu4iV4g3zTeOv1MSChI_lUkmnyZCpIbgCykObq4ELSc,2506
426
469
  machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
427
470
  machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
428
471
  machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
429
472
  machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
430
473
  machineconfig/utils/files/ascii_art.py,sha256=SQkayd2r_PkvLCNRjNnq5JzYz8t_dOMHquiJ3E6-9Ck,5216
431
474
  machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
432
- machineconfig/utils/files/headers.py,sha256=B8Gs1IhLBc5q2kDZYxwf8u7m6XHpqvCXX1UO8_l0wt4,3490
475
+ machineconfig/utils/files/headers.py,sha256=nZVdTKCt-n600huiX5qVZO22aArjn4CPsFcjRWrEIBY,3523
433
476
  machineconfig/utils/files/read.py,sha256=QDxLEIYi0NcgAys97IVB6IUl4S9CiFP6TKGxUxRBJOM,4330
434
477
  machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
435
478
  machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
@@ -438,17 +481,24 @@ machineconfig/utils/files/art/water_croco.txt,sha256=5SPK6W3TQe6mO9eFbDIZ4n1rNAj
438
481
  machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
482
  machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
440
483
  machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
- machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
442
- machineconfig/utils/installer_utils/installer.py,sha256=HHjegZb8y1wpqe26S7laHc6DkCutfEDN4xe7wyeHV4U,11513
443
- machineconfig/utils/installer_utils/installer_abc.py,sha256=cXNDIhq1itdGUCxososxfJo029eMlVOj6hu8GY22gC4,11672
444
- machineconfig/utils/installer_utils/installer_class.py,sha256=t9OlHF3br7zuYuLuO75voedRPrDmo9YOXSDxRNXe3Jk,17188
484
+ machineconfig/utils/installer_utils/github_release_bulk.py,sha256=9CzhfndKhKPNYy9GzgSOz9hiiZNXGrcFvE-vQbdoEq0,8275
485
+ machineconfig/utils/installer_utils/install_from_url.py,sha256=yaKAvcJr8jElT830KuJJr8H_eGrIliZ4h3OVlyYkrbg,8681
486
+ machineconfig/utils/installer_utils/installer_class.py,sha256=S6_XL7FwurkBKiS_ZfqDeY6r9FBb2XL32qGS2S2aOtk,14598
487
+ machineconfig/utils/installer_utils/installer_cli.py,sha256=zwe3D2lU5C2K4JnEuiw_jfTbBty1GThasSn4hCR_R6U,8625
488
+ machineconfig/utils/installer_utils/installer_helper.py,sha256=ZolxoaH8K4mmudWWw6QidktnhGKsqDzg1QI6oBJvb5o,6455
489
+ machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=R6QaClIJgXhCzukfN5tVis2Phe7WyJx9bAk-vEjoTBE,10215
490
+ machineconfig/utils/installer_utils/installer_runner.py,sha256=aISG0kaXV49PvRWz_wBaKJ9-SQ2rp_lMZjmeBZ1si78,7920
445
491
  machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
446
492
  machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
447
- machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
493
+ machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
448
494
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
449
- machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
- machineconfig-7.50.dist-info/METADATA,sha256=e9reiprrFarIORS1GFVi1YSfhARUvv_82BQiiDY7KpA,3396
451
- machineconfig-7.50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
- machineconfig-7.50.dist-info/entry_points.txt,sha256=_JNgkzaa_gVAWyZ6UwPwXXQqURRSvAGhrVQ1RiU2sHc,746
453
- machineconfig-7.50.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
454
- machineconfig-7.50.dist-info/RECORD,,
495
+ machineconfig/utils/ssh_utils/abc.py,sha256=gOea3jBdtCX01KLyI1LpSevzhtnTX2zc5pjp1Nmsp84,103
496
+ machineconfig/utils/ssh_utils/copy_from_here.py,sha256=rpUMIEzyTQ4fCRdL8u9lwDa32qGeZY5JyyFvqy0g9Do,5428
497
+ machineconfig/utils/ssh_utils/copy_to_here.py,sha256=ibDivdzzKC7-1sc6JQn4mzreSY8Tbm4etIsAZrbAZv8,13892
498
+ machineconfig/utils/ssh_utils/utils.py,sha256=jj9y3Hzwc4NvcmmAkW-9yHrai4Wi4ZMUU0rErMBGFEs,6326
499
+ machineconfig/utils/ssh_utils/wsl.py,sha256=nSzZnZ7M4d3mfW2z-57OQIwfVpa114bJVOf9tDLheLE,7865
500
+ machineconfig-8.12.dist-info/METADATA,sha256=I-rk3ExCYHCmF5RuXFrTTfvfeWI9jBhnQYTH_dhsFmw,6299
501
+ machineconfig-8.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
502
+ machineconfig-8.12.dist-info/entry_points.txt,sha256=NpkZIzFVsNgyPe5EdUfY7QLuZovfpWxDQ2r2q3xSwvk,638
503
+ machineconfig-8.12.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
504
+ machineconfig-8.12.dist-info/RECORD,,