machineconfig 6.23__py3-none-any.whl → 6.26__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 (34) hide show
  1. machineconfig/cluster/sessions_managers/utils/load_balancer.py +1 -1
  2. machineconfig/cluster/sessions_managers/utils/maker.py +48 -0
  3. machineconfig/cluster/sessions_managers/zellij_local.py +3 -3
  4. machineconfig/cluster/sessions_managers/zellij_local_manager.py +2 -2
  5. machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_with_panes.py +1 -1
  6. machineconfig/jobs/installer/installer_data.json +17 -0
  7. machineconfig/scripts/python/croshell.py +1 -1
  8. machineconfig/scripts/python/devops.py +3 -2
  9. machineconfig/scripts/python/devops_helpers/cli_config.py +1 -1
  10. machineconfig/scripts/python/devops_helpers/cli_data.py +15 -8
  11. machineconfig/scripts/python/devops_helpers/cli_repos.py +1 -3
  12. machineconfig/scripts/python/devops_helpers/cli_self.py +3 -3
  13. machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py +2 -5
  14. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +2 -2
  15. machineconfig/scripts/python/interactive.py +3 -3
  16. machineconfig/scripts/python/nw/mount_nfs +1 -1
  17. machineconfig/scripts/python/repos_helpers/count_lines_frontend.py +1 -1
  18. machineconfig/scripts/python/repos_helpers/record.py +1 -1
  19. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  20. machineconfig/settings/shells/wt/settings.json +18 -12
  21. machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
  22. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +1 -1
  23. machineconfig/utils/path_extended.py +2 -2
  24. machineconfig/utils/ssh.py +1 -1
  25. {machineconfig-6.23.dist-info → machineconfig-6.26.dist-info}/METADATA +1 -1
  26. {machineconfig-6.23.dist-info → machineconfig-6.26.dist-info}/RECORD +34 -33
  27. /machineconfig/cluster/sessions_managers/{utils → helpers}/enhanced_command_runner.py +0 -0
  28. /machineconfig/cluster/sessions_managers/{utils → helpers}/load_balancer_helper.py +0 -0
  29. /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper.py +0 -0
  30. /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_restart.py +0 -0
  31. /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_manager_helper.py +0 -0
  32. {machineconfig-6.23.dist-info → machineconfig-6.26.dist-info}/WHEEL +0 -0
  33. {machineconfig-6.23.dist-info → machineconfig-6.26.dist-info}/entry_points.txt +0 -0
  34. {machineconfig-6.23.dist-info → machineconfig-6.26.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@
2
2
  from machineconfig.utils.schemas.layouts.layout_types import TabConfig, LayoutConfig
3
3
  # from machineconfig.utils.accessories import split_list
4
4
  from typing import Literal, Protocol
5
- from machineconfig.cluster.sessions_managers.utils.load_balancer_helper import restrict_num_tabs_helper1, restrict_num_tabs_helper2, restrict_num_tabs_helper3, restrict_num_tabs_helper4
5
+ from machineconfig.cluster.sessions_managers.helpers.load_balancer_helper import restrict_num_tabs_helper1, restrict_num_tabs_helper2, restrict_num_tabs_helper3, restrict_num_tabs_helper4
6
6
 
7
7
  class COMMAND_SPLITTER(Protocol):
8
8
  def __call__(self, command: str, to: int) -> list[str]: ...
@@ -0,0 +1,48 @@
1
+
2
+ from types import FunctionType
3
+ from typing import Literal
4
+ from machineconfig.utils.schemas.layouts.layout_types import TabConfig, LayoutConfig
5
+ from pathlib import Path
6
+
7
+ def get_fire_command_and_artifact_files(func: FunctionType):
8
+ from machineconfig.utils.meta import function_to_script
9
+ py_script = function_to_script(func)
10
+ from pathlib import Path
11
+ from machineconfig.utils.accessories import randstr
12
+ py_script_path = Path.home().joinpath("tmp_results", "tmp_py_scripts", f"tmp_{randstr(10)}.py")
13
+ py_script_path.parent.mkdir(parents=True, exist_ok=True)
14
+ py_script_path.write_text(py_script, encoding="utf-8")
15
+ command_to_run = f"uv run --project $HOME/code/bitsense {py_script_path}"
16
+ tab_config: TabConfig = {
17
+ "command": command_to_run,
18
+ "startDir": "$HOME",
19
+ "tabName": func.__name__
20
+ }
21
+ return tab_config, py_script_path
22
+ def get_fire_command_and_artifact_files_v2(func: FunctionType):
23
+ command_to_run = f"fire {func.__module__}.{func.__name__}"
24
+ tab_config: TabConfig = {
25
+ "command": command_to_run,
26
+ "startDir": str(Path(func.__module__).parent),
27
+ "tabName": func.__name__
28
+ }
29
+ return tab_config
30
+
31
+
32
+ def make_layout_from_functions(functions: list[FunctionType], layout_name: str, method: Literal["script", "fire"]="fire") -> LayoutConfig:
33
+ tabs2artifacts: dict[TabConfig, list[Path]] = {}
34
+ for a_func in functions:
35
+ match method:
36
+ case "script":
37
+ tab_config, artifact_files_1 = get_fire_command_and_artifact_files(a_func)
38
+ artifact_files = [artifact_files_1]
39
+ case "fire":
40
+ tab_config = get_fire_command_and_artifact_files_v2(a_func)
41
+ artifact_files = []
42
+ tabs2artifacts[tab_config] = artifact_files
43
+ list_of_tabs = list(tabs2artifacts.keys())
44
+ layout_config: LayoutConfig = {
45
+ "layoutName": layout_name,
46
+ "layoutTabs": list_of_tabs,
47
+ }
48
+ return layout_config
@@ -7,8 +7,8 @@ from rich.console import Console
7
7
 
8
8
  from machineconfig.utils.schemas.layouts.layout_types import LayoutConfig
9
9
  from machineconfig.cluster.sessions_managers.zellij_utils.monitoring_types import ComprehensiveStatus, CommandStatus
10
- from machineconfig.cluster.sessions_managers.helpers.zellij_local_helper import validate_layout_config, create_tab_section, check_command_status, check_zellij_session_status
11
- from machineconfig.cluster.sessions_managers.helpers.zellij_local_helper_restart import restart_tab_process
10
+ from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper import validate_layout_config, create_tab_section, check_command_status, check_zellij_session_status
11
+ from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper_restart import restart_tab_process
12
12
 
13
13
 
14
14
  logging.basicConfig(level=logging.INFO)
@@ -170,7 +170,7 @@ class ZellijLayoutGenerator:
170
170
  return restart_tab_process(tab_name=tab_name, layout_config=self.layout_config, session_name=self.session_name)
171
171
 
172
172
  def run(self):
173
- from machineconfig.cluster.sessions_managers.utils.enhanced_command_runner import enhanced_zellij_session_start
173
+ from machineconfig.cluster.sessions_managers.helpers.enhanced_command_runner import enhanced_zellij_session_start
174
174
  enhanced_zellij_session_start(session_name=self.session_name, layout_path=str(self.layout_path))
175
175
 
176
176
 
@@ -11,7 +11,7 @@ from machineconfig.cluster.sessions_managers.zellij_utils.monitoring_types impor
11
11
  from machineconfig.utils.scheduler import Scheduler
12
12
  from machineconfig.cluster.sessions_managers.zellij_local import ZellijLayoutGenerator
13
13
  from machineconfig.utils.schemas.layouts.layout_types import LayoutConfig
14
- from machineconfig.cluster.sessions_managers.helpers import zellij_local_manager_helper as helper
14
+ from machineconfig.cluster.sessions_managers.zellij_utils import zellij_local_manager_helper as helper
15
15
 
16
16
 
17
17
  logging.basicConfig(level=logging.INFO)
@@ -133,7 +133,7 @@ class ZellijLocalManager:
133
133
  session_name = manager.session_name
134
134
 
135
135
  # Get session status using the helper function
136
- from machineconfig.cluster.sessions_managers.helpers.zellij_local_helper import check_zellij_session_status
136
+ from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper import check_zellij_session_status
137
137
  session_status = check_zellij_session_status(session_name)
138
138
 
139
139
  # Get commands status for this session
@@ -224,5 +224,5 @@ if __name__ == "__main__":
224
224
  layout_path_3 = create_zellij_layout_with_panes(layout_config=sample_layout, output_path="/tmp/zellij_test_12345.kdl", panes_per_tab=3, split_direction="horizontal")
225
225
  print(f"✅ Layout created: {layout_path_3}")
226
226
 
227
- from machineconfig.cluster.sessions_managers.utils.enhanced_command_runner import enhanced_zellij_session_start
227
+ from machineconfig.cluster.sessions_managers.helpers.enhanced_command_runner import enhanced_zellij_session_start
228
228
  enhanced_zellij_session_start(session_name="tmp", layout_path=layout_path_3)
@@ -613,6 +613,23 @@
613
613
  }
614
614
  }
615
615
  },
616
+ {
617
+ "appName": "clifm",
618
+ "repoURL": "https://github.com/leo-arch/clifm",
619
+ "doc": "📂 A terminal file manager with vim-like keybindings.",
620
+ "fileNamePattern": {
621
+ "amd64": {
622
+ "linux": "clifm-{version}-linux-x86_64.tar.gz",
623
+ "macos": null,
624
+ "windows": null
625
+ },
626
+ "arm64": {
627
+ "linux": null,
628
+ "macos": null,
629
+ "windows": null
630
+ }
631
+ }
632
+ },
616
633
  {
617
634
  "appName": "lsd",
618
635
  "repoURL": "https://github.com/lsd-rs/lsd",
@@ -149,7 +149,7 @@ from pathlib import Path
149
149
  else:
150
150
  console.print(Panel("❌ Could not determine the local machineconfig repo root. Please ensure the `REPO_ROOT` in `source_of_truth.py` is correctly set to the local path of the machineconfig repo, or do not use the `--local` flag.", title="Error", border_style="red"))
151
151
  return
152
- else: ve_line = """--with "machineconfig[plot]>=5.87" """
152
+ else: ve_line = """--with "machineconfig[plot]>=6.25" """
153
153
  fire_line = f"uv run --python 3.14 {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
154
154
 
155
155
  from machineconfig.utils.code import run_shell_script
@@ -30,8 +30,9 @@ def get_app():
30
30
  app_config = cli_config.get_app()
31
31
  app.add_typer(app_config, name="config")
32
32
  app.add_typer(app_config, name="c", hidden=True)
33
- app.add_typer(cli_data.app_data, name="data")
34
- app.add_typer(cli_data.app_data, name="d", hidden=True)
33
+ app_data = cli_data.get_app()
34
+ app.add_typer(app_data, name="data")
35
+ app.add_typer(app_data, name="d", hidden=True)
35
36
  app_self = cli_self.get_app()
36
37
  app.add_typer(app_self, name="self")
37
38
  app.add_typer(app_self, name="s", hidden=True)
@@ -42,7 +42,7 @@ def path():
42
42
  from pathlib import Path
43
43
  path = Path(navigator.__file__).resolve().parent.joinpath("path_manager_tui.py")
44
44
  from machineconfig.utils.code import run_shell_script
45
- run_shell_script(f"""uv run --with "machineconfig>=5.87,textual" {path}""")
45
+ run_shell_script(f"""uv run --with "machineconfig>=6.25,textual" {path}""")
46
46
 
47
47
  def pwsh_theme():
48
48
  """🔗 Select powershell prompt theme."""
@@ -1,18 +1,25 @@
1
1
 
2
2
  import typer
3
+ from typing import Annotated, Optional
3
4
 
4
- app_data = typer.Typer(help="💾 [d] data subcommands", no_args_is_help=True)
5
-
6
- @app_data.command()
7
- def backup():
5
+ def backup(cloud: Annotated[Optional[str], typer.Option("--cloud", "-c", help="☁️ Cloud configuration name (rclone config name)")] = None,
6
+ which: Annotated[Optional[str], typer.Option("--which", "-w", help="📝 Comma-separated list of items to BACKUP (from backup.toml), or 'all' for all items")] = None):
8
7
  """💾 BACKUP"""
9
8
  from machineconfig.scripts.python.devops_helpers.devops_backup_retrieve import main_backup_retrieve
10
- main_backup_retrieve(direction="BACKUP")
9
+ main_backup_retrieve(direction="BACKUP", which=which, cloud=cloud)
11
10
 
12
11
 
13
- @app_data.command()
14
- def retrieve():
12
+ def retrieve(cloud: Annotated[Optional[str], typer.Option("--cloud", "-c", help="☁️ Cloud configuration name (rclone config name)")] = None,
13
+ which: Annotated[Optional[str], typer.Option("--which", "-w", help="📝 Comma-separated list of items to RETRIEVE (from backup.toml), or 'all' for all items")] = None):
15
14
  """📥 RETRIEVE"""
16
15
  from machineconfig.scripts.python.devops_helpers.devops_backup_retrieve import main_backup_retrieve
17
- main_backup_retrieve(direction="RETRIEVE")
16
+ main_backup_retrieve(direction="RETRIEVE", which=which, cloud=cloud)
17
+
18
18
 
19
+ def get_app() -> typer.Typer:
20
+ app = typer.Typer(name="data", help="💾 [d] Backup and Retrieve configuration files and directories to/from cloud storage using rclone.", no_args_is_help=True)
21
+ app.command(name="backup", no_args_is_help=True, hidden=False, help="💾 [b] Backup files and directories to cloud storage using rclone.")(backup)
22
+ app.command(name="b", no_args_is_help=True, hidden=True,)(backup)
23
+ app.command(name="retrieve", no_args_is_help=True, hidden=False, help="📥 [r] Retrieve files and directories from cloud storage using rclone.")(retrieve)
24
+ app.command(name="r", no_args_is_help=True, hidden=True, )(retrieve)
25
+ return app
@@ -47,11 +47,9 @@ def capture(directory: DirectoryArgument = None, cloud: CloudOption = None) -> N
47
47
  """📝 Record repositories into a repos.json specification."""
48
48
  from machineconfig.scripts.python.repos_helpers.entrypoint import resolve_directory
49
49
  repos_root = resolve_directory(directory)
50
- from machineconfig.scripts.python.repos_helpers.record import main as record_repos
51
-
50
+ from machineconfig.scripts.python.repos_helpers.record import main_record as record_repos
52
51
  save_path = record_repos(repos_root=repos_root)
53
52
  from machineconfig.utils.path_extended import PathExtended
54
-
55
53
  if cloud is not None:
56
54
  PathExtended(save_path).to_cloud(rel2home=True, cloud=cloud)
57
55
 
@@ -54,9 +54,9 @@ def install():
54
54
  # main_public_from_parser()
55
55
  import platform
56
56
  if platform.system() == "Windows":
57
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.87""")
57
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.25" """)
58
58
  else:
59
- run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.87""")
59
+ run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.25" """)
60
60
 
61
61
  def navigate():
62
62
  """📚 NAVIGATE command structure with TUI"""
@@ -64,7 +64,7 @@ def navigate():
64
64
  from pathlib import Path
65
65
  path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
66
66
  from machineconfig.utils.code import run_shell_script
67
- run_shell_script(f"""uv run --with "machineconfig>=5.87,textual" {path}""")
67
+ run_shell_script(f"""uv run --with "machineconfig>=6.25,textual" {path}""")
68
68
 
69
69
 
70
70
  def run_python(ip: Annotated[str, typer.Argument(..., help="Python command to run in the machineconfig environment")],
@@ -17,18 +17,15 @@ import tomllib
17
17
  OPTIONS = Literal["BACKUP", "RETRIEVE"]
18
18
 
19
19
 
20
- def main_backup_retrieve(direction: OPTIONS, which: Optional[str] = None) -> None:
20
+ def main_backup_retrieve(direction: OPTIONS, which: Optional[str], cloud: Optional[str]) -> None:
21
21
  console = Console()
22
-
23
22
  try:
24
- cloud: str = read_ini(DEFAULTS_PATH)["general"]["rclone_config_name"]
23
+ cloud = read_ini(DEFAULTS_PATH)["general"]["rclone_config_name"]
25
24
  console.print(Panel(f"⚠️ DEFAULT CLOUD CONFIGURATION\n🌥️ Using default cloud: {cloud}", title="[bold blue]Cloud Configuration[/bold blue]", border_style="blue"))
26
25
  except (FileNotFoundError, KeyError, IndexError):
27
26
  console.print(Panel("🔍 DEFAULT CLOUD NOT FOUND\n🔄 Please select a cloud configuration from the options below", title="[bold red]Error: Cloud Not Found[/bold red]", border_style="red"))
28
27
  cloud = choose_cloud_interactively()
29
-
30
28
  bu_file: dict[str, Any] = tomllib.loads(LIBRARY_ROOT.joinpath("profile/backup.toml").read_text(encoding="utf-8"))
31
-
32
29
  console.print(Panel(f"🧰 LOADING BACKUP CONFIGURATION\n📄 File: {LIBRARY_ROOT.joinpath('profile/backup.toml')}", title="[bold blue]Backup Configuration[/bold blue]", border_style="blue"))
33
30
 
34
31
  if system() == "Linux":
@@ -101,7 +101,7 @@ git pull originEnc master
101
101
  return "done"
102
102
  from machineconfig.utils.meta import function_to_script
103
103
  program_1_py = function_to_script(func=func2, call_with_args=None, call_with_kwargs={"remote_repo": str(repo_remote_root), "local_repo": str(repo_local_root), "cloud": cloud_resolved})
104
- shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=5.87" """)
104
+ shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=6.25" """)
105
105
  # ================================================================================
106
106
  option2 = "Delete local repo and replace it with remote copy:"
107
107
  program_2 = f"""
@@ -122,7 +122,7 @@ sudo chmod +x $HOME/dotfiles/scripts/linux -R
122
122
  inspect_repos(repo_local_root=repo_local_root, repo_remote_root=repo_remote_root)
123
123
  return "done"
124
124
  program_3_py = function_to_script(func=func, call_with_args=None, call_with_kwargs={"repo_local_root": str(repo_local_root), "repo_remote_root": str(repo_remote_root)})
125
- shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=5.87" """)
125
+ shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=6.25" """)
126
126
  # ================================================================================
127
127
 
128
128
  option4 = "Remove problematic rclone file from repo and replace with remote:"
@@ -130,9 +130,9 @@ def execute_installations(selected_options: list[str]) -> None:
130
130
  console.print(Panel("🐍 [bold green]PYTHON ENVIRONMENT[/bold green]\n[italic]Virtual environment setup[/italic]", border_style="green"))
131
131
  import platform
132
132
  if platform.system() == "Windows":
133
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=5.87""")
133
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.25" """)
134
134
  else:
135
- run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=5.87""")
135
+ run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.25" """)
136
136
  if "install_ssh_server" in selected_options:
137
137
  console.print(Panel("🔒 [bold red]SSH SERVER[/bold red]\n[italic]Remote access setup[/italic]", border_style="red"))
138
138
  import platform
@@ -165,7 +165,7 @@ Set-Service -Name sshd -StartupType 'Automatic'"""
165
165
  console.print("🔧 Retrieving backup data", style="bold cyan")
166
166
  try:
167
167
  from machineconfig.scripts.python.devops_helpers.devops_backup_retrieve import main_backup_retrieve
168
- main_backup_retrieve(direction="RETRIEVE")
168
+ main_backup_retrieve(direction="RETRIEVE", cloud=None, which=None)
169
169
  console.print("✅ Backup data retrieved successfully", style="bold green")
170
170
  except Exception as e:
171
171
  console.print(f"❌ Error retrieving backup data: {e}", style="bold red")
@@ -5,7 +5,7 @@
5
5
  # mkdir ~/data/local
6
6
  # sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
7
7
 
8
- uv run --python 3.14 --with "machineconfig>=5.87" python -m machineconfig.scripts.python.mount_nfs
8
+ uv run --python 3.14 --with "machineconfig>=6.25" python -m machineconfig.scripts.python.mount_nfs
9
9
  # Check if remote server is reachable and share folder exists
10
10
  if ! ping -c 1 "$remote_server" &> /dev/null; then
11
11
  echo "💥 Error: Remote server $remote_server is not reachable."
@@ -8,7 +8,7 @@ def analyze_repo_development(repo_path: Annotated[str, typer.Argument(..., help=
8
8
  from pathlib import Path
9
9
  count_lines_path = Path(count_lines.__file__)
10
10
  # --project $HOME/code/ machineconfig --group plot
11
- cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=5.87" {count_lines_path} analyze-over-time {repo_path}"""
11
+ cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=6.25" {count_lines_path} analyze-over-time {repo_path}"""
12
12
  from machineconfig.utils.code import run_shell_script
13
13
  run_shell_script(cmd)
14
14
 
@@ -186,7 +186,7 @@ def record_repos_recursively(repos_root: str, r: bool, progress: Progress | None
186
186
  return res
187
187
 
188
188
 
189
- def main(repos_root: Path):
189
+ def main_record(repos_root: Path):
190
190
  print("\n📝 Recording repositories...")
191
191
  repos_root = PathExtended(repos_root).expanduser().absolute()
192
192
 
@@ -7,7 +7,7 @@ $user = ''
7
7
  $sharePath = ''
8
8
  $driveLetter = ''
9
9
 
10
- uv run --python 3.14 --with "machineconfig>=5.87" python -m machineconfig.scripts.python.mount_ssh
10
+ uv run --python 3.14 --with "machineconfig>=6.25" python -m machineconfig.scripts.python.mount_ssh
11
11
 
12
12
  net use T: \\sshfs.kr\$user@$host.local
13
13
  # this worked: net use T: \\sshfs\alex@alex-p51s-5.local
@@ -6,19 +6,19 @@
6
6
  "copyOnSelect": true,
7
7
  "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
8
8
  "focusFollowMouse": true,
9
- "keybindings":
9
+ "keybindings":
10
10
  [
11
11
  {
12
- "id": "Terminal.TogglePaneZoom",
13
- "keys": "ctrl+shift+z"
12
+ "id": "Terminal.FindText",
13
+ "keys": "ctrl+shift+f"
14
14
  },
15
15
  {
16
16
  "id": "Terminal.PasteFromClipboard",
17
17
  "keys": "ctrl+v"
18
18
  },
19
19
  {
20
- "id": "Terminal.FindText",
21
- "keys": "ctrl+shift+f"
20
+ "id": "Terminal.TogglePaneZoom",
21
+ "keys": "ctrl+shift+z"
22
22
  },
23
23
  {
24
24
  "id": "Terminal.DuplicatePaneAuto",
@@ -38,27 +38,27 @@
38
38
  }
39
39
  ],
40
40
  "launchMode": "fullscreen",
41
- "newTabMenu":
41
+ "newTabMenu":
42
42
  [
43
43
  {
44
44
  "type": "remainingProfiles"
45
45
  }
46
46
  ],
47
- "profiles":
47
+ "profiles":
48
48
  {
49
- "defaults":
49
+ "defaults":
50
50
  {
51
51
  "colorScheme": "Campbell (modified)",
52
52
  "padding": "0",
53
53
  "useAcrylic": false
54
54
  },
55
- "list":
55
+ "list":
56
56
  [
57
57
  {
58
58
  "commandline": "pwsh",
59
59
  "cursorColor": "#D4D8E1",
60
60
  "cursorShape": "filledBox",
61
- "font":
61
+ "font":
62
62
  {
63
63
  "face": "CaskaydiaCove Nerd Font"
64
64
  },
@@ -84,7 +84,7 @@
84
84
  },
85
85
  {
86
86
  "commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
87
- "font":
87
+ "font":
88
88
  {
89
89
  "face": "CaskaydiaCove Nerd Font"
90
90
  },
@@ -139,10 +139,16 @@
139
139
  "hidden": false,
140
140
  "name": "Ubuntu 22.04.3 LTS",
141
141
  "source": "CanonicalGroupLimited.Ubuntu22.04LTS_79rhkp1fndgsc"
142
+ },
143
+ {
144
+ "guid": "{988a16a9-2179-5ba2-8367-4854ea3de17d}",
145
+ "hidden": false,
146
+ "name": "Ubuntu-24.04",
147
+ "source": "Microsoft.WSL"
142
148
  }
143
149
  ]
144
150
  },
145
- "schemes":
151
+ "schemes":
146
152
  [
147
153
  {
148
154
  "background": "#000000",
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash
2
2
  . <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
3
3
  mcfg() {
4
- "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=5.87" mcfg "$@"
4
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.25" mcfg "$@"
5
5
  }
6
6
  alias d="mcfg devops"
7
7
  alias c="mcfg cloud"
@@ -2,7 +2,7 @@
2
2
 
3
3
  iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
4
4
  function mcfg {
5
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=5.87" mcfg $args
5
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.25" mcfg $args
6
6
  }
7
7
  function d { mcfg devops @args }
8
8
  function c { mcfg cloud @args }
@@ -909,9 +909,10 @@ class PathExtended(type(Path()), Path): # type: ignore # pylint: disable=E0241
909
909
  rp = localpath.get_remote_path(root=root, os_specific=os_specific, rel2home=rel2home, strict=strict) # if rel2home else (P(root) / localpath if root is not None else localpath)
910
910
  else:
911
911
  rp = PathExtended(remotepath)
912
-
913
912
  from rclone_python import rclone
913
+ print(f"⬆️ UPLOADING {repr(localpath)} TO {cloud}:{rp.as_posix()}`") if verbose else None
914
914
  rclone.copyto(in_path=localpath.as_posix(), out_path=f"{cloud}:{rp.as_posix()}", )
915
+
915
916
  _ = [item.delete(sure=True) for item in to_del]
916
917
  if verbose:
917
918
  print(f"{'⬆️' * 5} UPLOAD COMPLETED.")
@@ -922,7 +923,6 @@ class PathExtended(type(Path()), Path): # type: ignore # pylint: disable=E0241
922
923
  command = f"rclone link '{cloud}:{rp.as_posix()}'"
923
924
  completed = _run_shell_command(command, shell_to_use)
924
925
  from machineconfig.utils.terminal import Response
925
-
926
926
  res = Response.from_completed_process(completed).capture()
927
927
  tmp = res.op2path(strict_err=False, strict_returncode=False)
928
928
  if tmp is None:
@@ -6,7 +6,7 @@ from machineconfig.utils.terminal import Response, MACHINE
6
6
  from machineconfig.utils.accessories import pprint
7
7
 
8
8
  UV_RUN_CMD = "$HOME/.local/bin/uv run"
9
- MACHINECONFIG_VERSION = "machineconfig>=5.87"
9
+ MACHINECONFIG_VERSION = "machineconfig>=6.25"
10
10
  DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
11
11
 
12
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 6.23
3
+ Version: 6.26
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -18,17 +18,14 @@ machineconfig/cluster/sessions_managers/wt_local.py,sha256=6XQL4J1QJlqVyvvTkPASJ
18
18
  machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=B7qpdRakeS1XFx4_xapIekii2B_2Nm8XHMvNWlcr7uk,24370
19
19
  machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
20
20
  machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=wxfZPJd4_21LAEoaf1kVDIyhUOYlJfWfNfFvlCOPLqo,20303
21
- machineconfig/cluster/sessions_managers/zellij_local.py,sha256=jQgaWEvPmLVHt_cPTJEM5YCI7HeM71kI0X3U7BFP_jk,10064
22
- machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=_qfGQUTmgnhuyfTB0vDGijjb7NFClM1hdprFIXtt2aw,17691
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
23
23
  machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=siLNW7DohSMjDGmhTeNGU8xpb1XM4NFvmkzaa3NyZbc,8533
24
24
  machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_1vMH58kMQE2oFj5sdjDM8lWhe5lbz0U9hZo,8417
25
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
26
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
27
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_with_panes.py,sha256=xXt1-JDYra4yPe3YsPgjUyiRq4MlaLcAfOPSHYoc0Ho,9031
28
- machineconfig/cluster/sessions_managers/helpers/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
29
- machineconfig/cluster/sessions_managers/utils/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
30
- machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=q9k3ofvgcZzx_oKtaymWf75JpDAs5pagwRRYzfVgu30,3176
31
- machineconfig/cluster/sessions_managers/utils/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
25
+ machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
26
+ machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
27
+ machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
28
+ machineconfig/cluster/sessions_managers/utils/maker.py,sha256=WyNNAXJjNHNyEMCkppTmCx7ZnxnuzzIzvlYrWG46wIg,1984
32
29
  machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
33
30
  machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
34
31
  machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
@@ -41,12 +38,16 @@ machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=R
41
38
  machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
42
39
  machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=7JLq8HY-NWbJfzHfxaok_o1KrIwzMCK_PUnsdZYfzuA,4929
43
40
  machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=Tlq8liGIs1wCOu6JOk2VUAVCaTzQmbyITSVZMMWvlwA,3830
41
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
42
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
43
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_with_panes.py,sha256=KkGh_9i4ViEQ3Jxxpbbqk0AWHTN8omjeJTids9ANpeg,9033
44
+ machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
44
45
  machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
46
  machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQwzAHH_04stPuV5bY,647
46
47
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
48
  machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
49
  machineconfig/jobs/installer/check_installations.py,sha256=uFuxhgI8rIMtClcGmuc9gpG6iJ7X0__peGUQfGkreT8,10778
49
- machineconfig/jobs/installer/installer_data.json,sha256=JHpJIURGqdSxhE5SFyQ93-L7LxI6wpLDbqC9OCnQygI,74972
50
+ machineconfig/jobs/installer/installer_data.json,sha256=C61tOaLDkoyWyoIwyGc7_QxPsasITwoFUhuMhqlLk6M,75416
50
51
  machineconfig/jobs/installer/package_groups.py,sha256=i4z83F_rk7BVsrwFhz5Vn4SLF0IHxyQBFSxpAaZBl8M,5270
51
52
  machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
52
53
  machineconfig/jobs/installer/custom/hx.py,sha256=YQClQXqWtGvon8BLFGf1Fp20JPkHgZeEZ6ebmCJQQfI,5838
@@ -121,13 +122,13 @@ machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP
121
122
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
123
  machineconfig/scripts/python/agents.py,sha256=f5UxgXjGlEypoNFqK0uHKO0UkbV_wUmPiPzotL2yapM,10677
123
124
  machineconfig/scripts/python/cloud.py,sha256=ubLmf06FSdi1NawpQDgUDAtYb9cZSQqHbSUHzAwRIas,1199
124
- machineconfig/scripts/python/croshell.py,sha256=0Ym3n-ZmIpaOX_SWnGP88dq_iH7QWJKUZvY0x58sXjI,7083
125
- machineconfig/scripts/python/devops.py,sha256=NS4zbOGm8uRNxmtWuH4vBAajrbZj014FpZrpZTYXS1Y,2159
125
+ machineconfig/scripts/python/croshell.py,sha256=UwDHtEiJZx1p1nONYRZhFLY2xX3YtTVYWzsFKG61PuY,7083
126
+ machineconfig/scripts/python/devops.py,sha256=FjsUBr8mFBTgjtesAiRaBXYpWWHqAxcMC6Naka8HTFk,2175
126
127
  machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
127
128
  machineconfig/scripts/python/entry.py,sha256=Az7dK1eXHGW5l46Yg10Cd88VChCdhvLAzO3e1A3r56A,2176
128
129
  machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
129
130
  machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
130
- machineconfig/scripts/python/interactive.py,sha256=8HbT9OaZ3lhoIYghIkeE6bI5TZ0RPlL0LwEszK6oPNw,11790
131
+ machineconfig/scripts/python/interactive.py,sha256=GtjJHtNm9qY5b4pm6tPDUweFQIlI6nd0ywlBGE94gEc,11820
131
132
  machineconfig/scripts/python/sessions.py,sha256=l0NhO8kLtpDHdvNTlZ-Stt0VqARZqKUqiJlKvGIqCC0,9778
132
133
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
134
  machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
@@ -173,15 +174,15 @@ machineconfig/scripts/python/croshell_helpers/start_slidev.py,sha256=HfJReOusTPh
173
174
  machineconfig/scripts/python/croshell_helpers/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
174
175
  machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
175
176
  machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
- machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=yyzfxOKC1k6YRWERWUY7riIVDmiyB_L89wpBzmU5DBg,5402
177
+ machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=JF3khAkrYcUNdF6mbAva-PB93w7qaiyk4eMrLkPH4a8,5402
177
178
  machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
178
- machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=kvJ7g2CccjjXIhCwdu_Vlif8JHC0qUoLjuGcTSqT-IU,514
179
+ machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=2OWwp86-ncpGoSP9IblW7Jjej-wc-PuS8KRZ5xh0l1c,1774
179
180
  machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=nI_zmcmUvijVeXIWT2dN5onoy3ou-lub1cL-SJImmDA,4125
180
- machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=pQHG3hc7_39IqNEx9pknyLNVLsoDHcMpUniCqCmafO4,12326
181
- machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=PCTAOX5K4WBFWQ_ZRcLKyyHpsPH93Ou4RY56Cp1Xu_U,5733
181
+ machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=Y5HgbNUyt7iehXyfmqPjVVjCsbZI-1Q6w1XwKQb_FkU,12331
182
+ machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=Y0YQOcNc9nCfQptQxj8qDHUdEBIbEyLYg8Mmir9vw_Y,5739
182
183
  machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=q9pFJ6AxPuygMr3onMNOKEuuQHbVE_6Qoyo7xRT5FX0,4196
183
184
  machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
184
- machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=nK47Rc7gQuDCnkk6_sW1y82gBnDJ9TdHU8XwMPFBK9c,5591
185
+ machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=8VpnWytbJYdZZfeLmULgGeGuV5BlHrzdcbGtSsmU-EA,5598
185
186
  machineconfig/scripts/python/devops_helpers/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
186
187
  machineconfig/scripts/python/devops_helpers/devops_update_repos.py,sha256=TLYhvMMDJCqLNsv1h4a0MtxYqQHWkRRvKnERyXd8MAs,10133
187
188
  machineconfig/scripts/python/devops_helpers/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -218,7 +219,7 @@ machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha25
218
219
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=4MrlCVijbx7GQyAN9s5LDh-7heSjMXYrXdqiP6uC3ug,5378
219
220
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
221
  machineconfig/scripts/python/helpers_repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=ANx-gfHd34Pb4_ptmlVDQnmLRUK42FMbja6On0Gs2kA,9700
222
+ machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=oAkOu0HCxCf-_Fxrp15R1eg8zXwJVRub2Oa1rh2jFvw,9700
222
223
  machineconfig/scripts/python/helpers_repos/grource.py,sha256=zDKWAO24aA0HlpcKFgBH4Lh_eqWp9KTEqnbUnX6I2pk,14611
223
224
  machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=fW_GyHqWrpnf7nexHojfWHv4eLBa71IhVL_LSVMyGnE,1115
224
225
  machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,7 +227,7 @@ machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdC
226
227
  machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
227
228
  machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
228
229
  machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
229
- machineconfig/scripts/python/nw/mount_nfs,sha256=0k6JHsJUky0L4BtGdRDPWfdSowBdLE-1b-T328HCb78,1855
230
+ machineconfig/scripts/python/nw/mount_nfs,sha256=Izm5dCSGrgTT3UUinn0lMwFmssZtLAEve-mB5mnVQQI,1855
230
231
  machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
231
232
  machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
232
233
  machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
@@ -240,9 +241,9 @@ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nG
240
241
  machineconfig/scripts/python/repos_helpers/action.py,sha256=pl0U53FAGoH2yk-CGNIy3aggImXY5ZVz28-XVFHDvfA,14862
241
242
  machineconfig/scripts/python/repos_helpers/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
242
243
  machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
243
- machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=KkkecMNXssfwBK9nLEXZgilq_DME1ah325MTRV6-z2c,607
244
+ machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=4-SmgwY7VMevUeG6UBvmw1C-nkYxcgsj5_O9HyoImwA,607
244
245
  machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=UagEar85QCAXX7oOqJjDJp2Vds5UQxehYPmckL_S0oI,2836
245
- machineconfig/scripts/python/repos_helpers/record.py,sha256=3T5VmMbvywScZhTW2j4cGLK0T2LSWxKfnXkRTxkuLP4,10994
246
+ machineconfig/scripts/python/repos_helpers/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
246
247
  machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
247
248
  machineconfig/scripts/python/repos_helpers/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
248
249
  machineconfig/scripts/python/sessions_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -253,7 +254,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
253
254
  machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
254
255
  machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
255
256
  machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
256
- machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=nlbvxdqdUQXpKrOOsz_o3wUPVHmVYC4a6lxSoFFt4Qk,322
257
+ machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=01qca_7zAQkQx2l1vs-RUCHa-FJ-aqumm40vxKAHuz8,322
257
258
  machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
258
259
  machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
259
260
  machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
@@ -336,7 +337,7 @@ machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
336
337
  machineconfig/settings/shells/starship/starship.toml,sha256=5rQTY7ZpKnrnhgu2Y9OJKUYMz5lPLIftO1p1VRuVZwQ,1150
337
338
  machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
338
339
  machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
339
- machineconfig/settings/shells/wt/settings.json,sha256=XRqyjphS5EckkHkdYkw6b5btBgnaoic-vn5oCPaPVvI,10135
340
+ machineconfig/settings/shells/wt/settings.json,sha256=G3MzbSfkNDoCbFfKKuS5wuSWsMff4oj6s6m-iXryNz8,10353
340
341
  machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
341
342
  machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
342
343
  machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
@@ -368,7 +369,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
368
369
  machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
369
370
  machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
370
371
  machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
371
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=bYkiPvnI-UE4n28YZ7nPS1XK-U-flvjtG0wvFKitSBI,442
372
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=7tK6S4uSoQ7SyVz60G7gYJqMR8t418h3mddk2ZAxkwg,442
372
373
  machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
373
374
  machineconfig/setup_windows/apps.ps1,sha256=dmZQZD4ZlNZo9jYkjIS3ag4qDAYZvaLysjmo9ELwBA4,11218
374
375
  machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
@@ -378,7 +379,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
378
379
  machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
379
380
  machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
380
381
  machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
381
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=zbetiUwmwOWbIz_5iFWbxsRk5K-SBgLzOhdZ6JFRLS0,548
382
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=DDfrT1XKLqIq3WPmufqImUINZ_m6pM5FGFGflKfv6Ds,548
382
383
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
383
384
  machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
384
385
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -390,13 +391,13 @@ machineconfig/utils/links.py,sha256=KM6vIn3hag9FYEzLSHP5MAM9tU_RStw2mCq2_OvmmZA,
390
391
  machineconfig/utils/meta.py,sha256=fDn7cpq6iqAPzX2eKLSK9DZb0870rluR7eLDx5NgNaw,5994
391
392
  machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
392
393
  machineconfig/utils/options.py,sha256=vUO4Kej-vDOv64wHr2HNDyu6PATURpjd7xp6N8OOoJg,7083
393
- machineconfig/utils/path_extended.py,sha256=4RhL0twcIG2kJxmC4r_YzaiTxrYkSRbdh9SO5ObMABw,53122
394
+ machineconfig/utils/path_extended.py,sha256=WyJwoHnXdvSQQJ-yrxTX78FpqYmgVeKDYpNEB9UsRck,53223
394
395
  machineconfig/utils/path_helper.py,sha256=0e3Xh3BAEv27oqcezNeVLHJllGmLEgLH4T1l90m-650,8014
395
396
  machineconfig/utils/procs.py,sha256=rw8LR8MjGgvtrpcgxb3hudq2B9fkkpYUXe9x5-FgHuc,10694
396
397
  machineconfig/utils/scheduler.py,sha256=jZ_1yghqA3-aINPRmE_76gboqJc0UElroR7urNOfXKs,14940
397
398
  machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
398
399
  machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
399
- machineconfig/utils/ssh.py,sha256=N9BchzFPC0BveM_OhUXLDJ8wwBDcMa9flN95Q_dPcIw,39079
400
+ machineconfig/utils/ssh.py,sha256=dO-FereJBh5mB4zmL_fDIfQ6VVCWpJ3Y8IoAJ5SA4zQ,39079
400
401
  machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
401
402
  machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
402
403
  machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
@@ -421,8 +422,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
421
422
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
422
423
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
423
424
  machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
- machineconfig-6.23.dist-info/METADATA,sha256=ELfi_JmMdKtA7FOkTimiWrp5cDzNtjwCqkxsdIAxnOo,3012
425
- machineconfig-6.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
426
- machineconfig-6.23.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
427
- machineconfig-6.23.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
428
- machineconfig-6.23.dist-info/RECORD,,
425
+ machineconfig-6.26.dist-info/METADATA,sha256=0XoRmg0AKw7oB6ZKQ26G_YYWH0Afvps5VpvJPS0lTQk,3012
426
+ machineconfig-6.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
427
+ machineconfig-6.26.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
428
+ machineconfig-6.26.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
429
+ machineconfig-6.26.dist-info/RECORD,,