machineconfig 8.51__py3-none-any.whl → 8.61__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. machineconfig/jobs/installer/python_scripts/sysabc.py +13 -34
  2. machineconfig/profile/mapper_dotfiles.toml +3 -3
  3. machineconfig/scripts/python/devops.py +1 -1
  4. machineconfig/scripts/python/devops_navigator.py +1 -1
  5. machineconfig/scripts/python/helper_env/path_manager_tui.py +1 -1
  6. machineconfig/scripts/python/helpers/helper_env/env_manager_tui.py +1 -1
  7. machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py +1 -1
  8. machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py +8 -4
  9. machineconfig/scripts/python/helpers/helpers_devops/cli_config.py +33 -1
  10. machineconfig/scripts/python/helpers/helpers_devops/cli_config_mount.py +77 -0
  11. machineconfig/scripts/python/helpers/helpers_devops/cli_data.py +4 -0
  12. machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py +90 -6
  13. machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py +3 -3
  14. machineconfig/scripts/python/helpers/helpers_devops/cli_self.py +41 -15
  15. machineconfig/scripts/python/helpers/helpers_devops/cli_share_temp.py +69 -0
  16. machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py +4 -4
  17. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/__init__.py +0 -0
  18. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/commands.py +25 -0
  19. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/device_entry.py +17 -0
  20. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/devices.py +17 -0
  21. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/linux.py +103 -0
  22. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/macos.py +100 -0
  23. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/selection.py +47 -0
  24. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/utils.py +28 -0
  25. machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/windows.py +91 -0
  26. machineconfig/scripts/python/helpers/helpers_msearch/scripts_windows/fzfg.ps1 +1 -6
  27. machineconfig/scripts/python/helpers/helpers_network/ssh/__init__.py +0 -0
  28. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_key_windows.py +23 -0
  29. machineconfig/scripts/python/helpers/helpers_network/{ssh_add_ssh_key.py → ssh/ssh_add_ssh_key.py} +21 -27
  30. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_cloud_init.py +33 -0
  31. machineconfig/scripts/python/helpers/helpers_network/{ssh_debug_linux.py → ssh/ssh_debug_linux.py} +70 -51
  32. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux_utils.py +35 -0
  33. machineconfig/scripts/python/helpers/helpers_network/{ssh_debug_windows.py → ssh/ssh_debug_windows.py} +12 -42
  34. machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows_utils.py +34 -0
  35. machineconfig/scripts/python/helpers/helpers_repos/cloud_repo_sync.py +2 -3
  36. machineconfig/scripts/python/helpers/{helpers_terminal/terminal_impl.py → helpers_sessions/attach_impl.py} +16 -25
  37. machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py +57 -129
  38. machineconfig/scripts/python/helpers/helpers_sessions/utils.py +69 -0
  39. machineconfig/scripts/python/mcfg_entry.py +0 -7
  40. machineconfig/scripts/python/sessions.py +95 -14
  41. machineconfig/scripts/python/utils.py +3 -2
  42. machineconfig/settings/shells/bash/init.sh +0 -7
  43. machineconfig/settings/shells/pwsh/init.ps1 +2 -4
  44. machineconfig/settings/shells/wezterm/wezterm.lua +1 -0
  45. machineconfig/settings/shells/wt/settings.json +13 -19
  46. machineconfig/settings/shells/zsh/init.sh +0 -1
  47. machineconfig/settings/zellij/__init__.py +0 -0
  48. machineconfig/settings/zellij/config.kdl +0 -295
  49. machineconfig/settings/zellij/layouts/__init__.py +0 -0
  50. machineconfig/settings/zellij/layouts/st.kdl +0 -1
  51. machineconfig/settings/zellij/layouts/st2.kdl +6 -2
  52. machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
  53. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
  54. machineconfig/utils/installer_utils/installer_cli.py +6 -2
  55. machineconfig/utils/installer_utils/installer_helper.py +50 -34
  56. machineconfig/utils/installer_utils/installer_locator_utils.py +3 -13
  57. machineconfig/utils/options_utils/tv_options.py +1 -1
  58. machineconfig/utils/procs.py +35 -27
  59. machineconfig/utils/schemas/layouts/layout_types.py +10 -0
  60. machineconfig/utils/source_of_truth.py +1 -0
  61. machineconfig/utils/ssh_utils/abc.py +1 -1
  62. {machineconfig-8.51.dist-info → machineconfig-8.61.dist-info}/METADATA +2 -3
  63. {machineconfig-8.51.dist-info → machineconfig-8.61.dist-info}/RECORD +68 -72
  64. {machineconfig-8.51.dist-info → machineconfig-8.61.dist-info}/entry_points.txt +0 -1
  65. machineconfig/jobs/scripts/bash_scripts/android.sh +0 -2
  66. machineconfig/jobs/scripts/bash_scripts/mount_drive +0 -128
  67. machineconfig/jobs/scripts/bash_scripts/mount_nfs +0 -49
  68. machineconfig/jobs/scripts/bash_scripts/mount_nw_drive +0 -61
  69. machineconfig/jobs/scripts/bash_scripts/mount_smb +0 -3
  70. machineconfig/jobs/scripts/bash_scripts/share_cloud.sh +0 -64
  71. machineconfig/jobs/scripts/bash_scripts/share_nfs +0 -49
  72. machineconfig/jobs/scripts/bash_scripts/start_docker +0 -23
  73. machineconfig/jobs/scripts/powershell_scripts/Restore-ThunderbirdProfile.ps1 +0 -92
  74. machineconfig/jobs/scripts/powershell_scripts/docker.ps1 +0 -7
  75. machineconfig/jobs/scripts/powershell_scripts/mount_nfs.ps1 +0 -42
  76. machineconfig/jobs/scripts/powershell_scripts/mount_nw.ps1 +0 -9
  77. machineconfig/jobs/scripts/powershell_scripts/mount_smb.ps1 +0 -2
  78. machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1 +0 -13
  79. machineconfig/jobs/scripts/powershell_scripts/obs.ps1 +0 -4
  80. machineconfig/jobs/scripts/powershell_scripts/power_options.ps1 +0 -7
  81. machineconfig/jobs/scripts/powershell_scripts/share_cloud.cmd +0 -34
  82. machineconfig/jobs/scripts/powershell_scripts/share_smb.ps1 +0 -16
  83. machineconfig/scripts/python/helpers/helpers_network/mount_nfs.py +0 -85
  84. machineconfig/scripts/python/helpers/helpers_network/mount_nw_drive.py +0 -48
  85. machineconfig/scripts/python/helpers/helpers_network/mount_ssh.py +0 -64
  86. machineconfig/scripts/python/terminal.py +0 -58
  87. machineconfig/settings/zellij/config.orig.kdl +0 -295
  88. /machineconfig/{scripts/python/helpers/helpers_terminal → cluster/sessions_managers/wt_utils/examples}/__init__.py +0 -0
  89. /machineconfig/scripts/python/helpers/helpers_network/{ssh_add_identity.py → ssh/ssh_add_identity.py} +0 -0
  90. {machineconfig-8.51.dist-info → machineconfig-8.61.dist-info}/WHEEL +0 -0
  91. {machineconfig-8.51.dist-info → machineconfig-8.61.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
 
3
3
  import psutil
4
4
  from rich.progress import Progress, SpinnerColumn, TextColumn
5
- from machineconfig.utils.options import choose_from_options
6
- from typing import Optional, TypedDict, List, Dict
5
+ from typing import Optional, TypedDict, List
7
6
  from rich.console import Console
8
7
  from rich.panel import Panel
9
8
  from datetime import datetime
@@ -36,7 +35,7 @@ def get_processes_accessing_file(path: str) -> List[FileAccessInfo]:
36
35
  # header for searching processes
37
36
  title = "🔍 SEARCHING FOR PROCESSES ACCESSING FILE"
38
37
  console.print(Panel(title, title="[bold blue]Process Info[/bold blue]", border_style="blue"))
39
- res: Dict[int, List[str]] = {}
38
+ res: list[FileAccessInfo] = []
40
39
 
41
40
  with Progress(SpinnerColumn(), TextColumn("[progress.description]{task.description}")) as progress:
42
41
  progress.add_task("🔎 Scanning processes...", total=None)
@@ -48,10 +47,10 @@ def get_processes_accessing_file(path: str) -> List[FileAccessInfo]:
48
47
  continue
49
48
  tmp = [file.path for file in files if path in file.path]
50
49
  if len(tmp) > 0:
51
- res[proc.pid] = tmp
50
+ res.append({"pid": proc.pid, "files": tmp})
52
51
 
53
52
  # Convert to list of dictionaries for consistent data structure
54
- result_data: List[FileAccessInfo] = [{"pid": pid, "files": files} for pid, files in res.items()]
53
+ result_data: List[FileAccessInfo] = res
55
54
  console.print(Panel(f"✅ Found {len(res)} processes accessing the specified file", title="[bold blue]Process Info[/bold blue]", border_style="blue"))
56
55
  return result_data
57
56
 
@@ -99,7 +98,7 @@ class ProcessManager:
99
98
 
100
99
  # Sort by memory usage (descending)
101
100
  process_info.sort(key=lambda x: x["memory_usage_mb"], reverse=True)
102
- self.data = process_info
101
+ self.data: list[ProcessInfo] = process_info
103
102
  console.print(Panel(f"✅ Process Manager initialized with {len(process_info)} processes", title="[bold blue]Process Info[/bold blue]", border_style="blue"))
104
103
 
105
104
  def _format_process_table(self) -> str:
@@ -121,22 +120,36 @@ class ProcessManager:
121
120
  return "\n".join(lines)
122
121
 
123
122
  def choose_and_kill(self):
124
- # header for interactive process selection
125
- title = "🎯 INTERACTIVE PROCESS SELECTION AND TERMINATION"
126
- console.print(Panel(title, title="[bold blue]Process Info[/bold blue]", border_style="blue"))
127
- # Format data as table for display
128
- formatted_data = self._format_process_table()
129
- all_lines = formatted_data.split("\n")
130
- header_and_separator = all_lines[:2] # First two lines: header and separator
131
- options = all_lines[2:] # Skip header and separator, only process lines
132
- res = choose_from_options(options=all_lines, msg="📋 Select processes to manage:", tv=True, multi=True)
133
- # Filter out header and separator if they were selected
134
- selected_lines = [line for line in res if line not in header_and_separator]
135
- indices = [options.index(val) for val in selected_lines]
136
- selected_processes = [self.data[i] for i in indices]
137
- print("\n📊 All Processes:")
138
- print(formatted_data)
139
- print("\n🎯 Selected Processes:")
123
+ # # header for interactive process selection
124
+ # title = "🎯 INTERACTIVE PROCESS SELECTION AND TERMINATION"
125
+ # console.print(Panel(title, title="[bold blue]Process Info[/bold blue]", border_style="blue"))
126
+ # # Format data as table for display
127
+ # formatted_data = self._format_process_table()
128
+ # all_lines = formatted_data.split("\n")
129
+ # header_and_separator = all_lines[:2] # First two lines: header and separator
130
+ # options = all_lines[2:] # Skip header and separator, only process lines
131
+ # from machineconfig.utils.options import choose_from_options
132
+ # res = choose_from_options(options=all_lines, msg="📋 Select processes to manage:", tv=True, multi=True)
133
+ # # Filter out header and separator if they were selected
134
+ # selected_lines = [line for line in res if line not in header_and_separator]
135
+ # indices = [options.index(val) for val in selected_lines]
136
+ # selected_processes = [self.data[i] for i in indices]
137
+ # print("\n📊 All Processes:")
138
+ # print(formatted_data)
139
+ # print("\n🎯 Selected Processes:")
140
+
141
+ from machineconfig.utils.options_utils.tv_options import choose_from_dict_with_preview
142
+ # def choose_from_dict_with_preview(options_to_preview_mapping: dict[str, Any], extension: str | None, multi: bool, preview_size_percent: float) -> str | list[str] | None:
143
+
144
+ import json
145
+ commands = choose_from_dict_with_preview(
146
+ options_to_preview_mapping={str(proc["command"]): json.dumps({k: str(v) for k, v in proc.items()}, indent=2) for proc in self.data},
147
+ multi=True,
148
+ extension="json",
149
+ preview_size_percent=70,
150
+ )
151
+ selected_processes = [proc for proc in self.data if str(proc["command"]) in commands]
152
+
140
153
  for process in selected_processes:
141
154
  print(f"PID: {process['pid']}, Name: {process['name']}, Memory: {process['memory_usage_mb']:.2f}MB")
142
155
  for idx, process in enumerate(selected_processes):
@@ -216,10 +229,5 @@ def get_age(create_time: datetime) -> str:
216
229
  return str(delta).split(".")[0] # remove microseconds
217
230
 
218
231
 
219
- def main():
220
- from machineconfig.utils.procs import ProcessManager
221
- ProcessManager().choose_and_kill()
222
-
223
-
224
232
  if __name__ == "__main__":
225
233
  pass
@@ -60,3 +60,13 @@ def serialize_layouts_to_file(layouts: list[LayoutConfig], version: Literal["0.1
60
60
  existing_content_layout["layouts"].append(a_new_layout)
61
61
  p.write_text(json.dumps(existing_content_layout, indent=4), encoding="utf-8")
62
62
  return None
63
+
64
+
65
+ def substitute_home(tabs: list[TabConfig]) -> list["TabConfig"]:
66
+ import json
67
+ from pathlib import Path
68
+ json_str = json.dumps(tabs)
69
+ json_str = json_str.replace("~", str(Path.home())).replace("$HOME", str(Path.home()))
70
+ json_str = json_str.replace("""command": "f """, """command": "~/.config/machineconfig/scripts/wrap_mcfg fire """)
71
+ json_str = json_str.replace("""command": "s """, """command": "~/.config/machineconfig/scripts/wrap_mcfg sessions """)
72
+ return json.loads(json_str)
@@ -12,6 +12,7 @@ EXCLUDE_DIRS = [".links", "notebooks",
12
12
  ".venv", ".git", ".idea", ".vscode", "node_modules", "__pycache__", ".mypy_cache"
13
13
  ]
14
14
  LIBRARY_ROOT = Path(machineconfig.__file__).resolve().parent
15
+ REPO_ROOT = LIBRARY_ROOT.parent.parent
15
16
 
16
17
  CONFIG_ROOT = Path.home().joinpath(".config/machineconfig")
17
18
  DEFAULTS_PATH = Path.home().joinpath("dotfiles/machineconfig/defaults.ini")
@@ -1,5 +1,5 @@
1
1
 
2
2
 
3
- MACHINECONFIG_VERSION = "machineconfig>=8.51"
3
+ MACHINECONFIG_VERSION = "machineconfig>=8.61"
4
4
  DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
5
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 8.51
3
+ Version: 8.61
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -15,7 +15,6 @@ Requires-Dist: cryptography>=46.0.3
15
15
  Requires-Dist: fire>=0.7.1
16
16
  Requires-Dist: gitpython>=3.1.45
17
17
  Requires-Dist: joblib>=1.5.2
18
- Requires-Dist: numpy>=2.4.1
19
18
  Requires-Dist: paramiko>=4.0.0
20
19
  Requires-Dist: psutil>=7.1.3
21
20
  Requires-Dist: questionary>=2.1.1
@@ -61,7 +60,7 @@ Entering, **Machineconfig**, a cli-based cross-platform **Stack Manager** — I
61
60
  What is your stack? Say you have a new computer/ VM, how do you go about setting it up with your stack?
62
61
  Surely, you have:
63
62
  * A bunch of CLI tools.
64
- * [Optional] A bunch of softwares (GUIs for desktop environment)
63
+ * [Optional] A bunch of softwares (GUIs for desktop environment).
65
64
  * [Public] A bunch of configuration files for your tools.
66
65
  * [Private] A bunch of secrets, passowords, tokens, credentials etc, etc.
67
66
  * Data (Both highly sensitive and encrypted less serious unencrypted data)
@@ -35,6 +35,7 @@ machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcY
35
35
  machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=t5EWNOVS-PTc2fWE8aWNBrDyqR8akLtwtRinztxOdpY,9590
36
36
  machineconfig/cluster/sessions_managers/wt_utils/status_reporting.py,sha256=OE24ggT2IWwR22rLHPc6fKxnafjPqIqoPa5VqeMDV90,3961
37
37
  machineconfig/cluster/sessions_managers/wt_utils/wt_helpers.py,sha256=T6u7Ae2F84VEoQykAZotJdkm8KtwLSyAW-LLC9PQKZE,7824
38
+ machineconfig/cluster/sessions_managers/wt_utils/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
39
  machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=FyYsqowiFAvqv4M0eXRnw2U38r7u8EI1I3p580kV5Y0,2976
39
40
  machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=FMpwaSeDCc71pEiVk99s8f5NkZEQ8zKQNUuaSXojgq4,4615
40
41
  machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=8l8OAfWYy5xv-EaVqtXLqvPo9YaR9i8kFqGMhPzk0nw,2616
@@ -87,30 +88,12 @@ machineconfig/jobs/installer/python_scripts/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsR
87
88
  machineconfig/jobs/installer/python_scripts/nerdfont.py,sha256=8Lz8NE0CYREDVVnSqRnaFsLqGAPUcQ-bt320KdTbrDw,4178
88
89
  machineconfig/jobs/installer/python_scripts/nerfont_windows_helper.py,sha256=A8LDhdo8UfW__Lg9uZiqCA2FMI_KW9eVZNqJ8RDgaBI,6159
89
90
  machineconfig/jobs/installer/python_scripts/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
90
- machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=E9fXHaFiteX6RSaMi4Vd_r8CW6SLXu4cJoolzmWH21c,6588
91
+ machineconfig/jobs/installer/python_scripts/sysabc.py,sha256=tjgmGgHSzEEsgUv4aNXS1fG3feER1B7iaRdnH_sJVuY,5836
91
92
  machineconfig/jobs/installer/python_scripts/wezterm.py,sha256=MXJc0-8ixCm-5dN47R72FGkfzhIJD9-w4EM9bCdCGaM,3027
92
93
  machineconfig/jobs/installer/python_scripts/winget.py,sha256=hxid9fWGLiTsqVqAFxM6jydmDeYdPQjsMh2XEBG-ROY,5631
93
94
  machineconfig/jobs/installer/python_scripts/yazi.py,sha256=oy9GfhQlX2n_crfe8MrjJ2paAPe0xTxMouIEdN1IVL0,4893
94
- machineconfig/jobs/scripts/bash_scripts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
95
95
  machineconfig/jobs/scripts/bash_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob2wKSVKzCvOHIxEjoSTOA,864
96
- machineconfig/jobs/scripts/bash_scripts/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
97
- machineconfig/jobs/scripts/bash_scripts/mount_nfs,sha256=bgP0NmplFZowg48J0KMkUSqteHYGB2PNmhAYvtPJhHk,1756
98
- machineconfig/jobs/scripts/bash_scripts/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
99
- machineconfig/jobs/scripts/bash_scripts/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
100
- machineconfig/jobs/scripts/bash_scripts/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
101
- machineconfig/jobs/scripts/bash_scripts/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
102
- machineconfig/jobs/scripts/bash_scripts/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
103
- machineconfig/jobs/scripts/powershell_scripts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
104
96
  machineconfig/jobs/scripts/powershell_scripts/cmatrix.ps1,sha256=T3K9vcALeY2UiR6hMCaiW_DdIWGAMqdESwvv1kE3kCQ,1781
105
- machineconfig/jobs/scripts/powershell_scripts/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
106
- machineconfig/jobs/scripts/powershell_scripts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
107
- machineconfig/jobs/scripts/powershell_scripts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
108
- machineconfig/jobs/scripts/powershell_scripts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
109
- machineconfig/jobs/scripts/powershell_scripts/mount_ssh.ps1,sha256=Qaiz9MdZIdURKn-HD9_ND3C6IBbDuqKXjMk-xswZHzo,490
110
- machineconfig/jobs/scripts/powershell_scripts/obs.ps1,sha256=3SNCjvkaaWMaN6JJAHDMvbvOIHw_zaXF74KalRimnE4,114
111
- machineconfig/jobs/scripts/powershell_scripts/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
112
- machineconfig/jobs/scripts/powershell_scripts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
113
- machineconfig/jobs/scripts/powershell_scripts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
114
97
  machineconfig/jobs/scripts/powershell_scripts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
115
98
  machineconfig/jobs/scripts_dynamic/a.py,sha256=bJWHVlrgs0khj_w6cxeOyyvhWSnLeWNh0xuIkzq2cI0,16576
116
99
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -120,7 +103,7 @@ machineconfig/profile/create_links.py,sha256=NRo0jRwLgCH1VEPdGB-zeo45oH6yBwoHqSf
120
103
  machineconfig/profile/create_links_export.py,sha256=ZgL8uW5qZtDXF2FiVQRP8gGKdG3iUm3nwoZXpikS9qQ,4529
121
104
  machineconfig/profile/create_shell_profile.py,sha256=CBwHoGQDtUlyqqRi7e46TfvrF5RHumcW2TAYZRc07pQ,8203
122
105
  machineconfig/profile/mapper_data.toml,sha256=T_4flvVYtiqscrc8vvgcFAGPqH7I3LxK88q0VfJWHXs,2648
123
- machineconfig/profile/mapper_dotfiles.toml,sha256=Z9Ss3B7y4VcfBz89ECr19MixnRyjnQbKzicOJ3lPwL8,15891
106
+ machineconfig/profile/mapper_dotfiles.toml,sha256=XkfQD81zgj5FcUtHBCF7XwGhMe_X8ndfGB99N9vTm5E,15930
124
107
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
125
108
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
126
109
  machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
@@ -133,15 +116,14 @@ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
133
116
  machineconfig/scripts/python/agents.py,sha256=eYxZsXZC1uiLzNZuRUcTjtcvCEhKAxFWfpglU3_XevQ,8259
134
117
  machineconfig/scripts/python/cloud.py,sha256=Wu1BOIQds5Qcyg0Eo2vYatLqVdue8EHJiIlO8Uxaw4k,4700
135
118
  machineconfig/scripts/python/croshell.py,sha256=qV3SbzTnc9MICX9kwTDGHWLbTZrWZYGqteAMn1VPUPs,1585
136
- machineconfig/scripts/python/devops.py,sha256=Lh-wqePnLQmd7eLF4R5q6FDOYIELG0fP2jRO1xA3MFQ,4753
137
- machineconfig/scripts/python/devops_navigator.py,sha256=mljeB0uQGOO1evFIVdffO4Jp6rm7ok_2FXW-KI0t9E0,415
119
+ machineconfig/scripts/python/devops.py,sha256=wxXsIuko0mPg91dYYRwGldRkgd678ti10YHfN5WpKHY,4754
120
+ machineconfig/scripts/python/devops_navigator.py,sha256=XMfIUdtTIuGv6KHomt1i2pvW0bCRzMylVB1tOHhgo3o,415
138
121
  machineconfig/scripts/python/fire_jobs.py,sha256=UYQuhdVWZL6kVk_5TMZn87t-BwQPP6gwh9qyLDrk_rw,4062
139
122
  machineconfig/scripts/python/ftpx.py,sha256=x1GTztr9D1-Go7rZhdGNL_lixx_RJnCJKBKngxT2ki4,1305
140
- machineconfig/scripts/python/mcfg_entry.py,sha256=KYeN0ogjlb2I45sX-a_bL2JuV-CLwBxpBieuzb_-iFY,9084
123
+ machineconfig/scripts/python/mcfg_entry.py,sha256=1ew2Jpbi7Wy8lRg1jy3lmmtfRTX_rfir0AO_7frWWq4,8686
141
124
  machineconfig/scripts/python/msearch.py,sha256=sWwFmbAuUqNY45BPJ5LVCIuOkGLq-aBOhK3pVIK3pgE,1787
142
- machineconfig/scripts/python/sessions.py,sha256=5Ley67Ocme71cv74faEfxBThELo_JY34nsngyQLkBpo,5790
143
- machineconfig/scripts/python/terminal.py,sha256=4AjP8pFHA_F-hfiUlflaj19DMCFq249gK22Kc2DZBZM,3010
144
- machineconfig/scripts/python/utils.py,sha256=SmqjnWLHKBF0cPUsrQsIpWF07PC4rWQcYNDi9n1RbD0,8836
125
+ machineconfig/scripts/python/sessions.py,sha256=qDYAbC8bHQiJ1Q3exm46DkHHCFPzeiBmUE78eTzqaIg,10242
126
+ machineconfig/scripts/python/utils.py,sha256=zgclmap5KM76_tQi7NClxFRPpqO6SlTCaB7QnDEuJ4M,8878
145
127
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
128
  machineconfig/scripts/python/ai/initai.py,sha256=s43xJ2GsyniiMfqt-lOdtILSf1KRsiYbqzqzm52e70s,1678
147
129
  machineconfig/scripts/python/ai/scripts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -177,12 +159,12 @@ machineconfig/scripts/python/ai/utils/shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZ
177
159
  machineconfig/scripts/python/ai/utils/vscode_tasks.py,sha256=-TH1pRgjDWCJAtr1zp7a0tD2Ge1CS0SOcpcr27qaZjc,1555
178
160
  machineconfig/scripts/python/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
161
  machineconfig/scripts/python/graph/cli_graph.json,sha256=vwgjSe9Gn8LmT-_Cz5u16H4QTbKAWRcaVGhM6P0jVfY,371914
180
- machineconfig/scripts/python/helper_env/path_manager_tui.py,sha256=o-FudMUS7vVYXIq155eY3doOOaymD2uC8MZ3W05dc7E,6939
162
+ machineconfig/scripts/python/helper_env/path_manager_tui.py,sha256=N9-Bas1t75BMccBb6hhwGKLUfVP0Nmq7DfNFcdO9sBQ,6939
181
163
  machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
164
  machineconfig/scripts/python/helpers/helper_env/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
183
- machineconfig/scripts/python/helpers/helper_env/env_manager_tui.py,sha256=bSUrl5ab6Ptncmu9HKWxztW6FCu10DFkdGyQ9FO9e-w,7055
165
+ machineconfig/scripts/python/helpers/helper_env/env_manager_tui.py,sha256=-fTf-JepIklpiXCBaBrQOBJ1-Xl6VnqQEkaUKv1ntik,7055
184
166
  machineconfig/scripts/python/helpers/helper_env/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
185
- machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py,sha256=o-FudMUS7vVYXIq155eY3doOOaymD2uC8MZ3W05dc7E,6939
167
+ machineconfig/scripts/python/helpers/helper_env/path_manager_tui.py,sha256=N9-Bas1t75BMccBb6hhwGKLUfVP0Nmq7DfNFcdO9sBQ,6939
186
168
  machineconfig/scripts/python/helpers/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
169
  machineconfig/scripts/python/helpers/helpers_agents/agents_impl.py,sha256=feo74reaBZ7-Zt-rpfWRrfC_i4rr2oft6M0VvzWeovQ,6961
188
170
  machineconfig/scripts/python/helpers/helpers_agents/fire_agents_help_launch.py,sha256=NbpYT8h3dhY1LFVjVQ4EmzMZkGc6l1KIveu3k4U3QqE,7129
@@ -213,7 +195,7 @@ machineconfig/scripts/python/helpers/helpers_cloud/helpers2.py,sha256=vRUAuDvtNU
213
195
  machineconfig/scripts/python/helpers/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
214
196
  machineconfig/scripts/python/helpers/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
197
  machineconfig/scripts/python/helpers/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
216
- machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py,sha256=7V-8jiUH9zhbUY0jDRYJbiar77of6MKNdUciGJnJ5kM,8157
198
+ machineconfig/scripts/python/helpers/helpers_croshell/croshell_impl.py,sha256=Fa62SHvaLjbzOvaVN-uN3jcRG5V44NqU9LyReyBWlhg,8341
217
199
  machineconfig/scripts/python/helpers/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
218
200
  machineconfig/scripts/python/helpers/helpers_croshell/scheduler.py,sha256=Pmmn2lk8rmFTk3JcWxW88tLFPkICjkSbVtiTNHhASnA,3002
219
201
  machineconfig/scripts/python/helpers/helpers_croshell/start_slidev.py,sha256=2AJ7m0180YxWFu3l9MJkvqGzZqtSIA5FprgzLqHFcZc,4940
@@ -222,20 +204,31 @@ machineconfig/scripts/python/helpers/helpers_croshell/viewer_template.py,sha256=
222
204
  machineconfig/scripts/python/helpers/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
205
  machineconfig/scripts/python/helpers/helpers_devops/backup_config.py,sha256=YMVxInGQhhQF2TDsNGIGOM8fyLijpoKH2Mbne1piwIY,6217
224
206
  machineconfig/scripts/python/helpers/helpers_devops/cli_backup_retrieve.py,sha256=6qx-XdhbOyd5fMXHwSByO8M0qpoOyt560Iy-Hi_fO3s,12013
225
- machineconfig/scripts/python/helpers/helpers_devops/cli_config.py,sha256=9h1-LhTC1XxdjFsl6gw8WkC3GJeLwZjz1vZ5hmGyPPA,5074
207
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config.py,sha256=wgMG7mGX7IlYhbfI_hjSj3W_yHmX31_Ib2FCHXjybAM,6903
226
208
  machineconfig/scripts/python/helpers/helpers_devops/cli_config_dotfile.py,sha256=WeG7-MpeQZXVqgfl6ylLbrROjy4oDS8UFSV18PbgMMw,14484
227
- machineconfig/scripts/python/helpers/helpers_devops/cli_data.py,sha256=h2fsRU8BcHvAzlaFINEyBToKtoPEUum6yE0IcKjrczo,3616
228
- machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py,sha256=V3ZhxebibVsN6IqRSO40raWRgxIZy2-sOOPMloWfdfc,10629
229
- machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py,sha256=ZEJAsXE4T9fl-8tInebr__buJrt9JJ8f53o_QAsIBn8,20140
230
- machineconfig/scripts/python/helpers/helpers_devops/cli_self.py,sha256=AE6t92G-fvLGR2-A822nnxVIIZRozCxhqhm2FMXAcfI,9993
209
+ machineconfig/scripts/python/helpers/helpers_devops/cli_config_mount.py,sha256=XvVCToIb_uVhHWTW0bHbtNWcx7iilQkgDNtn9KJz2fA,2572
210
+ machineconfig/scripts/python/helpers/helpers_devops/cli_data.py,sha256=7QdfpN8rtAjl5DaZDL1twc9QnA6WCtM14_3fd4fuCgI,3742
211
+ machineconfig/scripts/python/helpers/helpers_devops/cli_nw.py,sha256=fjTbBMAYbXvan9S-cGuKgRYPyKStntNsSTLFK7QQTjg,14949
212
+ machineconfig/scripts/python/helpers/helpers_devops/cli_repos.py,sha256=27cH5kekcCpNdviwe-H4Of43kjxJqgqFXHRrVWK7L1A,20140
213
+ machineconfig/scripts/python/helpers/helpers_devops/cli_self.py,sha256=6_LdbKPsxmkVny72FLDCj5RbGhzFL5NqRt16nNWIn_g,11410
231
214
  machineconfig/scripts/python/helpers/helpers_devops/cli_share_file.py,sha256=-yV1kQkvCnUMkJ1cNgPLhCFJ9ql0xjevMOvjC95PvJw,7231
232
215
  machineconfig/scripts/python/helpers/helpers_devops/cli_share_server.py,sha256=9uNNZrXeR_SncrqF5Dmr0PJkL4H5y6EZDfKiIG6YId0,6106
216
+ machineconfig/scripts/python/helpers/helpers_devops/cli_share_temp.py,sha256=K3rxd-AhzvuKuDpiGdVgfZ5KpMdYLOM8kfwGdGUQiCQ,2063
233
217
  machineconfig/scripts/python/helpers/helpers_devops/cli_share_terminal.py,sha256=LlGxYa-ZYnp9fa0VHYEYShRg6gbEeHUQm5ME-J0wC8I,6538
234
- machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py,sha256=FV3bPsY4AOKRY6nomh7idFxWeKQdDOEziv7TqoeTAE0,8791
218
+ machineconfig/scripts/python/helpers/helpers_devops/cli_ssh.py,sha256=OzbTQGTmBp2e5R8JuydcU8AVBQbMgromiURXt1wgzdM,8807
235
219
  machineconfig/scripts/python/helpers/helpers_devops/devops_status.py,sha256=ePrIk6F9CqSRujiTZG9j-3V9KC93x2qBwJrAS2TI-Gs,20690
236
220
  machineconfig/scripts/python/helpers/helpers_devops/devops_update_repos.py,sha256=h_V0sllK9a5vflvB32R44yTlK4rFmDuZacr6LhLhPlw,10141
237
221
  machineconfig/scripts/python/helpers/helpers_devops/interactive.py,sha256=hpgMSUeNyXfu0FPYCrfY7zYfMU10cFjGjXluYr7O180,13137
238
222
  machineconfig/scripts/python/helpers/helpers_devops/run_script.py,sha256=XojRnLi2aig84lPb4ATE6GTybok_TwHo7xZAdW_i6XE,9474
223
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/commands.py,sha256=SQcWmzJeVGIqN0E69DIuJOOFfjtbhvchEPbaLzEMUvs,912
225
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/device_entry.py,sha256=6cYbgS-wzErVm-LY1hxBQtLB-2ScD0bjC8jkjeaL7j8,335
226
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/devices.py,sha256=XCBAKU6DZRSqktTS-8BfqHSl2MLYjq6gtblK_iPy5iE,707
227
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/linux.py,sha256=xmOzK5lWcjZClVcA69k40o5kx4MP9LQm-cU_7-JPCnA,3458
228
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/macos.py,sha256=J4v0dB7FAOMLs_fsALTbV_SaN3c5kFxVEK1sYG_xT1c,3414
229
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/selection.py,sha256=R2iic91W3JlX9bgrh_qYPo73DHNbOgV7aHpSX9HcoJw,1784
230
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/utils.py,sha256=7nq7e1yWCtlLgB6iy5wDFycyBT2OSBn4ducXbSldKS0,1132
231
+ machineconfig/scripts/python/helpers/helpers_devops/mount_helpers/windows.py,sha256=IcVuVuV64z-nNnNWNAJYnjT_Xq_3Yi3TGj1ymjpFnaI,3469
239
232
  machineconfig/scripts/python/helpers/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
233
  machineconfig/scripts/python/helpers/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
241
234
  machineconfig/scripts/python/helpers/helpers_devops/themes/choose_starship_theme.ps1,sha256=TdcjLlE6pJUFQydmkLyHXC4k-YCeKWwTYCdtW9qIxYE,2137
@@ -253,7 +246,7 @@ machineconfig/scripts/python/helpers/helpers_msearch/__init__.py,sha256=eZSLmDDB
253
246
  machineconfig/scripts/python/helpers/helpers_msearch/msearch_impl.py,sha256=BHcPJp84glqDEg06jfKAu-VnAzAHDImQuU8ncWQdjrU,9287
254
247
  machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/fzfg,sha256=5-YffQSd5-NLyXjPSw8QXiPD1aax1lQgUBRofEU4Hck,1195
255
248
  machineconfig/scripts/python/helpers/helpers_msearch/scripts_linux/search_with_context.sh,sha256=mOxFyFZn9jz9FZiG7RR3aCn9B9DmPawBs0OdgeiGPeQ,1827
256
- machineconfig/scripts/python/helpers/helpers_msearch/scripts_windows/fzfg.ps1,sha256=GDRzAFjaQvxgDm8GZt4TZFF4fMEewKh94akH4PX7vPs,1841
249
+ machineconfig/scripts/python/helpers/helpers_msearch/scripts_windows/fzfg.ps1,sha256=qBGW2k0cV2iEUJ_7KMpgF3ZnR2TOjVNf4PaZKNfo8xQ,1754
257
250
  machineconfig/scripts/python/helpers/helpers_navigator/__init__.py,sha256=o1wyu76ed8_iZqydmeUNBv4JLvcVx9GNuzz0qXDJ69w,812
258
251
  machineconfig/scripts/python/helpers/helpers_navigator/cli_graph_loader.py,sha256=v_C3hZU4BTGWZFh-0VhNWVcH6lsFDiFFRmbpPp8g5ZQ,7099
259
252
  machineconfig/scripts/python/helpers/helpers_navigator/command_builder.py,sha256=WTum9dOv73IeRkryFA6UDESg7t7GsSHNlKyb5_M8SvU,6527
@@ -266,19 +259,21 @@ machineconfig/scripts/python/helpers/helpers_network/__init__.py,sha256=47DEQpj8
266
259
  machineconfig/scripts/python/helpers/helpers_network/address.py,sha256=0VXkrR0L1dwIldb98-C2d2KJHIrA3Nfs8w08j3eQ4JA,5569
267
260
  machineconfig/scripts/python/helpers/helpers_network/address_switch.py,sha256=nAkBHZX228G4vhxJjeTtNnQmSk40QwINPiYTrvomfq4,2743
268
261
  machineconfig/scripts/python/helpers/helpers_network/ftpx_impl.py,sha256=ObLz6ltByQMQjFQs_TgzZaKxWF9W_V5ncuDILFMBtlQ,11895
269
- machineconfig/scripts/python/helpers/helpers_network/mount_nfs.py,sha256=00YsimP7MWdRqpzr-bxnE828MsWjBYvb56VqLvtu_y0,3601
270
- machineconfig/scripts/python/helpers/helpers_network/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
271
- machineconfig/scripts/python/helpers/helpers_network/mount_ssh.py,sha256=wKzJpOk6pC5X2qsmcrNzx7BsBYcC7itpTJqYyUG0LyU,2559
272
262
  machineconfig/scripts/python/helpers/helpers_network/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
273
- machineconfig/scripts/python/helpers/helpers_network/ssh_add_identity.py,sha256=AAlRlNCX3Rj88KnzMgdTxSkVD1JKYOrG3q1wV61cHEg,2937
274
- machineconfig/scripts/python/helpers/helpers_network/ssh_add_ssh_key.py,sha256=15MyWqA7IFkXYu5r_Zbm_YzslNNRjfJZTGnJgRGtF0k,8231
275
- machineconfig/scripts/python/helpers/helpers_network/ssh_debug_linux.py,sha256=18BatGwxb5SzHpbH2nvhP1SNX5FVdisry4MLcXfzZSI,16672
276
- machineconfig/scripts/python/helpers/helpers_network/ssh_debug_windows.py,sha256=6oSJ1V_57LDdC6MUBqXmONFePUtzZ2Zuld1VO4lAlMc,16402
277
263
  machineconfig/scripts/python/helpers/helpers_network/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
264
+ machineconfig/scripts/python/helpers/helpers_network/ssh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_identity.py,sha256=AAlRlNCX3Rj88KnzMgdTxSkVD1JKYOrG3q1wV61cHEg,2937
266
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_key_windows.py,sha256=UmICnGaFEJ-mnLDNMxAQRHzins1nXYytmjlzWQmllR4,1125
267
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_add_ssh_key.py,sha256=REWbzI0vHl7X5t3RVRvxHLLXOfW0QwEt8FAw3tjqoLE,8194
268
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_cloud_init.py,sha256=i8XEdnoRrSQeonbcKpdgNruXkkwzsK81QMDZlF9xBSo,1617
269
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux.py,sha256=akoHHRjucFTc9acUs1QtJC7LXk_1N8J5Oj6bFZrFRVo,18901
270
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_linux_utils.py,sha256=lbeG-wYBsxtzKnhcqMZYi_01LFdAc0Z4byw-PakXnas,1308
271
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows.py,sha256=o34Qs_Ridf5d355xWjoTMmduDsd7T6sfyZlL7_THKGs,15350
272
+ machineconfig/scripts/python/helpers/helpers_network/ssh/ssh_debug_windows_utils.py,sha256=vS4WTEKHbTR2RjOTbm9j2hnUObgxH7E7S_xcYb7hk8Q,1312
278
273
  machineconfig/scripts/python/helpers/helpers_repos/action.py,sha256=kFR8rznnAIvmmuY7N-rgDg1z5jDBwqlHrnAPZtE2548,9769
279
274
  machineconfig/scripts/python/helpers/helpers_repos/action_helper.py,sha256=h5upRh0nMne1FLaQsZzdTl50Ed-yfT_d4OP971VokDM,6126
280
275
  machineconfig/scripts/python/helpers/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
281
- machineconfig/scripts/python/helpers/helpers_repos/cloud_repo_sync.py,sha256=65YscUM10CeJ0cl5e3iGpoZ4GK4XVuebDTilZ3HI77E,14697
276
+ machineconfig/scripts/python/helpers/helpers_repos/cloud_repo_sync.py,sha256=VRYXJmt-xpLzqOuqwOkd_otppwHm7xlteIkc9ZJni1E,14664
282
277
  machineconfig/scripts/python/helpers/helpers_repos/grource.py,sha256=fEofCvK_Ds8Lmw5LhVBsnJz-UVmA49MAuBW8ZBNCRg4,14704
283
278
  machineconfig/scripts/python/helpers/helpers_repos/record.py,sha256=Q4hNVX_uO7dimcFgGElH2P-J1yJGZu7tjP81BFg5jos,11626
284
279
  machineconfig/scripts/python/helpers/helpers_repos/repo_analyzer_1.py,sha256=72ahcOdEbcJamrjFSKVWn5ATbxUyL7uNA8XU8O63_wA,6269
@@ -291,10 +286,10 @@ machineconfig/scripts/python/helpers/helpers_search/repo_rag.py,sha256=WxSLC99SB
291
286
  machineconfig/scripts/python/helpers/helpers_search/script_help.py,sha256=9rqKA8W8ptI2p521L8bWBgwnM5RT39bZSlu5UTAea2k,4041
292
287
  machineconfig/scripts/python/helpers/helpers_search/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
293
288
  machineconfig/scripts/python/helpers/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
- machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py,sha256=S6NupcOAYrBFo8K3hHw7tqmdO11iDvhbIQIP37DBUoA,9223
289
+ machineconfig/scripts/python/helpers/helpers_sessions/attach_impl.py,sha256=8PRbwAF0BZhnD-dRd02QG5eRhmE1utrFhNmPWOPCUzc,3587
290
+ machineconfig/scripts/python/helpers/helpers_sessions/sessions_impl.py,sha256=rN0rR8kGS4uB6HkFwK_Ux2uVaMioLGrdLvdu0V_q7r8,5659
295
291
  machineconfig/scripts/python/helpers/helpers_sessions/sessions_multiprocess.py,sha256=Qz4TaxDN832TXgznmY_7hLlDFmUp5vp5t7IBCT1IEns,3229
296
- machineconfig/scripts/python/helpers/helpers_terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
- machineconfig/scripts/python/helpers/helpers_terminal/terminal_impl.py,sha256=nmDHqJnAt6BaYmhiMoV9SF6nkUflnrNu-qo7k-P4Ayw,4435
292
+ machineconfig/scripts/python/helpers/helpers_sessions/utils.py,sha256=rKkTZ4C32OqMDSTt2RkhPf7ohjD-v0gbmSPUlfUrjt4,3105
298
293
  machineconfig/scripts/python/helpers/helpers_utils/download.py,sha256=6N5N-jloQhW-a5dvBBNVyQDY__iXpJfe4OtbKXUC934,6711
299
294
  machineconfig/scripts/python/helpers/helpers_utils/pdf.py,sha256=zMcJJ-38YOnF8pQShWqenX5y1EyWdfDW7PZFt9MUiKQ,5079
300
295
  machineconfig/scripts/python/helpers/helpers_utils/python.py,sha256=B9baIFic2tvdzabjR1lrHcxIbFVvN7tmL76F01lXHNs,8100
@@ -368,7 +363,7 @@ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLa
368
363
  machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
369
364
  machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
370
365
  machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
- machineconfig/settings/shells/bash/init.sh,sha256=jtoSKpab6Z6j3s115-Y4Mi1_wUExI46hEbSuoXXFJEo,4101
366
+ machineconfig/settings/shells/bash/init.sh,sha256=JYbPl7-f6XwnB24IW1jjfyRxQiq5knrRjcw8Hl-RcBk,3829
372
367
  machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
373
368
  machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
369
  machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -377,13 +372,13 @@ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmg
377
372
  machineconfig/settings/shells/nushell/config.nu,sha256=6gPrVo01cLXI7WMaeC12rxSEGWgfIwq7V-QGunC3InE,1117
378
373
  machineconfig/settings/shells/nushell/env.nu,sha256=w90OQSYTgl0O2flD9p8I1rViw1229L6wGKDVJQNViCs,764
379
374
  machineconfig/settings/shells/nushell/init.nu,sha256=-JmUQZPBS8jU4benz8JxlIr7KLcCxYBX_59GTg0DUSA,4761
380
- machineconfig/settings/shells/pwsh/init.ps1,sha256=M19vLYayEffqPxks0miRK4FSDwl0uDaGidaFveydDNw,4836
375
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=iZ3jcE0c9wgtQ0AqEBsl5IRlu2CyZUzD1pcO-y71aDg,4745
381
376
  machineconfig/settings/shells/pwsh/search_pwsh_history.ps1,sha256=DfUTqlHKlb2po7eY4UQ8DaMkrdiQV1IcNFetgsV4VP4,3117
382
377
  machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
383
378
  machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
384
- machineconfig/settings/shells/wezterm/wezterm.lua,sha256=6qEfUJerC24JBtSrBOPpNKv79op1iWE81tgrX5_h4GM,6423
385
- machineconfig/settings/shells/wt/settings.json,sha256=qI1rLtZRqSi5ChkJXrPilmox47fcDJGVB83uU0zZcog,10566
386
- machineconfig/settings/shells/zsh/init.sh,sha256=Btx1kBRx0PyRumb0f3GcpGzZt8X04zDHyZSr49pP4H0,3344
379
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=iBuLYFpi_5nkW_MYemw1n2DPtET9jae3Q5BF5dZrSfI,6453
380
+ machineconfig/settings/shells/wt/settings.json,sha256=BaJg6jljm6Bic6zwCcBSlKaSsXn8n_PGm3Gif1lAZUg,10564
381
+ machineconfig/settings/shells/zsh/init.sh,sha256=h1fBIOPO6TJWnTRZRyn1o7So6Xp_yTSLFtQESLehfrE,3304
387
382
  machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
388
383
  machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
389
384
  machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
@@ -447,27 +442,28 @@ machineconfig/settings/yazi/yazi_windows.toml,sha256=kiNr_lFyMLAa9CGeTW3hKcGCttq
447
442
  machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
448
443
  machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
449
444
  machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
450
- machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
451
- machineconfig/settings/zellij/config.orig.kdl,sha256=0KyYigBGUD5GdTmH9pE8f66LIFnll44Xz7s9EYD1z8c,10349
445
+ machineconfig/settings/zellij/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
446
+ machineconfig/settings/zellij/config.kdl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
452
447
  machineconfig/settings/zellij/commands/monitor,sha256=b90hWtmb2Romv_g2znRxyoVBuhRcDsXFIjihB2SxH3w,210
453
448
  machineconfig/settings/zellij/commands/standard_panes,sha256=iGZpkJRDPVaw423REaUGwyvtd3IOGVlLQznFYNdz16g,1046
449
+ machineconfig/settings/zellij/layouts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
450
  machineconfig/settings/zellij/layouts/hist,sha256=ryF00zllHpYPpqr6xyBleY7rb1oQSMT2GcMiiipoH1I,303
455
451
  machineconfig/settings/zellij/layouts/panes.kdl,sha256=KlhKtelBy4Z2ENV_pix4xE7NHVc8sT5gLa745eoqn2Y,417
456
- machineconfig/settings/zellij/layouts/st.kdl,sha256=47vQijJ0n2si6Cr4LTbAHHkCkzq-c_4K4W741XFChns,1174
457
- machineconfig/settings/zellij/layouts/st2.kdl,sha256=HRVltkbfjCuGIUVMFS7DIAi-cOJCp2pdSTX6l5zNCCg,1488
452
+ machineconfig/settings/zellij/layouts/st.kdl,sha256=5db7sMcAJdxyngkzBV18etExeIPGgJ_0pLwRBcnk8wE,1173
453
+ machineconfig/settings/zellij/layouts/st2.kdl,sha256=EDxOxXGlwvaH1RH4rv3m2mYPx6QO3Q89-caTQr4tjcs,1591
458
454
  machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWDivPg0i0drpM1Biw-tOnNZVjiZU,163
459
455
  machineconfig/setup_linux/__init__.py,sha256=-OGRER8JTu_qhXBHQl0noB6vkVW_y2JA8BlK7Iwq7r4,348
460
456
  machineconfig/setup_linux/apps_desktop.sh,sha256=l1jvwK-0zxlcpn7ia7PMWmBr3OddKBmzkpUXwGl5czg,2769
461
457
  machineconfig/setup_linux/apps_gui.sh,sha256=lFPYq7H2bRogPwW6QoEuSr9GnTjHS-jRM_eYg2rjOmM,2301
462
458
  machineconfig/setup_linux/uv.sh,sha256=cyegPmMMB7B3OnVx9KxZiU1JQU3Z_oqboUgwzmW2W40,487
463
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=R_MZHaFaBYi6erjuDG_jWzNuQKdu53IPR5DVKmekwEU,1605
459
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=oUPfobNsxPiJmbuMjr389HSrAduSapCHbtQOjCWDVh4,1605
464
460
  machineconfig/setup_linux/web_shortcuts/live_from_github.sh,sha256=Ik51YDkaCEJnmhbL88JNHEzVnAUeKk3ajM5w7WPJmPY,1186
465
461
  machineconfig/setup_mac/__init__.py,sha256=BOsP9N33npuqSxs-no7Y6DLJz03Av09B--_1H5a0xDE,421
466
462
  machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
467
463
  machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
468
464
  machineconfig/setup_windows/__init__.py,sha256=bB4HzU4_bvISIHdJDYmLu0CV7RtVrMRKzcWZ7q_JWco,236
469
465
  machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
470
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=j0svF0CobSB0U5POQnr6VPh_kBkOZBdGXGLY-qEID4g,1946
466
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=3YMLKmUdDiK-rjCYl5x7nCy5tONv3K0Iy6kLgeRG9Gg,1946
471
467
  machineconfig/setup_windows/web_shortcuts/live_from_github.ps1,sha256=jOGZfyML4yRmQRcYE50vORUc3GDCzDlWQ3ZqJnSpODE,1415
472
468
  machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=ZPOlCGIcPrbr6CM3Q8BgaTgttYHj0tSLTFK_k3wnctU,655
473
469
  machineconfig/type_hinting/sql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -491,10 +487,10 @@ machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6Bktl
491
487
  machineconfig/utils/options.py,sha256=W1osr13sHjkaG2Px0AimlIahg4GM1_pcTDizE54NIHo,10627
492
488
  machineconfig/utils/path_extended.py,sha256=5IOpkROgQ2bumavGsheo1vb6D9q4z_k1BpeMUNbmtkQ,50991
493
489
  machineconfig/utils/path_helper.py,sha256=RVis6gsJ9mEUPdh3tpyM7F2Ow8TruXpI1AoFqWInr7g,10368
494
- machineconfig/utils/procs.py,sha256=hpavbXmcEZZaDkueqBnEeMLBjAxHMgNxrRJ5kaCEYms,10956
490
+ machineconfig/utils/procs.py,sha256=0HzjDIdp3qkWsn8w-l0f3RJfgnlCDAWLPyPgjsiGogQ,11556
495
491
  machineconfig/utils/scheduler.py,sha256=4LirDDlXg0zBDqpsF8FVFdGHEHbt6beUsbqWIBSlu4A,14469
496
492
  machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
497
- machineconfig/utils/source_of_truth.py,sha256=kqd_1FTOiR4WAN7TDVOmKToprpq1a-Hm-I7CEgCu6Zw,996
493
+ machineconfig/utils/source_of_truth.py,sha256=33B-PPzv_3SQgr97G_FHQr7q6DkiKBeiECdFI-_a3yw,1035
498
494
  machineconfig/utils/ssh.py,sha256=5xVKaFubIsd0rk6uCWs--QhvcZhUQ-VShQ_LuyHM6UY,18890
499
495
  machineconfig/utils/terminal.py,sha256=7zi33CpnoEHFoopgzgtNtY1hDOCp0kxeFxzmjTmGo4k,4265
500
496
  machineconfig/utils/upgrade_packages.py,sha256=8ba8P_D_LPtaQSdqhEKqmI-NVOtVhBls_1ANBrOixO8,7174
@@ -518,26 +514,26 @@ machineconfig/utils/installer_utils/github_release_bulk.py,sha256=iHwFdPvezi5wkm
518
514
  machineconfig/utils/installer_utils/github_release_scraper.py,sha256=-sxYirnF-BmuUAJjKD7phRs3LyQIScwvdoeIfVsxXas,4748
519
515
  machineconfig/utils/installer_utils/install_from_url.py,sha256=1cE9DTV6DnRg98YGtj81-RZgaZPJdLDn3P7_3ZvZ8yQ,8683
520
516
  machineconfig/utils/installer_utils/installer_class.py,sha256=D6BATWDMdzAJFuVJQmWQbR-Iqk0v9zTMdy7L0ZX8DTU,14911
521
- machineconfig/utils/installer_utils/installer_cli.py,sha256=9LxQtkeSTO2Qt1_CBozjKaOjVpq1d9zAxGxxGhJ6Tk8,8204
522
- machineconfig/utils/installer_utils/installer_helper.py,sha256=drSX8fvo5EsNlWE5uBAVjfud6cb41TS_cyFKmnn03x0,6497
523
- machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=UOAOYqIjEG0_UdZGx8x8b9QA5DZwqL4kBc6TXJXirPM,10302
517
+ machineconfig/utils/installer_utils/installer_cli.py,sha256=6k0hetXXCiSzFZ0RikCHID8QYAMS7xJv6Ob34VCeb6k,8393
518
+ machineconfig/utils/installer_utils/installer_helper.py,sha256=Q_XM9PJ9tBrZDqTcu3YZ-zrZ3vpi0CQwhUMFovn7RD4,7272
519
+ machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=gW7Lw4HtLNFeUPX9Nr16bLJIFLKgVuzRa8R-3mzTIvc,9848
524
520
  machineconfig/utils/installer_utils/installer_runner.py,sha256=mMizhXdO4QDrPgWLPMCuQhHnE9WHx_sx8wNRqBR4ILo,7967
525
521
  machineconfig/utils/options_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
522
  machineconfig/utils/options_utils/options_tv_linux.py,sha256=W87UX-MDnDvGSjkr_AN5ti6lIi81HvX5XyTXUS2-lmU,8054
527
523
  machineconfig/utils/options_utils/options_tv_windows.py,sha256=mDSyAENfhxMoDT6Tut8EDUN7gO0uXq46yDgTbEGEm9c,4195
528
- machineconfig/utils/options_utils/tv_options.py,sha256=rUPaxL9qSEz27C2HdkYvvA3zApLNsAbV9r8EKcKrXkI,1679
524
+ machineconfig/utils/options_utils/tv_options.py,sha256=X3nv5KNfKxA9fS-auJ_sZR3rjw-dSDXexua-xf6aCqc,1707
529
525
  machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=wN9n96t5qplpDc4S1mw1qdoUfp0uA4A1vLhj-mvJzQc,2060
530
526
  machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
531
- machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
527
+ machineconfig/utils/schemas/layouts/layout_types.py,sha256=RIn-N5gqqA4aAz5qBqeJSDGyP-iIZ9WVOTO1oFnEm0A,2485
532
528
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
533
- machineconfig/utils/ssh_utils/abc.py,sha256=fDN8tfrU5w5bDQaZ9dPm3hg-r4Od2t4JtCyL0EEpXHE,103
529
+ machineconfig/utils/ssh_utils/abc.py,sha256=3YxLMIwqo9kO_Qt4EUK37tgYRSAxCQYJrU_LnaJHC8U,103
534
530
  machineconfig/utils/ssh_utils/copy_from_here.py,sha256=YGIKqOnQgXHye-b6t5L67pwl3KIXKYdgwxm4DbGz2L0,5774
535
531
  machineconfig/utils/ssh_utils/copy_to_here.py,sha256=ibDivdzzKC7-1sc6JQn4mzreSY8Tbm4etIsAZrbAZv8,13892
536
532
  machineconfig/utils/ssh_utils/utils.py,sha256=hPQH9N1xyR9wWWne1VWMTaSPiZysdOXk-PE5QJL4iuE,7043
537
533
  machineconfig/utils/ssh_utils/wsl.py,sha256=emECrPITxBaiy3XTFfMfdby0taPkTDYr4m2E63askb0,6295
538
534
  machineconfig/utils/ssh_utils/wsl_helper.py,sha256=n3FWkhTfSGMbqkg6whH2sOP0bcnMLeQZ1O_ZmYlfv6U,8273
539
- machineconfig-8.51.dist-info/METADATA,sha256=2xGutlM9KmMHf-7H_SUQR31gZSXIEcYlwIMhQPkv7SA,6381
540
- machineconfig-8.51.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
541
- machineconfig-8.51.dist-info/entry_points.txt,sha256=NpkZIzFVsNgyPe5EdUfY7QLuZovfpWxDQ2r2q3xSwvk,638
542
- machineconfig-8.51.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
543
- machineconfig-8.51.dist-info/RECORD,,
535
+ machineconfig-8.61.dist-info/METADATA,sha256=vOaNti0f92HyP0ZAnrnsr0_k5T9v7Y8Hh4aeHcbbiiM,6354
536
+ machineconfig-8.61.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
537
+ machineconfig-8.61.dist-info/entry_points.txt,sha256=59ba4RDpVvVj-B2Lis3zB-k25WRfdxHthHj54WVKxNc,584
538
+ machineconfig-8.61.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
539
+ machineconfig-8.61.dist-info/RECORD,,
@@ -9,5 +9,4 @@ machineconfig = machineconfig.scripts.python.mcfg_entry:main
9
9
  mcfg = machineconfig.scripts.python.mcfg_entry:main
10
10
  msearch = machineconfig.scripts.python.msearch:main
11
11
  sessions = machineconfig.scripts.python.sessions:main
12
- terminal = machineconfig.scripts.python.terminal:main
13
12
  utils = machineconfig.scripts.python.utils:main
@@ -1,2 +0,0 @@
1
- cp crouton /tmp/
2
- sudo sh /tmp/crouton -r bookworm -t core -n debian
@@ -1,128 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- set -euo pipefail
4
-
5
- # Constants
6
- CREDS_DIR="$HOME/dotfiles/creds/data"
7
- BITLOCKER_PWD_FILE="$CREDS_DIR/bitlocker_pwd"
8
- MOUNT_BASE_DIR="/media"
9
-
10
- # Functions
11
- print_separator() {
12
- echo "--------------------------------------"
13
- }
14
-
15
- install_if_missing() {
16
- local package=$1
17
- if ! command -v "$package" &> /dev/null; then
18
- echo "⚠️ $package could not be found"
19
- echo "💡 Installing $package"
20
- sudo nala install -y "$package"
21
- fi
22
- }
23
-
24
- get_user_input() {
25
- local prompt=$1
26
- local default=$2
27
- local response
28
-
29
- read -p "$prompt (default: $default): " response
30
- echo "${response:-$default}"
31
- }
32
-
33
- get_bitlocker_password() {
34
- if [[ -f "$BITLOCKER_PWD_FILE" ]]; then
35
- echo "🔑 Bitlocker Password file detected at $BITLOCKER_PWD_FILE"
36
- cat "$BITLOCKER_PWD_FILE"
37
- else
38
- echo "🤔🔑 Password file does not exist"
39
- read -sp "Enter bitlocker password: " bitlocker_pwd
40
- echo
41
- mkdir -p "$(dirname "$BITLOCKER_PWD_FILE")"
42
- echo "$bitlocker_pwd" > "$BITLOCKER_PWD_FILE"
43
- chmod 600 "$BITLOCKER_PWD_FILE"
44
- echo "$bitlocker_pwd"
45
- fi
46
- }
47
-
48
- mount_bitlocker() {
49
- local device=$1
50
- local mnt_name=$2
51
- local bitlocker_pwd
52
-
53
- install_if_missing dislocker
54
-
55
- bitlocker_pwd=$(get_bitlocker_password)
56
-
57
- sudo mkdir -p "$MOUNT_BASE_DIR/${mnt_name}_bitlocker"
58
- sudo dislocker "/dev/$device" "-u$bitlocker_pwd" -- "$MOUNT_BASE_DIR/${mnt_name}_bitlocker"
59
- sudo mount -o loop,rw,uid=$(id -u),gid=$(id -g) "$MOUNT_BASE_DIR/${mnt_name}_bitlocker/dislocker-file" "$MOUNT_BASE_DIR/$mnt_name"
60
- }
61
-
62
- mount_regular() {
63
- local device=$1
64
- local mnt_name=$2
65
-
66
- sudo mount --source "/dev/$device" --target "$MOUNT_BASE_DIR/$mnt_name"
67
- }
68
-
69
- add_to_fstab() {
70
- local device=$1
71
- local mnt_name=$2
72
-
73
- local drive_uuid=$(sudo blkid -s UUID -o value "/dev/$device")
74
- local drive_type=$(lsblk -no FSTYPE "/dev/$device")
75
- local drive_mount_point="$MOUNT_BASE_DIR/$mnt_name"
76
- local drive_mount_options="defaults"
77
- local drive_dump="0"
78
- local drive_pass="0"
79
-
80
- if [[ "$drive_type" == "ntfs" ]]; then
81
- drive_mount_options="$drive_mount_options,ntfs-3g"
82
- fi
83
-
84
- local fstab_entry="UUID=$drive_uuid $drive_mount_point $drive_type $drive_mount_options $drive_dump $drive_pass"
85
-
86
- if grep -q "$drive_uuid" /etc/fstab; then
87
- sudo sed -i "s|.*$drive_uuid.*|$fstab_entry|" /etc/fstab
88
- else
89
- echo "$fstab_entry" | sudo tee -a /etc/fstab
90
- fi
91
-
92
- echo "🔧 Updated /etc/fstab with the new entry"
93
- }
94
-
95
- # Main script
96
- echo "💾 Available devices:"
97
- sudo fdisk -l
98
- print_separator
99
- lsblk
100
- print_separator
101
-
102
- device=$(get_user_input "Enter device name" "sdb1")
103
- mnt_name=$(get_user_input "Enter mount name" "mymnt")
104
-
105
- sudo mkdir -p "$MOUNT_BASE_DIR/$mnt_name"
106
-
107
- if lsblk -no FSTYPE "/dev/$device" | grep -q "BitLocker"; then
108
- echo "🔒 Drive is BitLocker encrypted"
109
- mount_bitlocker "$device" "$mnt_name"
110
- else
111
- echo "Drive is not encrypted"
112
- mount_regular "$device" "$mnt_name"
113
- fi
114
-
115
- if [[ $? -eq 0 ]]; then
116
- echo "✅ The drive has been successfully mounted at $MOUNT_BASE_DIR/$mnt_name"
117
- print_separator
118
-
119
- read -p "Do you want to add the drive to fstab? (y/N): " add_fstab
120
- if [[ "${add_fstab,,}" == "y" ]]; then
121
- add_to_fstab "$device" "$mnt_name"
122
- fi
123
- else
124
- echo "❌ There was an error while mounting the drive. Please check your input and try again."
125
- exit 1
126
- fi
127
-
128
- echo "If Mount failed, try: sudo fuser -v /dev/"$device"; sudo kill piddd"