machineconfig 6.96__py3-none-any.whl → 6.98__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/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_config.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +43 -19
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
- machineconfig/scripts/windows/mcfgs.ps1 +2 -2
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/shells/pwsh/init.ps1 +9 -9
- machineconfig/setup_linux/web_shortcuts/interactive.sh +23 -13
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +22 -12
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-6.96.dist-info → machineconfig-6.98.dist-info}/METADATA +1 -1
- {machineconfig-6.96.dist-info → machineconfig-6.98.dist-info}/RECORD +16 -16
- {machineconfig-6.96.dist-info → machineconfig-6.98.dist-info}/WHEEL +0 -0
- {machineconfig-6.96.dist-info → machineconfig-6.98.dist-info}/entry_points.txt +0 -0
- {machineconfig-6.96.dist-info → machineconfig-6.98.dist-info}/top_level.txt +0 -0
|
@@ -46,7 +46,7 @@ def path():
|
|
|
46
46
|
uv_with = ["textual"]
|
|
47
47
|
uv_project_dir = None
|
|
48
48
|
if not Path.home().joinpath("code/machineconfig").exists():
|
|
49
|
-
uv_with.append("machineconfig>=6.
|
|
49
|
+
uv_with.append("machineconfig>=6.98")
|
|
50
50
|
else:
|
|
51
51
|
uv_project_dir = str(Path.home().joinpath("code/machineconfig"))
|
|
52
52
|
run_shell_script(get_uv_command_executing_python_script(python_script=path.read_text(encoding="utf-8"), uv_with=uv_with, uv_project_dir=uv_project_dir)[0])
|
|
@@ -48,9 +48,9 @@ def install(no_copy_assets: Annotated[bool, typer.Option("--no-assets-copy", "-n
|
|
|
48
48
|
else:
|
|
49
49
|
import platform
|
|
50
50
|
if platform.system() == "Windows":
|
|
51
|
-
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.
|
|
51
|
+
run_shell_script(r"""& "$HOME\.local\bin\uv.exe" tool install --upgrade "machineconfig>=6.98" """)
|
|
52
52
|
else:
|
|
53
|
-
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.
|
|
53
|
+
run_shell_script("""$HOME/.local/bin/uv tool install --upgrade "machineconfig>=6.98" """)
|
|
54
54
|
from machineconfig.profile.create_shell_profile import create_default_shell_profile
|
|
55
55
|
if not no_copy_assets:
|
|
56
56
|
create_default_shell_profile() # involves copying assets too
|
|
@@ -75,7 +75,7 @@ def navigate():
|
|
|
75
75
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
76
76
|
from machineconfig.utils.code import run_shell_script
|
|
77
77
|
if Path.home().joinpath("code/machineconfig").exists(): executable = f"""--project "{str(Path.home().joinpath("code/machineconfig"))}" --with textual"""
|
|
78
|
-
else: executable = """--with "machineconfig>=6.
|
|
78
|
+
else: executable = """--with "machineconfig>=6.98,textual" """
|
|
79
79
|
run_shell_script(f"""uv run {executable} {path}""")
|
|
80
80
|
|
|
81
81
|
|
|
@@ -140,12 +140,12 @@ croc {relay_arg} send {zip_arg} {qrcode_arg} {text_arg} {path_arg}"""
|
|
|
140
140
|
exit_then_run_shell_script(script=script, strict=False)
|
|
141
141
|
|
|
142
142
|
|
|
143
|
-
def share_file_receive(code_args: Annotated[list[str], typer.Argument(help="Receive code or
|
|
143
|
+
def share_file_receive(code_args: Annotated[list[str], typer.Argument(help="Receive code or relay command. Examples: '7121-donor-olympic-bicycle' or '--relay 10.17.62.206:443 7121-donor-olympic-bicycle'")],) -> None:
|
|
144
144
|
"""Receive a file using croc with relay server.
|
|
145
145
|
Usage examples:
|
|
146
146
|
devops network receive 7121-donor-olympic-bicycle
|
|
147
|
-
devops network receive --relay 10.17.62.206:443
|
|
148
|
-
devops network receive -- --relay 10.17.62.206:443
|
|
147
|
+
devops network receive -- --relay 10.17.62.206:443 7121-donor-olympic-bicycle
|
|
148
|
+
devops network receive -- croc --relay 10.17.62.206:443 7121-donor-olympic-bicycle
|
|
149
149
|
"""
|
|
150
150
|
from machineconfig.utils.installer_utils.installer import install_if_missing
|
|
151
151
|
install_if_missing(which="croc")
|
|
@@ -153,33 +153,57 @@ Usage examples:
|
|
|
153
153
|
|
|
154
154
|
is_windows = platform.system() == "Windows"
|
|
155
155
|
|
|
156
|
-
# Join all arguments
|
|
157
|
-
|
|
156
|
+
# Join all arguments
|
|
157
|
+
input_str = " ".join(code_args)
|
|
158
|
+
tokens = input_str.split()
|
|
158
159
|
|
|
159
|
-
# Parse input
|
|
160
|
+
# Parse input to extract relay server and secret code
|
|
160
161
|
relay_server: str | None = None
|
|
161
162
|
secret_code: str | None = None
|
|
162
163
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
164
|
+
# Remove 'croc' from tokens if present
|
|
165
|
+
tokens = [t for t in tokens if t != 'croc']
|
|
166
|
+
|
|
167
|
+
# Look for --relay flag and capture next token
|
|
168
|
+
if '--relay' in tokens:
|
|
169
|
+
relay_idx = tokens.index('--relay')
|
|
170
|
+
if relay_idx + 1 < len(tokens):
|
|
171
|
+
relay_server = tokens[relay_idx + 1]
|
|
172
|
+
|
|
173
|
+
# Look for CROC_SECRET= prefix in any token
|
|
174
|
+
for token in tokens:
|
|
175
|
+
if token.startswith('CROC_SECRET='):
|
|
176
|
+
secret_code = token.split('=', 1)[1].strip('"')
|
|
177
|
+
break
|
|
178
|
+
|
|
179
|
+
# If no secret code found yet, look for tokens with dashes (typical pattern: number-word-word-word)
|
|
180
|
+
if not secret_code:
|
|
181
|
+
for token in tokens:
|
|
182
|
+
if '-' in token and not token.startswith('-') and token not in [relay_server, 'export']:
|
|
183
|
+
secret_code = token
|
|
184
|
+
break
|
|
185
|
+
|
|
186
|
+
if not secret_code and not relay_server:
|
|
187
|
+
typer.echo(f"❌ Error: Could not parse croc receive code from input: {input_str}", err=True)
|
|
188
|
+
typer.echo("Usage:", err=True)
|
|
189
|
+
typer.echo(" devops network receive 7121-donor-olympic-bicycle", err=True)
|
|
190
|
+
typer.echo(" devops network receive -- --relay 10.17.62.206:443 7121-donor-olympic-bicycle", err=True)
|
|
191
|
+
raise typer.Exit(code=1)
|
|
192
|
+
|
|
173
193
|
# Build the appropriate script for current OS
|
|
174
194
|
if is_windows:
|
|
175
195
|
# Windows PowerShell format: croc --relay server:port secret-code --yes
|
|
176
196
|
relay_arg = f"--relay {relay_server}" if relay_server else ""
|
|
177
|
-
|
|
197
|
+
code_arg = f"{secret_code}" if secret_code else ""
|
|
198
|
+
script = f"""croc {relay_arg} {code_arg} --yes""".strip()
|
|
178
199
|
else:
|
|
179
200
|
# Linux/macOS Bash format: CROC_SECRET="secret-code" croc --relay server:port --yes
|
|
180
201
|
relay_arg = f"--relay {relay_server}" if relay_server else ""
|
|
181
|
-
|
|
182
|
-
|
|
202
|
+
if secret_code:
|
|
203
|
+
script = f"""export CROC_SECRET="{secret_code}"
|
|
204
|
+
croc {relay_arg} --yes""".strip()
|
|
205
|
+
else:
|
|
206
|
+
script = f"""croc {relay_arg} --yes""".strip()
|
|
183
207
|
|
|
184
208
|
from machineconfig.utils.code import exit_then_run_shell_script, print_code
|
|
185
209
|
print_code(code=script, desc="🚀 Receiving file with croc", lexer="bash" if platform.system() != "Windows" else "powershell")
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function
|
|
1
|
+
function wrap_in_op_code {
|
|
2
2
|
param(
|
|
3
3
|
[Parameter(Mandatory=$true)]
|
|
4
4
|
[string]$Command,
|
|
@@ -49,6 +49,6 @@ function warp_in_op_code {
|
|
|
49
49
|
|
|
50
50
|
# Call the function with any arguments passed to the script
|
|
51
51
|
if ($args.Count -gt 0) {
|
|
52
|
-
|
|
52
|
+
wrap_in_op_code @args
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.14 --with "machineconfig>=6.
|
|
10
|
+
uv run --python 3.14 --with "machineconfig>=6.98" 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
|
|
@@ -32,15 +32,15 @@ if (Test-Path "$CONFIG_ROOT\scripts\windows\mcfgs.ps1") {
|
|
|
32
32
|
|
|
33
33
|
function lsdla { lsd -la }
|
|
34
34
|
Set-Alias -Name l -Value lsdla -Option AllScope
|
|
35
|
-
function d {
|
|
36
|
-
function c {
|
|
37
|
-
function a {
|
|
38
|
-
function ss {
|
|
39
|
-
function ff {
|
|
40
|
-
function f {
|
|
41
|
-
function rr {
|
|
42
|
-
function u {
|
|
43
|
-
function t {
|
|
35
|
+
function d { wrap_in_op_code devops $args }
|
|
36
|
+
function c { wrap_in_op_code cloud $args }
|
|
37
|
+
function a { wrap_in_op_code agents $args }
|
|
38
|
+
function ss { wrap_in_op_code sessions $args }
|
|
39
|
+
function ff { wrap_in_op_code ftpx $args }
|
|
40
|
+
function f { wrap_in_op_code fire $args }
|
|
41
|
+
function rr { wrap_in_op_code croshell $args }
|
|
42
|
+
function u { wrap_in_op_code utils $args }
|
|
43
|
+
function t { wrap_in_op_code terminal $args }
|
|
44
44
|
|
|
45
45
|
}
|
|
46
46
|
else {
|
|
@@ -1,15 +1,25 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
alias
|
|
7
|
-
alias
|
|
8
|
-
alias
|
|
9
|
-
alias
|
|
10
|
-
alias
|
|
11
|
-
alias
|
|
12
|
-
alias
|
|
13
|
-
alias
|
|
14
|
-
|
|
15
|
-
|
|
3
|
+
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/linux/mcfgs.sh")
|
|
4
|
+
|
|
5
|
+
alias devops='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" devops'
|
|
6
|
+
alias cloud='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" cloud'
|
|
7
|
+
alias agents='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" agents'
|
|
8
|
+
alias sessions='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" sessions'
|
|
9
|
+
alias ftpx='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" ftpx'
|
|
10
|
+
alias fire='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" fire'
|
|
11
|
+
alias croshell='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" croshell'
|
|
12
|
+
alias utils='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" utils'
|
|
13
|
+
alias terminal='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=6.98" terminal'
|
|
14
|
+
|
|
15
|
+
alias d='wrap_in_op_code devops'
|
|
16
|
+
alias c='wrap_in_op_code cloud'
|
|
17
|
+
alias a='wrap_in_op_code agents'
|
|
18
|
+
alias ss='wrap_in_op_code sessions'
|
|
19
|
+
alias ff='wrap_in_op_code ftpx'
|
|
20
|
+
alias f='wrap_in_op_code fire'
|
|
21
|
+
alias rr='wrap_in_op_code croshell'
|
|
22
|
+
alias u='wrap_in_op_code utils'
|
|
23
|
+
alias t='wrap_in_op_code terminal'
|
|
24
|
+
|
|
25
|
+
echo "mcfg command aliases are now defined in this shell session."
|
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
function
|
|
8
|
-
function
|
|
9
|
-
function
|
|
10
|
-
function
|
|
11
|
-
function
|
|
12
|
-
function
|
|
13
|
-
function
|
|
14
|
-
function
|
|
15
|
-
|
|
4
|
+
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/windows/mcfgs.ps1").Content
|
|
5
|
+
|
|
6
|
+
function devops { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" devops $args }
|
|
7
|
+
function cloud { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" cloud $args }
|
|
8
|
+
function agents { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" agents $args }
|
|
9
|
+
function sessions { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" sessions $args }
|
|
10
|
+
function ftpx { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" ftpx $args }
|
|
11
|
+
function fire { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" fire $args }
|
|
12
|
+
function croshell { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" croshell $args }
|
|
13
|
+
function utils { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" utils $args }
|
|
14
|
+
function terminal { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=6.98" terminal $args }
|
|
15
|
+
|
|
16
|
+
function d { wrap_in_op_code devops @args }
|
|
17
|
+
function c { wrap_in_op_code cloud @args }
|
|
18
|
+
function a { wrap_in_op_code agents @args }
|
|
19
|
+
function ss { wrap_in_op_code sessions @args }
|
|
20
|
+
function ff { wrap_in_op_code ftpx @args }
|
|
21
|
+
function f { wrap_in_op_code fire @args }
|
|
22
|
+
function rr { wrap_in_op_code croshell @args }
|
|
23
|
+
function u { wrap_in_op_code utils @args }
|
|
24
|
+
function t { wrap_in_op_code terminal @args }
|
|
25
|
+
|
|
16
26
|
Write-Host "mcfg command aliases are now defined in this PowerShell session."
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -8,7 +8,7 @@ from machineconfig.utils.terminal import Response
|
|
|
8
8
|
from machineconfig.utils.accessories import pprint, randstr
|
|
9
9
|
from machineconfig.utils.meta import lambda_to_python_script
|
|
10
10
|
UV_RUN_CMD = "$HOME/.local/bin/uv run" if platform.system() != "Windows" else """& "$env:USERPROFILE/.local/bin/uv" run"""
|
|
11
|
-
MACHINECONFIG_VERSION = "machineconfig>=6.
|
|
11
|
+
MACHINECONFIG_VERSION = "machineconfig>=6.98"
|
|
12
12
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
13
13
|
|
|
14
14
|
class SSH:
|
|
@@ -162,7 +162,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
162
162
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
163
163
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
164
164
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
165
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
165
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=rkT7KURJ29wvEljoxaXNLIRzszem9c46OsrHWdmSx-w,6932
|
|
166
166
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
168
168
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -192,13 +192,13 @@ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPh
|
|
|
192
192
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
193
193
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
194
194
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
195
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=jKQ4zLsAr0kfZ_-TBXz01G1L8TVXvGVRN6XPYcTBts8,7222
|
|
196
196
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=dduLPmaxOU9eOOy76QTG8Yzi5WQdewbiJ8X615Z19wk,2487
|
|
197
197
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
198
198
|
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=9NcVJvPYaUDtmI_DSKthZxR4emMBeNWVM_M5f0YR8EQ,7302
|
|
199
199
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=Xwkv1adqHZvTfRSPWiqSK3PZ1XADyx3llw_YkbxaKyE,12505
|
|
200
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
201
|
-
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=
|
|
200
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=r5cT_GeBSl3Vuf_n9gKs4Kfs9uYPrB31Bry9IQTqov0,6621
|
|
201
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=qNGpLYWEYsgILqogd7yrXG5Rz3R25AOsXeAUc7fdBEo,10222
|
|
202
202
|
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
203
203
|
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=B9pnosujOxZLpwzJO4YAqeO-2rvvOFIZgrUwGREZXfM,11118
|
|
204
204
|
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Dn8luB6QJzxKiiFSC-NMqiYddWZoca3A8eOjMYZDzTc,5598
|
|
@@ -225,7 +225,7 @@ machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wd
|
|
|
225
225
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
226
226
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
227
227
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
228
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
228
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=qQFIyiyAVGswC0TXHj6kurkin9-oqokqmiHjTZUngBU,10450
|
|
229
229
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
230
230
|
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=vSDtrF4829jziwp6WZmGt9G8MJ9jY4hfXqtf0vhkYSE,607
|
|
231
231
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
|
|
@@ -255,12 +255,12 @@ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=jHJyFTuks_Kw4cgE8
|
|
|
255
255
|
machineconfig/scripts/windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
|
|
256
256
|
machineconfig/scripts/windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
|
|
257
257
|
machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
|
|
258
|
-
machineconfig/scripts/windows/mcfgs.ps1,sha256=
|
|
258
|
+
machineconfig/scripts/windows/mcfgs.ps1,sha256=Eh_jMKUnj8QuXEL04tKSnYahPNpwFX6vUNeiF4lX8B8,1768
|
|
259
259
|
machineconfig/scripts/windows/term.ps1,sha256=nme_OWis84qN-zI2c0rdysNcDIdoaEKajXZhP2QioQs,1742
|
|
260
260
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
261
261
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
262
262
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
263
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
263
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=CPNwUqIsu-dd2F5574QGEVOkAWq4VQG0p9Gaq0yb-mw,322
|
|
264
264
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
265
265
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
266
266
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -340,7 +340,7 @@ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3
|
|
|
340
340
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
341
341
|
machineconfig/settings/shells/nushell/config.nu,sha256=xtko80MPteDXuOJmwJHNFhXmfHT6fIBfmTgsF29GiEc,748
|
|
342
342
|
machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
|
|
343
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
343
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=sNLGlGj13glnnvaerdcu4-f6MDWxd9-48WPdDeAGR_M,2758
|
|
344
344
|
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
346
346
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
@@ -378,7 +378,7 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
378
378
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
379
379
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
380
380
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
381
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256
|
|
381
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=g0Xi4DOKCTy9FpqSeZEKAxHYgtayZ75KS5K6cjIfO-0,1407
|
|
382
382
|
machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
|
|
383
383
|
machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
|
|
384
384
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
@@ -393,7 +393,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
393
393
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
394
394
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
395
395
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
396
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
396
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=Th2TzrKUtZ3-0Lfr132r1sJyQRzUbvBYRjcnYv1jbjQ,1706
|
|
397
397
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
398
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
399
399
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -411,7 +411,7 @@ machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,
|
|
|
411
411
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
412
412
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
413
413
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
414
|
-
machineconfig/utils/ssh.py,sha256=
|
|
414
|
+
machineconfig/utils/ssh.py,sha256=y9CoMY6eSVr2yQ_-LyKPIr3dM7fMolFiEs7uS2dITXk,39008
|
|
415
415
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
416
416
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
417
417
|
machineconfig/utils/upgrade_packages.py,sha256=i7K2bpmwdmag833t1ZmYvF45rO8GMkmJvLP3C1AyNEI,5694
|
|
@@ -440,8 +440,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
440
440
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
441
441
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
442
442
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
-
machineconfig-6.
|
|
444
|
-
machineconfig-6.
|
|
445
|
-
machineconfig-6.
|
|
446
|
-
machineconfig-6.
|
|
447
|
-
machineconfig-6.
|
|
443
|
+
machineconfig-6.98.dist-info/METADATA,sha256=MgmxxVHZ9I7nBMITUbIzGkfdI50yfWEtu7QNS_goTQY,2928
|
|
444
|
+
machineconfig-6.98.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
445
|
+
machineconfig-6.98.dist-info/entry_points.txt,sha256=uf_ZPJa02_y3Fw5Z7m22cq7PwxhYd1QV2FfPNZTl_dQ,519
|
|
446
|
+
machineconfig-6.98.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
447
|
+
machineconfig-6.98.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|