machineconfig 6.22__py3-none-any.whl → 6.25__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/jobs/installer/installer_data.json +17 -0
- machineconfig/scripts/python/devops.py +3 -2
- machineconfig/scripts/python/devops_helpers/cli_data.py +15 -8
- machineconfig/scripts/python/devops_helpers/cli_repos.py +2 -9
- machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py +2 -5
- machineconfig/scripts/python/interactive.py +1 -1
- machineconfig/scripts/python/repos_helpers/clone.py +3 -2
- machineconfig/scripts/python/repos_helpers/record.py +1 -1
- machineconfig/settings/shells/wt/settings.json +18 -12
- machineconfig/utils/path_extended.py +2 -2
- {machineconfig-6.22.dist-info → machineconfig-6.25.dist-info}/METADATA +1 -1
- {machineconfig-6.22.dist-info → machineconfig-6.25.dist-info}/RECORD +15 -15
- {machineconfig-6.22.dist-info → machineconfig-6.25.dist-info}/WHEEL +0 -0
- {machineconfig-6.22.dist-info → machineconfig-6.25.dist-info}/entry_points.txt +0 -0
- {machineconfig-6.22.dist-info → machineconfig-6.25.dist-info}/top_level.txt +0 -0
|
@@ -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",
|
|
@@ -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
|
-
|
|
34
|
-
app.add_typer(
|
|
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)
|
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
|
|
2
2
|
import typer
|
|
3
|
+
from typing import Annotated, Optional
|
|
3
4
|
|
|
4
|
-
|
|
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
|
-
|
|
14
|
-
|
|
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
|
|
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
|
|
|
@@ -59,16 +57,12 @@ def capture(directory: DirectoryArgument = None, cloud: CloudOption = None) -> N
|
|
|
59
57
|
def clone(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
|
|
60
58
|
"""📥 Clone repositories described by a repos.json specification."""
|
|
61
59
|
from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
|
|
62
|
-
|
|
63
|
-
|
|
64
60
|
clone_from_specs(directory, cloud, checkout_branch_flag=False, checkout_commit_flag=False)
|
|
65
61
|
|
|
66
62
|
|
|
67
63
|
def checkout_command(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
|
|
68
64
|
"""🔀 Check out specific commits listed in the specification."""
|
|
69
|
-
from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
|
|
70
|
-
|
|
71
|
-
|
|
65
|
+
from machineconfig.scripts.python.repos_helpers.entrypoint import clone_from_specs
|
|
72
66
|
clone_from_specs(directory, cloud, checkout_branch_flag=False, checkout_commit_flag=True)
|
|
73
67
|
|
|
74
68
|
|
|
@@ -82,7 +76,6 @@ def analyze(directory: DirectoryArgument = None) -> None:
|
|
|
82
76
|
"""📊 Analyze repository development over time."""
|
|
83
77
|
repo_path = directory if directory is not None else "."
|
|
84
78
|
from machineconfig.scripts.python.repos_helpers.count_lines_frontend import analyze_repo_development
|
|
85
|
-
|
|
86
79
|
analyze_repo_development(repo_path=repo_path)
|
|
87
80
|
|
|
88
81
|
|
|
@@ -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]
|
|
20
|
+
def main_backup_retrieve(direction: OPTIONS, which: Optional[str], cloud: Optional[str]) -> None:
|
|
21
21
|
console = Console()
|
|
22
|
-
|
|
23
22
|
try:
|
|
24
|
-
cloud
|
|
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":
|
|
@@ -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")
|
|
@@ -8,7 +8,7 @@ from git.exc import GitCommandError
|
|
|
8
8
|
from rich import print as pprint
|
|
9
9
|
from rich.progress import BarColumn, MofNCompleteColumn, Progress, SpinnerColumn, TextColumn, TimeElapsedColumn
|
|
10
10
|
|
|
11
|
-
from machineconfig.utils.schemas.repos.repos_types import RepoRecordDict, RepoRemote
|
|
11
|
+
from machineconfig.utils.schemas.repos.repos_types import RepoRecordDict, RepoRecordFile, RepoRemote
|
|
12
12
|
from machineconfig.utils.io import read_json
|
|
13
13
|
|
|
14
14
|
|
|
@@ -95,7 +95,8 @@ def clone_single_repo(repo_spec: RepoRecordDict, preferred_remote: Optional[str]
|
|
|
95
95
|
|
|
96
96
|
|
|
97
97
|
def clone_repos(spec_path: Path, preferred_remote: Optional[str], checkout_branch_flag: bool, checkout_commit_flag: bool) -> list[tuple[CloneStatus, str]]:
|
|
98
|
-
|
|
98
|
+
spec_file = cast(RepoRecordFile, read_json(path=spec_path))
|
|
99
|
+
repos = spec_file["repos"]
|
|
99
100
|
results: list[tuple[CloneStatus, str]] = []
|
|
100
101
|
with Progress(SpinnerColumn(), TextColumn("[progress.description]{task.description}"), BarColumn(), MofNCompleteColumn(), TimeElapsedColumn()) as progress:
|
|
101
102
|
task_id = progress.add_task("Processing repositories...", total=len(repos))
|
|
@@ -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
|
|
189
|
+
def main_record(repos_root: Path):
|
|
190
190
|
print("\n📝 Recording repositories...")
|
|
191
191
|
repos_root = PathExtended(repos_root).expanduser().absolute()
|
|
192
192
|
|
|
@@ -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.
|
|
13
|
-
"keys": "ctrl+shift+
|
|
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.
|
|
21
|
-
"keys": "ctrl+shift+
|
|
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",
|
|
@@ -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:
|
|
@@ -46,7 +46,7 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
46
46
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
machineconfig/jobs/installer/check_installations.py,sha256=uFuxhgI8rIMtClcGmuc9gpG6iJ7X0__peGUQfGkreT8,10778
|
|
49
|
-
machineconfig/jobs/installer/installer_data.json,sha256=
|
|
49
|
+
machineconfig/jobs/installer/installer_data.json,sha256=C61tOaLDkoyWyoIwyGc7_QxPsasITwoFUhuMhqlLk6M,75416
|
|
50
50
|
machineconfig/jobs/installer/package_groups.py,sha256=i4z83F_rk7BVsrwFhz5Vn4SLF0IHxyQBFSxpAaZBl8M,5270
|
|
51
51
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
52
52
|
machineconfig/jobs/installer/custom/hx.py,sha256=YQClQXqWtGvon8BLFGf1Fp20JPkHgZeEZ6ebmCJQQfI,5838
|
|
@@ -122,12 +122,12 @@ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
122
122
|
machineconfig/scripts/python/agents.py,sha256=f5UxgXjGlEypoNFqK0uHKO0UkbV_wUmPiPzotL2yapM,10677
|
|
123
123
|
machineconfig/scripts/python/cloud.py,sha256=ubLmf06FSdi1NawpQDgUDAtYb9cZSQqHbSUHzAwRIas,1199
|
|
124
124
|
machineconfig/scripts/python/croshell.py,sha256=0Ym3n-ZmIpaOX_SWnGP88dq_iH7QWJKUZvY0x58sXjI,7083
|
|
125
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
125
|
+
machineconfig/scripts/python/devops.py,sha256=FjsUBr8mFBTgjtesAiRaBXYpWWHqAxcMC6Naka8HTFk,2175
|
|
126
126
|
machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
|
|
127
127
|
machineconfig/scripts/python/entry.py,sha256=Az7dK1eXHGW5l46Yg10Cd88VChCdhvLAzO3e1A3r56A,2176
|
|
128
128
|
machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
|
|
129
129
|
machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
|
|
130
|
-
machineconfig/scripts/python/interactive.py,sha256=
|
|
130
|
+
machineconfig/scripts/python/interactive.py,sha256=y5U0OvBAiMax6Z9arK9gRUpzjPBhYPoz2j8Cxu9Omko,11814
|
|
131
131
|
machineconfig/scripts/python/sessions.py,sha256=l0NhO8kLtpDHdvNTlZ-Stt0VqARZqKUqiJlKvGIqCC0,9778
|
|
132
132
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
133
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
@@ -175,13 +175,13 @@ machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iK
|
|
|
175
175
|
machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
176
|
machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=yyzfxOKC1k6YRWERWUY7riIVDmiyB_L89wpBzmU5DBg,5402
|
|
177
177
|
machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
|
|
178
|
-
machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=
|
|
178
|
+
machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=2OWwp86-ncpGoSP9IblW7Jjej-wc-PuS8KRZ5xh0l1c,1774
|
|
179
179
|
machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=nI_zmcmUvijVeXIWT2dN5onoy3ou-lub1cL-SJImmDA,4125
|
|
180
|
-
machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=
|
|
180
|
+
machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=Y5HgbNUyt7iehXyfmqPjVVjCsbZI-1Q6w1XwKQb_FkU,12331
|
|
181
181
|
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=PCTAOX5K4WBFWQ_ZRcLKyyHpsPH93Ou4RY56Cp1Xu_U,5733
|
|
182
182
|
machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=q9pFJ6AxPuygMr3onMNOKEuuQHbVE_6Qoyo7xRT5FX0,4196
|
|
183
183
|
machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
184
|
-
machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=
|
|
184
|
+
machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=8VpnWytbJYdZZfeLmULgGeGuV5BlHrzdcbGtSsmU-EA,5598
|
|
185
185
|
machineconfig/scripts/python/devops_helpers/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
|
|
186
186
|
machineconfig/scripts/python/devops_helpers/devops_update_repos.py,sha256=TLYhvMMDJCqLNsv1h4a0MtxYqQHWkRRvKnERyXd8MAs,10133
|
|
187
187
|
machineconfig/scripts/python/devops_helpers/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -238,11 +238,11 @@ machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=2prJs3PMsoAUu5LlZhHI
|
|
|
238
238
|
machineconfig/scripts/python/nw/wifi_conn.py,sha256=4GdLhgma9GRmZ6OFg3oxOX-qY3sr45njPckozlpM_A0,15566
|
|
239
239
|
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nGH9G2-BjlszaiLETu6WBECcNNhA,3546
|
|
240
240
|
machineconfig/scripts/python/repos_helpers/action.py,sha256=pl0U53FAGoH2yk-CGNIy3aggImXY5ZVz28-XVFHDvfA,14862
|
|
241
|
-
machineconfig/scripts/python/repos_helpers/clone.py,sha256=
|
|
241
|
+
machineconfig/scripts/python/repos_helpers/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
242
242
|
machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
243
243
|
machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=KkkecMNXssfwBK9nLEXZgilq_DME1ah325MTRV6-z2c,607
|
|
244
244
|
machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=UagEar85QCAXX7oOqJjDJp2Vds5UQxehYPmckL_S0oI,2836
|
|
245
|
-
machineconfig/scripts/python/repos_helpers/record.py,sha256=
|
|
245
|
+
machineconfig/scripts/python/repos_helpers/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
|
|
246
246
|
machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
|
|
247
247
|
machineconfig/scripts/python/repos_helpers/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
248
248
|
machineconfig/scripts/python/sessions_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -336,7 +336,7 @@ machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
336
336
|
machineconfig/settings/shells/starship/starship.toml,sha256=5rQTY7ZpKnrnhgu2Y9OJKUYMz5lPLIftO1p1VRuVZwQ,1150
|
|
337
337
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
338
338
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
339
|
-
machineconfig/settings/shells/wt/settings.json,sha256=
|
|
339
|
+
machineconfig/settings/shells/wt/settings.json,sha256=G3MzbSfkNDoCbFfKKuS5wuSWsMff4oj6s6m-iXryNz8,10353
|
|
340
340
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
341
341
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
342
342
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -390,7 +390,7 @@ machineconfig/utils/links.py,sha256=KM6vIn3hag9FYEzLSHP5MAM9tU_RStw2mCq2_OvmmZA,
|
|
|
390
390
|
machineconfig/utils/meta.py,sha256=fDn7cpq6iqAPzX2eKLSK9DZb0870rluR7eLDx5NgNaw,5994
|
|
391
391
|
machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
|
|
392
392
|
machineconfig/utils/options.py,sha256=vUO4Kej-vDOv64wHr2HNDyu6PATURpjd7xp6N8OOoJg,7083
|
|
393
|
-
machineconfig/utils/path_extended.py,sha256=
|
|
393
|
+
machineconfig/utils/path_extended.py,sha256=WyJwoHnXdvSQQJ-yrxTX78FpqYmgVeKDYpNEB9UsRck,53223
|
|
394
394
|
machineconfig/utils/path_helper.py,sha256=0e3Xh3BAEv27oqcezNeVLHJllGmLEgLH4T1l90m-650,8014
|
|
395
395
|
machineconfig/utils/procs.py,sha256=rw8LR8MjGgvtrpcgxb3hudq2B9fkkpYUXe9x5-FgHuc,10694
|
|
396
396
|
machineconfig/utils/scheduler.py,sha256=jZ_1yghqA3-aINPRmE_76gboqJc0UElroR7urNOfXKs,14940
|
|
@@ -421,8 +421,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
421
421
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
422
422
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
423
423
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
machineconfig-6.
|
|
425
|
-
machineconfig-6.
|
|
426
|
-
machineconfig-6.
|
|
427
|
-
machineconfig-6.
|
|
428
|
-
machineconfig-6.
|
|
424
|
+
machineconfig-6.25.dist-info/METADATA,sha256=b1RAazwICbPQ-7m6ndnOdcpiyFz0QOTaxTjW1AGpeeY,3012
|
|
425
|
+
machineconfig-6.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
426
|
+
machineconfig-6.25.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
|
|
427
|
+
machineconfig-6.25.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
428
|
+
machineconfig-6.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|