machineconfig 7.64__py3-none-any.whl → 7.79__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.
- machineconfig/cluster/sessions_managers/utils/maker.py +4 -2
- machineconfig/jobs/installer/custom_dev/sysabc.py +26 -0
- machineconfig/jobs/installer/installer_data.json +70 -2
- machineconfig/profile/create_links_export.py +2 -2
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/python/agents.py +22 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +3 -0
- machineconfig/scripts/python/croshell.py +22 -17
- machineconfig/scripts/python/devops.py +1 -1
- machineconfig/scripts/python/devops_navigator.py +0 -4
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/fire_jobs.py +13 -13
- machineconfig/scripts/python/ftpx.py +36 -12
- machineconfig/scripts/python/helpers/ast_search.py +74 -0
- machineconfig/scripts/python/helpers/qr_code.py +166 -0
- machineconfig/scripts/python/helpers/repo_rag.py +325 -0
- machineconfig/scripts/python/helpers/symantic_search.py +25 -0
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py +19 -17
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
- machineconfig/scripts/python/helpers_croshell/start_slidev.py +6 -7
- machineconfig/scripts/python/helpers_devops/cli_nw.py +88 -7
- machineconfig/scripts/python/helpers_devops/cli_self.py +7 -6
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +7 -7
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +12 -11
- machineconfig/scripts/python/helpers_devops/cli_terminal.py +6 -5
- machineconfig/scripts/python/helpers_devops/cli_utils.py +2 -1
- machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +20 -9
- machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +5 -3
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_utils/download.py +4 -3
- machineconfig/scripts/python/helpers_utils/path.py +81 -31
- machineconfig/scripts/python/interactive.py +1 -1
- machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -0
- machineconfig/scripts/python/msearch.py +21 -2
- machineconfig/scripts/python/nw/address.py +132 -0
- machineconfig/scripts/python/nw/devops_add_ssh_key.py +8 -5
- machineconfig/scripts/python/terminal.py +2 -2
- machineconfig/scripts/python/utils.py +10 -9
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
- machineconfig/settings/shells/nushell/config.nu +2 -2
- machineconfig/settings/shells/nushell/env.nu +45 -6
- machineconfig/settings/shells/nushell/init.nu +282 -95
- machineconfig/settings/shells/pwsh/init.ps1 +1 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/uv.ps1 +8 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +3 -2
- machineconfig/utils/accessories.py +7 -4
- machineconfig/utils/code.py +4 -2
- machineconfig/utils/installer_utils/install_from_url.py +180 -0
- machineconfig/utils/installer_utils/installer_class.py +18 -10
- machineconfig/utils/installer_utils/installer_cli.py +14 -9
- machineconfig/utils/links.py +2 -2
- machineconfig/utils/meta.py +2 -2
- machineconfig/utils/options.py +3 -3
- machineconfig/utils/path_extended.py +1 -1
- machineconfig/utils/path_helper.py +0 -1
- machineconfig/utils/ssh.py +143 -409
- machineconfig/utils/ssh_utils/abc.py +8 -0
- machineconfig/utils/ssh_utils/copy_from_here.py +110 -0
- machineconfig/utils/ssh_utils/copy_to_here.py +302 -0
- machineconfig/utils/ssh_utils/utils.py +141 -0
- machineconfig/utils/ssh_utils/wsl.py +168 -0
- machineconfig/utils/upgrade_packages.py +2 -1
- machineconfig/utils/ve.py +11 -4
- {machineconfig-7.64.dist-info → machineconfig-7.79.dist-info}/METADATA +1 -1
- {machineconfig-7.64.dist-info → machineconfig-7.79.dist-info}/RECORD +77 -68
- {machineconfig-7.64.dist-info → machineconfig-7.79.dist-info}/entry_points.txt +2 -2
- machineconfig/scripts/python/explore.py +0 -49
- /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py} +0 -0
- /machineconfig/scripts/{Restore-ThunderbirdProfile.ps1 → windows/mounts/Restore-ThunderbirdProfile.ps1} +0 -0
- {machineconfig-7.64.dist-info → machineconfig-7.79.dist-info}/WHEEL +0 -0
- {machineconfig-7.64.dist-info → machineconfig-7.79.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import platform
|
|
3
|
+
import stat
|
|
4
|
+
import shutil
|
|
5
|
+
import subprocess
|
|
6
|
+
from pathlib import Path, PureWindowsPath
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _ensure_relative_path(requested: Path | str) -> Path:
|
|
10
|
+
path = Path(requested)
|
|
11
|
+
if path.is_absolute():
|
|
12
|
+
raise ValueError("paths must be relative to the home directory")
|
|
13
|
+
if any(part == ".." for part in path.parts):
|
|
14
|
+
raise ValueError("paths must stay within the home directory")
|
|
15
|
+
return path
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def _remove_path(path: Path) -> None:
|
|
19
|
+
if path.is_symlink() or path.is_file():
|
|
20
|
+
path.unlink()
|
|
21
|
+
return
|
|
22
|
+
shutil.rmtree(path)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _ensure_wsl_environment() -> None:
|
|
26
|
+
if os.environ.get("WSL_DISTRO_NAME"):
|
|
27
|
+
return
|
|
28
|
+
if "microsoft" in platform.release().lower():
|
|
29
|
+
return
|
|
30
|
+
raise RuntimeError("copy_when_inside_wsl must run inside WSL")
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _ensure_windows_environment() -> None:
|
|
34
|
+
if os.name != "nt":
|
|
35
|
+
raise RuntimeError("copy_when_inside_windows must run inside Windows")
|
|
36
|
+
if os.environ.get("WSL_DISTRO_NAME"):
|
|
37
|
+
raise RuntimeError("copy_when_inside_windows must run inside Windows")
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def _infer_windows_home_from_permissions() -> Path:
|
|
41
|
+
base_dir = Path("/mnt/c/Users")
|
|
42
|
+
try:
|
|
43
|
+
entries = list(base_dir.iterdir())
|
|
44
|
+
except FileNotFoundError as exc:
|
|
45
|
+
raise RuntimeError("unable to find /mnt/c/Users") from exc
|
|
46
|
+
candidates: list[Path] = []
|
|
47
|
+
for entry in entries:
|
|
48
|
+
if not entry.is_dir():
|
|
49
|
+
continue
|
|
50
|
+
if entry.name.lower() == "public" or entry.name.lower() == "all users":
|
|
51
|
+
continue
|
|
52
|
+
try:
|
|
53
|
+
mode = stat.S_IMODE(entry.stat().st_mode)
|
|
54
|
+
except OSError:
|
|
55
|
+
continue
|
|
56
|
+
if mode == 0o777:
|
|
57
|
+
candidates.append(entry)
|
|
58
|
+
if len(candidates) != 1:
|
|
59
|
+
options = ", ".join(sorted(candidate.name for candidate in candidates)) or "none"
|
|
60
|
+
raise RuntimeError(f"unable to infer Windows home directory (candidates: {options})")
|
|
61
|
+
return candidates[0]
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def _resolve_windows_home_from_wsl() -> Path:
|
|
65
|
+
user_profile = os.environ.get("USERPROFILE")
|
|
66
|
+
if user_profile:
|
|
67
|
+
windows_path = PureWindowsPath(user_profile)
|
|
68
|
+
drive = windows_path.drive
|
|
69
|
+
if drive:
|
|
70
|
+
drive_letter = drive.rstrip(":").lower()
|
|
71
|
+
tail = Path(*windows_path.parts[1:])
|
|
72
|
+
candidate = Path("/mnt") / drive_letter / tail
|
|
73
|
+
if candidate.exists():
|
|
74
|
+
return candidate
|
|
75
|
+
return _infer_windows_home_from_permissions()
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def _get_single_wsl_distribution() -> str:
|
|
79
|
+
process = subprocess.run(["wsl.exe", "-l"], capture_output=True, text=True, check=True)
|
|
80
|
+
distributions: list[str] = []
|
|
81
|
+
for raw_line in process.stdout.replace("\ufeff", "").splitlines():
|
|
82
|
+
line = raw_line.strip()
|
|
83
|
+
if not line or line.lower().startswith("windows subsystem for linux"):
|
|
84
|
+
continue
|
|
85
|
+
normalized = line.lstrip("* ").replace("(Default)", "").strip()
|
|
86
|
+
if normalized:
|
|
87
|
+
distributions.append(normalized)
|
|
88
|
+
if len(distributions) != 1:
|
|
89
|
+
raise RuntimeError("unable to pick a single WSL distribution")
|
|
90
|
+
return distributions[0]
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def _resolve_wsl_home_on_windows() -> Path:
|
|
94
|
+
distribution = _get_single_wsl_distribution()
|
|
95
|
+
home_root = Path(rf"\\wsl$\{distribution}\home")
|
|
96
|
+
try:
|
|
97
|
+
entries = list(home_root.iterdir())
|
|
98
|
+
except FileNotFoundError as exc:
|
|
99
|
+
raise RuntimeError(f"unable to locate WSL home directories for {distribution}") from exc
|
|
100
|
+
except OSError as exc:
|
|
101
|
+
raise RuntimeError(f"unable to inspect WSL home directories for {distribution}") from exc
|
|
102
|
+
user_dirs = [entry for entry in entries if entry.is_dir()]
|
|
103
|
+
if len(user_dirs) != 1:
|
|
104
|
+
options = ", ".join(sorted(entry.name for entry in user_dirs)) or "none"
|
|
105
|
+
raise RuntimeError(f"unable to infer WSL user directory (candidates: {options})")
|
|
106
|
+
return user_dirs[0]
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
def _quote_for_powershell(path: Path) -> str:
|
|
110
|
+
return "'" + str(path).replace("'", "''") + "'"
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def _run_windows_copy_command(source_path: Path, target_path: Path) -> None:
|
|
114
|
+
source_is_dir = source_path.is_dir()
|
|
115
|
+
parent_literal = _quote_for_powershell(target_path.parent)
|
|
116
|
+
source_literal = _quote_for_powershell(source_path)
|
|
117
|
+
target_literal = _quote_for_powershell(target_path)
|
|
118
|
+
script = (
|
|
119
|
+
"$ErrorActionPreference = 'Stop'; "
|
|
120
|
+
f"New-Item -ItemType Directory -Path {parent_literal} -Force | Out-Null; "
|
|
121
|
+
f"Copy-Item -LiteralPath {source_literal} -Destination {target_literal}"
|
|
122
|
+
f"{' -Recurse' if source_is_dir else ''} -Force"
|
|
123
|
+
)
|
|
124
|
+
print(f"Copying {source_path} to {target_path}")
|
|
125
|
+
subprocess.run(
|
|
126
|
+
["powershell.exe", "-NoLogo", "-NoProfile", "-Command", script],
|
|
127
|
+
check=True,
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def copy_when_inside_wsl(source: Path | str, target: Path | str, overwrite: bool) -> None:
|
|
132
|
+
_ensure_wsl_environment()
|
|
133
|
+
source_relative = _ensure_relative_path(source)
|
|
134
|
+
target_relative = _ensure_relative_path(target)
|
|
135
|
+
source_path = Path.home() / source_relative
|
|
136
|
+
target_path = _resolve_windows_home_from_wsl() / target_relative
|
|
137
|
+
if not source_path.exists():
|
|
138
|
+
raise FileNotFoundError(source_path)
|
|
139
|
+
if target_path.exists():
|
|
140
|
+
if not overwrite:
|
|
141
|
+
raise FileExistsError(target_path)
|
|
142
|
+
_remove_path(target_path)
|
|
143
|
+
target_path.parent.mkdir(parents=True, exist_ok=True)
|
|
144
|
+
if source_path.is_dir():
|
|
145
|
+
shutil.copytree(source_path, target_path, dirs_exist_ok=False)
|
|
146
|
+
return
|
|
147
|
+
print(f"Copying {source_path} to {target_path}")
|
|
148
|
+
shutil.copy2(source_path, target_path)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def copy_when_inside_windows(source: Path | str, target: Path | str, overwrite: bool) -> None:
|
|
152
|
+
_ensure_windows_environment()
|
|
153
|
+
source_relative = _ensure_relative_path(source)
|
|
154
|
+
target_relative = _ensure_relative_path(target)
|
|
155
|
+
source_path = Path.home() / source_relative
|
|
156
|
+
target_path = _resolve_wsl_home_on_windows() / target_relative
|
|
157
|
+
if not source_path.exists():
|
|
158
|
+
raise FileNotFoundError(source_path)
|
|
159
|
+
if target_path.exists():
|
|
160
|
+
if not overwrite:
|
|
161
|
+
raise FileExistsError(target_path)
|
|
162
|
+
_remove_path(target_path)
|
|
163
|
+
_run_windows_copy_command(source_path, target_path)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
if __name__ == "__main__":
|
|
167
|
+
copy_when_inside_wsl(Path("projects/source.txt"), Path("windows_projects/source.txt"), True)
|
|
168
|
+
copy_when_inside_windows(Path("documents/example.txt"), Path("linux_documents/example.txt"), True)
|
|
@@ -164,8 +164,9 @@ def upgrade_machine_config_version() -> None:
|
|
|
164
164
|
except (UnicodeDecodeError, PermissionError):
|
|
165
165
|
# Skip files that can't be read as text
|
|
166
166
|
pass
|
|
167
|
-
|
|
168
167
|
print(f"Updated {files_updated} files with version constraint")
|
|
168
|
+
from machineconfig.utils.code import exit_then_run_shell_script
|
|
169
|
+
exit_then_run_shell_script(f"cd current_dir; uv sync")
|
|
169
170
|
|
|
170
171
|
|
|
171
172
|
if __name__ == "__main__":
|
machineconfig/utils/ve.py
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
import platform
|
|
1
|
+
|
|
3
2
|
from typing import Optional
|
|
4
|
-
from pathlib import Path
|
|
5
3
|
|
|
6
4
|
|
|
7
|
-
def get_ve_path_and_ipython_profile(init_path: Path) -> tuple[Optional[str], Optional[str]]:
|
|
5
|
+
def get_ve_path_and_ipython_profile(init_path: "Path") -> tuple[Optional[str], Optional[str]]:
|
|
8
6
|
"""Works with .ve.ini .venv and .ve_path"""
|
|
9
7
|
ve_path: Optional[str] = None
|
|
10
8
|
ipy_profile: Optional[str] = None
|
|
11
9
|
tmp = init_path
|
|
10
|
+
|
|
11
|
+
from machineconfig.utils.io import read_ini
|
|
12
|
+
|
|
12
13
|
for _ in init_path.parents:
|
|
13
14
|
if tmp.joinpath(".ve.ini").exists():
|
|
14
15
|
ini = read_ini(tmp.joinpath(".ve.ini"))
|
|
@@ -39,6 +40,8 @@ def get_ve_path_and_ipython_profile(init_path: Path) -> tuple[Optional[str], Opt
|
|
|
39
40
|
|
|
40
41
|
|
|
41
42
|
def get_ve_activate_line(ve_root: str):
|
|
43
|
+
import platform
|
|
44
|
+
from pathlib import Path
|
|
42
45
|
if platform.system() == "Windows":
|
|
43
46
|
q = Path(ve_root).expanduser().relative_to(Path.home()).as_posix()
|
|
44
47
|
activate_ve_line = f". $HOME/{q}/Scripts/activate.ps1"
|
|
@@ -47,3 +50,7 @@ def get_ve_activate_line(ve_root: str):
|
|
|
47
50
|
else:
|
|
48
51
|
raise NotImplementedError(f"Platform {platform.system()} not supported.")
|
|
49
52
|
return activate_ve_line
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
if __name__ == "__main__":
|
|
56
|
+
from pathlib import Path
|
|
@@ -25,7 +25,7 @@ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_
|
|
|
25
25
|
machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
|
|
26
26
|
machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
27
27
|
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
|
|
28
|
-
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=
|
|
28
|
+
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=ZcxDalj2IAC_HHtuy104GSp5JaecfdGedHlcuXl939Y,3462
|
|
29
29
|
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
30
30
|
machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
|
|
31
31
|
machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
|
|
@@ -51,7 +51,7 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
51
51
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
|
|
54
|
-
machineconfig/jobs/installer/installer_data.json,sha256=
|
|
54
|
+
machineconfig/jobs/installer/installer_data.json,sha256=Py1006iS1omzxqfAb9CjetSS-8EIcU6TayXEWgu--BY,113629
|
|
55
55
|
machineconfig/jobs/installer/package_groups.py,sha256=AE1sPeEI6i7uLE_rMavA2m1skb27aYZIfjH0ukeGDYc,4938
|
|
56
56
|
machineconfig/jobs/installer/custom/boxes.py,sha256=C6R5T1INjBUKwaYPOnpx13N1VrNxHsbJ-j-llujuujY,1991
|
|
57
57
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
@@ -70,7 +70,7 @@ machineconfig/jobs/installer/custom_dev/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88
|
|
|
70
70
|
machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=dsPmiqP9AJCack7mNeJ8Qzo4dSOwC0bsupH0Hn3gqSg,4149
|
|
71
71
|
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=NbmRNNq3Mc-x-UgQxYDy5-cBngMAAax7nEnnvbhbq4Q,5627
|
|
72
72
|
machineconfig/jobs/installer/custom_dev/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
|
|
73
|
-
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=
|
|
73
|
+
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=G-MVn49KriYHOX1Tk84quJh6XQzXC5kSN21enGofBgA,6275
|
|
74
74
|
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=yQqRpnaj7I_2q-Ge9HX0leK5-ntUCWpkqgH09cgmh-Q,3063
|
|
75
75
|
machineconfig/jobs/installer/custom_dev/winget.py,sha256=gLdwM20jKMf2bMV3BAcOg4MkuzwF09CU5OhXvLkPoHo,5738
|
|
76
76
|
machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
|
|
@@ -92,7 +92,7 @@ machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623R
|
|
|
92
92
|
machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
|
|
93
93
|
machineconfig/profile/create_helper.py,sha256=jBwgf2r6Wid9LNXw_O8JpVmm7Vk5sZJWlN0qeIkQhjE,2986
|
|
94
94
|
machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
|
|
95
|
-
machineconfig/profile/create_links_export.py,sha256=
|
|
95
|
+
machineconfig/profile/create_links_export.py,sha256=WfswDxxp7yXkAIDC-7wwc0skdivrCQNRJUS3rqUZMq8,5251
|
|
96
96
|
machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
|
|
97
97
|
machineconfig/profile/mapper.toml,sha256=9SOHwHbFCI6J9nGVk72RZZhSPBI2OWtfyTXcGz3cSaA,12701
|
|
98
98
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
@@ -100,8 +100,7 @@ machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalK
|
|
|
100
100
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
101
101
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
102
102
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
103
|
-
machineconfig/scripts/
|
|
104
|
-
machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
|
|
103
|
+
machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
104
|
machineconfig/scripts/linux/wrap_mcfg,sha256=EfqgsFfYLPK21MBpquwaeWUyldUWjTmU69z06-LZTnA,1402
|
|
106
105
|
machineconfig/scripts/linux/other/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
|
|
107
106
|
machineconfig/scripts/linux/other/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
|
|
@@ -109,21 +108,20 @@ machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4I
|
|
|
109
108
|
machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
110
109
|
machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
|
|
111
110
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
machineconfig/scripts/python/agents.py,sha256=
|
|
111
|
+
machineconfig/scripts/python/agents.py,sha256=lW0Cx8xB84qqon5G4LUFPxqMnXu6rkDVqYjhzVhkq8M,10858
|
|
113
112
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
114
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
113
|
+
machineconfig/scripts/python/croshell.py,sha256=R0v-1L9SpP3SFO8wYleougO51FHrSVhZdoIpwET6In8,7570
|
|
115
114
|
machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
|
|
116
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
117
|
-
machineconfig/scripts/python/devops_navigator.py,sha256=
|
|
118
|
-
machineconfig/scripts/python/
|
|
119
|
-
machineconfig/scripts/python/
|
|
120
|
-
machineconfig/scripts/python/
|
|
121
|
-
machineconfig/scripts/python/
|
|
122
|
-
machineconfig/scripts/python/
|
|
123
|
-
machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
|
|
115
|
+
machineconfig/scripts/python/devops.py,sha256=O7o44lUcdAs5R3th2d3xjLPSjJk7sOTLOJUyBF-yHtQ,2213
|
|
116
|
+
machineconfig/scripts/python/devops_navigator.py,sha256=UeqkY9_c22Ce9b1ksFGq-lNwaGCMMHL1LikPhP-QDt8,154
|
|
117
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=7S5tn6Y_Dov94ZRha6mqJMRAsf3en2O1DJfxRkSdPIQ,13561
|
|
118
|
+
machineconfig/scripts/python/ftpx.py,sha256=ncFvM4p-ohBB0Pez-0zSI6NQBN1T_tfltN-dB09yPzQ,11087
|
|
119
|
+
machineconfig/scripts/python/interactive.py,sha256=cD9wYKPKtbVZfYuDQh6GDTd7fqgVtEs8B2kNM_WavyA,11546
|
|
120
|
+
machineconfig/scripts/python/mcfg_entry.py,sha256=FKVnSR1mlZutQfmHu7fz2in0m-QntiIJE2L_bDVJ7BY,3088
|
|
121
|
+
machineconfig/scripts/python/msearch.py,sha256=J64epdk-bL_WkrUUHlXUR0Tuys1okdEzLbXjVqB9hSE,1646
|
|
124
122
|
machineconfig/scripts/python/sessions.py,sha256=uypWqdBpzYtyCzPPXQJdQgZlgyplHtQPDh69rV1DFBQ,10270
|
|
125
|
-
machineconfig/scripts/python/terminal.py,sha256=
|
|
126
|
-
machineconfig/scripts/python/utils.py,sha256=
|
|
123
|
+
machineconfig/scripts/python/terminal.py,sha256=3333ZxOwPhAOPj9KmKO24NrK7afVTD7Hb5bTf35dcfc,5928
|
|
124
|
+
machineconfig/scripts/python/utils.py,sha256=vqzWMM9MTBSZfjOr8vM3TPPdKXzGckicQUTWIAlbOXc,3571
|
|
127
125
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
126
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
129
127
|
machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
|
|
@@ -142,7 +140,7 @@ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeG
|
|
|
142
140
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
143
141
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
144
142
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
145
|
-
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=
|
|
143
|
+
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=4OPNxuHWXSdOOmMrsOyHTTue8n_ImTCDMjpOuV_0T6s,4576
|
|
146
144
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
|
|
147
145
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
148
146
|
machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
|
|
@@ -156,7 +154,11 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
156
154
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
157
155
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
158
156
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
159
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
157
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=EblLRBhXOwbLFOty64emm7DPH1Hu13uWBhZMvIU4yVY,6932
|
|
158
|
+
machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
|
|
159
|
+
machineconfig/scripts/python/helpers/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
|
|
160
|
+
machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
|
|
161
|
+
machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
|
|
160
162
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
163
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
162
164
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -172,32 +174,32 @@ machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hx
|
|
|
172
174
|
machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
|
|
173
175
|
machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
|
|
174
176
|
machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=
|
|
176
|
-
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=
|
|
177
|
-
machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=
|
|
178
|
-
machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=
|
|
177
|
+
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
|
|
178
|
+
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
|
|
179
|
+
machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=0CF6VN26a0j7E7PcIGEX_vFBKPXOx7U7sRDkfrE_A1I,6618
|
|
180
|
+
machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
|
|
179
181
|
machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
|
|
180
182
|
machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
181
183
|
machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
184
|
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
|
|
183
185
|
machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
184
186
|
machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
|
|
185
|
-
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=
|
|
187
|
+
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=hpLSRENN8zBdiKUA67z9oiXZw59dfrQU1tM80-Agz7o,4874
|
|
186
188
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
187
189
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
188
190
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
191
|
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=VLR7tH1SdR3ftWSNjyt0LHc1gRssYJXYvkLjtydxVOM,5007
|
|
190
192
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
|
|
191
193
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
192
|
-
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=
|
|
194
|
+
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=YnGfjnz2KkWXc_x66Sddq3Pem0rgNWgAXHWZkhSdNjs,10998
|
|
193
195
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
|
|
194
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=
|
|
196
|
-
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=
|
|
197
|
-
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=
|
|
198
|
-
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=cUSlbyYdXMEBuD_3hFN-xp1yrjP5Si3E070rtYhIA98,7061
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=BPHC-M4OjILY130iL4QcRcjBZNbYwzuSc7clSpr9oUo,6404
|
|
198
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=IDed7qI-LM9kCd4XI-5El_xFtqGZCqDyF8chQJKLdsg,6493
|
|
199
|
+
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=KjBlYW3W96RL26zmiWKeQ46AFEQ21OqHEffAvD9eKYU,6139
|
|
200
|
+
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
|
|
199
201
|
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
|
|
200
|
-
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=
|
|
202
|
+
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=IKDd0fD8qINFoxC3Ajk0GtXiDfXgiL6shrUMubx_yx4,20312
|
|
201
203
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
202
204
|
machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
205
|
machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
|
|
@@ -206,9 +208,10 @@ machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha
|
|
|
206
208
|
machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
|
|
207
209
|
machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
210
|
machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
211
|
+
machineconfig/scripts/python/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
212
|
machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=yJVFrdrH9iVkKxY0z6JXfJRuRZ22M2cc6bArt0l9F3w,6230
|
|
210
213
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=teioVhLI-skNpbYOJGo7WJEnz_FHzyidHff174CZSg8,4359
|
|
211
|
-
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=
|
|
214
|
+
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=hj81yaj5NBWkxfpZeym99pXfiP_YP_0DRJFbjd7CeRY,5926
|
|
212
215
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
216
|
machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
|
|
214
217
|
machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag,sha256=u3EYNQ_WT8jP11V0DPXWWXmFj1rzgNBnRokVBdVZpmc,677
|
|
@@ -221,16 +224,16 @@ machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat,sha256=r
|
|
|
221
224
|
machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
|
|
222
225
|
machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
|
|
223
226
|
machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
|
|
224
|
-
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=
|
|
227
|
+
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
|
|
225
228
|
machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
|
|
226
229
|
machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
|
|
227
230
|
machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
|
|
228
231
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
229
232
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
230
233
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
|
|
231
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
234
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=MyKtPoCGTLqv-AARorI57XjZwE9v_ZpfvIFuZ8RCJrg,11689
|
|
232
235
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
233
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
236
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=Uoc2e9gZiuR1egX2hTPEn1iTbj069jQ8FlqzdUi7r38,607
|
|
234
237
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
|
|
235
238
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
236
239
|
machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
|
|
@@ -238,11 +241,12 @@ machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPw
|
|
|
238
241
|
machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
239
242
|
machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
243
|
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=wCQPpsOeuNz0V7_SopHWLRgYQcQryDdQSDabikVS3AE,3054
|
|
241
|
-
machineconfig/scripts/python/helpers_utils/download.py,sha256=
|
|
242
|
-
machineconfig/scripts/python/helpers_utils/path.py,sha256=
|
|
244
|
+
machineconfig/scripts/python/helpers_utils/download.py,sha256=kGSk17oOPd1soN1JCxYRdnNId0Yux1HNhExwClrPAYk,6654
|
|
245
|
+
machineconfig/scripts/python/helpers_utils/path.py,sha256=cni9iBM1BbnfJt38gWOPQfcmmMx0CcAeiE1V7pH10k0,7101
|
|
243
246
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
+
machineconfig/scripts/python/nw/address.py,sha256=pKawu1OqoVsLtridVAdwrW7JnXy2jxRA8qKLJekjj2g,4626
|
|
244
248
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
245
|
-
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=
|
|
249
|
+
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=Tx1LPEelSU7Oo-wA7LiSgH0KWWbZ03GBRxIGajZy6jk,9734
|
|
246
250
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
247
251
|
machineconfig/scripts/python/nw/mount_nfs,sha256=Dri4hGiM2GxpqqxpdBPbf7dRHrr7P1HzZy6xtrHYQfU,1855
|
|
248
252
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
@@ -256,10 +260,11 @@ machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJh
|
|
|
256
260
|
machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
|
|
257
261
|
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=bxdh2rGV4GABcjwzj3Y_eJIO5p5-w6LGY9XF9XZLBwU,3604
|
|
258
262
|
machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFTbhwFchYUu8zsjM,2117
|
|
263
|
+
machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
|
|
259
264
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
260
265
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
261
266
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
262
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
267
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=nWdaS3OrLUaivEwRe-4T1Mw5OkSGNWQVb8wUowHgXRo,322
|
|
263
268
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
264
269
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
265
270
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -298,7 +303,7 @@ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8D
|
|
|
298
303
|
machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=TUpOoG2WpnKbjpgECT2_yPsGdhu_5JxWfl4KpY9yS0A,365
|
|
299
304
|
machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
300
305
|
machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
|
|
301
|
-
machineconfig/settings/lf/windows/lfcd.ps1,sha256=
|
|
306
|
+
machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
|
|
302
307
|
machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
|
|
303
308
|
machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
|
|
304
309
|
machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
|
|
@@ -337,11 +342,10 @@ machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HB
|
|
|
337
342
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
343
|
machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3NJlhjjNW60tpvMgUYAqO4fKtJ5MsAnlf0CefcLO4,3520
|
|
339
344
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
340
|
-
machineconfig/settings/shells/nushell/config.nu,sha256=
|
|
341
|
-
machineconfig/settings/shells/nushell/env.nu,sha256=
|
|
342
|
-
machineconfig/settings/shells/nushell/init.nu,sha256=
|
|
343
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
344
|
-
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
|
+
machineconfig/settings/shells/nushell/config.nu,sha256=_8fPc2vIoKIquK0EFJ2lrkzJdb3ZMQnMF70LIbt9Czo,108
|
|
346
|
+
machineconfig/settings/shells/nushell/env.nu,sha256=YmFVuUToLG8YHH5B1UQ0y9kvgxhGzIjHbBjdtFM3e-U,1039
|
|
347
|
+
machineconfig/settings/shells/nushell/init.nu,sha256=_VpH1S6iX_27L7gUPkyVowdQu3CJWE5XgOUrVn3tiTk,7252
|
|
348
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
|
|
345
349
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
346
350
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
347
351
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
|
|
@@ -381,13 +385,13 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
381
385
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
382
386
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
383
387
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
384
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256
|
|
388
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=K0el74YyHJmmzNwrMeG9Ckg1ii82sQMFRGKH9lEgSDQ,1606
|
|
385
389
|
machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
|
|
386
390
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
387
391
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
388
392
|
machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
|
|
389
393
|
machineconfig/setup_windows/__init__.py,sha256=vBFYK6J3-N7tmbB5wqnJoHK7uMnCtI3Ln3BFHygxK9w,334
|
|
390
|
-
machineconfig/setup_windows/uv.ps1,sha256=
|
|
394
|
+
machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
|
|
391
395
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
392
396
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
393
397
|
machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
|
|
@@ -396,29 +400,29 @@ machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdW
|
|
|
396
400
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
397
401
|
machineconfig/setup_windows/ssh/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
398
402
|
machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
399
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
400
|
-
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=
|
|
403
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=rKtO0-_j3NS8E1EdORfSbsFv6FycYiDGjS8PajurkUc,1939
|
|
404
|
+
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=bcRWU6QIFv5U4ibXy7jKqO7YfxpI3KvvesZ88aQD49E,652
|
|
401
405
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
406
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
403
407
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
|
-
machineconfig/utils/accessories.py,sha256=
|
|
405
|
-
machineconfig/utils/code.py,sha256=
|
|
408
|
+
machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
|
|
409
|
+
machineconfig/utils/code.py,sha256=gNy-Fl-Lqu3gEg07anlPlNVXrB7mv0x2jTBBJSL-ht8,7927
|
|
406
410
|
machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
|
|
407
|
-
machineconfig/utils/links.py,sha256=
|
|
408
|
-
machineconfig/utils/meta.py,sha256=
|
|
411
|
+
machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
|
|
412
|
+
machineconfig/utils/meta.py,sha256=CLkBibpumQGQXJvOhsCeUQSU9-BVdapntTMLlV6RGx0,10528
|
|
409
413
|
machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
|
|
410
|
-
machineconfig/utils/options.py,sha256=
|
|
411
|
-
machineconfig/utils/path_extended.py,sha256=
|
|
412
|
-
machineconfig/utils/path_helper.py,sha256=
|
|
414
|
+
machineconfig/utils/options.py,sha256=aXQ9q3Ri8IAiFVLNVs2VD7t_qVrCHx601UktHvDFOOs,7457
|
|
415
|
+
machineconfig/utils/path_extended.py,sha256=fqneBrU8TirDw3J8bUH-HW99aIEf7rePycanfxudVTc,50693
|
|
416
|
+
machineconfig/utils/path_helper.py,sha256=9F6maZpQ2Ad_6SlkqXFraXbPcwj2W2o8dWEv08taEpA,10370
|
|
413
417
|
machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
|
|
414
418
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
415
419
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
416
420
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
417
|
-
machineconfig/utils/ssh.py,sha256=
|
|
421
|
+
machineconfig/utils/ssh.py,sha256=P4iR2TX7wP7093JAAOfjJTeOGU8hCO8YKU_w7BS45Rk,17232
|
|
418
422
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
419
423
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
420
|
-
machineconfig/utils/upgrade_packages.py,sha256=
|
|
421
|
-
machineconfig/utils/ve.py,sha256=
|
|
424
|
+
machineconfig/utils/upgrade_packages.py,sha256=enETosTdh90PVU2GghR7cdzoKDvn93vaTgLYeSLKDCg,7116
|
|
425
|
+
machineconfig/utils/ve.py,sha256=JUPl39BXk5SShzgqhdMKYRIOgoFVaSFZnkcqdXhaMy0,2489
|
|
422
426
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
427
|
machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
|
|
424
428
|
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
@@ -435,17 +439,22 @@ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
435
439
|
machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
|
|
436
440
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
441
|
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
|
|
438
|
-
machineconfig/utils/installer_utils/
|
|
439
|
-
machineconfig/utils/installer_utils/
|
|
442
|
+
machineconfig/utils/installer_utils/install_from_url.py,sha256=18eOJNIfLsiUv9FAvdvGu92rwgb0wu89YrYT3VC8UNk,8548
|
|
443
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=82ZzlOK3ryS1AOKcrYBzDZZp_kKQUCoF8UJ4VJMqXPE,18152
|
|
444
|
+
machineconfig/utils/installer_utils/installer_cli.py,sha256=EkVRZLDeb4aEMatSTx8Nnx8XeWkTDQqwOut2dF3IERg,9680
|
|
440
445
|
machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
|
|
441
446
|
machineconfig/utils/installer_utils/installer_runner.py,sha256=yHaW2_5XM7NTfS7kWDEhb7MJZAr4GMzs1aR6pOFYBBo,8047
|
|
442
447
|
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
|
|
443
448
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
444
449
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
|
|
445
450
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
446
|
-
machineconfig/utils/ssh_utils/
|
|
447
|
-
machineconfig
|
|
448
|
-
machineconfig
|
|
449
|
-
machineconfig
|
|
450
|
-
machineconfig
|
|
451
|
-
machineconfig-7.
|
|
451
|
+
machineconfig/utils/ssh_utils/abc.py,sha256=SxBUsm4cHsIrUZhUxN-PimKE7It1oOHWrxShLn9dE0U,243
|
|
452
|
+
machineconfig/utils/ssh_utils/copy_from_here.py,sha256=-iQdk2d5S9xDIhU2hsdAWWRmRYjPZX33SxvBSrpKjdY,5322
|
|
453
|
+
machineconfig/utils/ssh_utils/copy_to_here.py,sha256=yM-U7knnOA7IwgXmXEdoeJ4SChsd4aMAyxkeBTkkcYU,13844
|
|
454
|
+
machineconfig/utils/ssh_utils/utils.py,sha256=C5Ht13WlKdXEwaSbs9SE8v09Sw_8Dn0ei4_bAwXQpLE,6198
|
|
455
|
+
machineconfig/utils/ssh_utils/wsl.py,sha256=qp0pIG7L6gBhv7KiFP_LxYkiJ7Ji5gDcxa0kILwu9Do,6371
|
|
456
|
+
machineconfig-7.79.dist-info/METADATA,sha256=pBjVSp93FPKuuJTKItkzppJ8bDgAqxjD4cqfcM1GPX0,5939
|
|
457
|
+
machineconfig-7.79.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
458
|
+
machineconfig-7.79.dist-info/entry_points.txt,sha256=nZv_eHgIxktijrRlv1O4AMwbXXN-pnEUwQF7qZC9lcI,740
|
|
459
|
+
machineconfig-7.79.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
460
|
+
machineconfig-7.79.dist-info/RECORD,,
|
|
@@ -7,8 +7,8 @@ devops = machineconfig.scripts.python.devops:main
|
|
|
7
7
|
explore = machineconfig.scripts.python.explore:main
|
|
8
8
|
fire = machineconfig.scripts.python.fire_jobs:main
|
|
9
9
|
ftpx = machineconfig.scripts.python.ftpx:main
|
|
10
|
-
machineconfig = machineconfig.scripts.python.
|
|
11
|
-
mcfg = machineconfig.scripts.python.
|
|
10
|
+
machineconfig = machineconfig.scripts.python.mcfg_entry:main
|
|
11
|
+
mcfg = machineconfig.scripts.python.mcfg_entry:main
|
|
12
12
|
msearch = machineconfig.scripts.python.msearch:main
|
|
13
13
|
sessions = machineconfig.scripts.python.sessions:main
|
|
14
14
|
terminal = machineconfig.scripts.python.terminal:main
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import typer
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
def machineconfig_lf():
|
|
6
|
-
# from machineconfig.scripts.python.helpers_msearch import FZFG_LINUX_PATH, FZFG_WINDOWS_PATH
|
|
7
|
-
import platform
|
|
8
|
-
if platform.system() == "Linux":
|
|
9
|
-
script = """
|
|
10
|
-
tmp="$(mktemp)"
|
|
11
|
-
lf -last-dir-path="$tmp" "$@"
|
|
12
|
-
if [ -f "$tmp" ]; then
|
|
13
|
-
dir="$(cat "$tmp")"
|
|
14
|
-
rm -f "$tmp"
|
|
15
|
-
if [ -d "$dir" ]; then
|
|
16
|
-
if [ "$dir" != "$(pwd)" ]; then
|
|
17
|
-
cd "$dir"
|
|
18
|
-
fi
|
|
19
|
-
fi
|
|
20
|
-
fi
|
|
21
|
-
"""
|
|
22
|
-
elif platform.system() == "Windows":
|
|
23
|
-
script = r"""
|
|
24
|
-
$tmp = [System.IO.Path]::GetTempFileName()
|
|
25
|
-
~\AppData\Local\Microsoft\WindowsApps\lf.exe -last-dir-path="$tmp" $args
|
|
26
|
-
if (Test-Path -PathType Leaf "$tmp")
|
|
27
|
-
{
|
|
28
|
-
$dir = Get-Content "$tmp"
|
|
29
|
-
Remove-Item -Force "$tmp"
|
|
30
|
-
if (Test-Path -PathType Container "$dir")
|
|
31
|
-
{
|
|
32
|
-
if ("$dir" -ne "$pwd")
|
|
33
|
-
{
|
|
34
|
-
Set-Location "$dir"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
"""
|
|
39
|
-
else:
|
|
40
|
-
raise RuntimeError("Unsupported platform")
|
|
41
|
-
|
|
42
|
-
from machineconfig.utils.code import exit_then_run_shell_script
|
|
43
|
-
exit_then_run_shell_script(script=script, strict=False)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
def main():
|
|
47
|
-
app = typer.Typer(add_completion=False, no_args_is_help=True)
|
|
48
|
-
app.command(name="lf", help="machineconfig lf wrapper.", no_args_is_help=False)(machineconfig_lf)
|
|
49
|
-
app()
|
/machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py}
RENAMED
|
File without changes
|