machineconfig 5.53__py3-none-any.whl → 5.54__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/devops.py +2 -0
- machineconfig/scripts/python/devops_helpers/cli_self.py +4 -2
- machineconfig/scripts/python/devops_navigator.py +0 -13
- machineconfig/scripts/python/sessions.py +8 -3
- machineconfig/setup_linux/web_shortcuts/interactive.sh +0 -3
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +0 -3
- {machineconfig-5.53.dist-info → machineconfig-5.54.dist-info}/METADATA +1 -1
- {machineconfig-5.53.dist-info → machineconfig-5.54.dist-info}/RECORD +11 -11
- {machineconfig-5.53.dist-info → machineconfig-5.54.dist-info}/entry_points.txt +0 -1
- {machineconfig-5.53.dist-info → machineconfig-5.54.dist-info}/WHEEL +0 -0
- {machineconfig-5.53.dist-info → machineconfig-5.54.dist-info}/top_level.txt +0 -0
|
@@ -15,6 +15,7 @@ def interactive():
|
|
|
15
15
|
"""🤖 INTERACTIVE configuration of machine."""
|
|
16
16
|
from machineconfig.scripts.python.interactive import main
|
|
17
17
|
main()
|
|
18
|
+
|
|
18
19
|
@cli_app.command()
|
|
19
20
|
def status():
|
|
20
21
|
"""📊 STATUS of machine, shell profile, apps, symlinks, dotfiles, etc."""
|
|
@@ -37,8 +38,9 @@ def install():
|
|
|
37
38
|
@cli_app.command(no_args_is_help=False)
|
|
38
39
|
def navigate():
|
|
39
40
|
"""📚 NAVIGATE command structure with TUI"""
|
|
40
|
-
from machineconfig.scripts.python.devops_navigator import
|
|
41
|
-
|
|
41
|
+
from machineconfig.scripts.python.devops_navigator import CommandNavigatorApp
|
|
42
|
+
app = CommandNavigatorApp()
|
|
43
|
+
app.run()
|
|
42
44
|
|
|
43
45
|
|
|
44
46
|
@cli_app.command(no_args_is_help=True)
|
|
@@ -894,16 +894,3 @@ class CommandNavigatorApp(App[None]):
|
|
|
894
894
|
self.notify(help_text, severity="information", timeout=10)
|
|
895
895
|
|
|
896
896
|
|
|
897
|
-
def main() -> None:
|
|
898
|
-
"""Run the command navigator TUI."""
|
|
899
|
-
app = CommandNavigatorApp()
|
|
900
|
-
app.run()
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
def main_from_parser() -> None:
|
|
904
|
-
"""Entry point for CLI."""
|
|
905
|
-
main()
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
if __name__ == "__main__":
|
|
909
|
-
main()
|
|
@@ -132,11 +132,16 @@ def run(ctx: typer.Context,
|
|
|
132
132
|
print(f"❌ Unsupported platform: {platform.system()}")
|
|
133
133
|
|
|
134
134
|
|
|
135
|
+
def kill_process():
|
|
136
|
+
from machineconfig.utils.procs import main
|
|
137
|
+
main()
|
|
138
|
+
|
|
135
139
|
def main_from_parser():
|
|
136
140
|
layouts_app = typer.Typer(help="Layouts management subcommands", no_args_is_help=True)
|
|
137
|
-
layouts_app.command("create-from-function", no_args_is_help=True)(create_from_function)
|
|
138
|
-
layouts_app.command("run", no_args_is_help=True)(run)
|
|
139
|
-
layouts_app.command("balance-load", no_args_is_help=True)(balance_load)
|
|
141
|
+
layouts_app.command("create-from-function", no_args_is_help=True, help="Create a layout from a function")(create_from_function)
|
|
142
|
+
layouts_app.command("run", no_args_is_help=True, help="Run the selected layout(s)")(run)
|
|
143
|
+
layouts_app.command("balance-load", no_args_is_help=True, help="Balance the load across sessions")(balance_load)
|
|
144
|
+
layouts_app.command("kill-process", no_args_is_help=True, help="Choose a process to kill")(kill_process)
|
|
140
145
|
layouts_app()
|
|
141
146
|
|
|
142
147
|
|
|
@@ -18,9 +18,6 @@ fire() {
|
|
|
18
18
|
ftpx() {
|
|
19
19
|
"$HOME/.local/bin/uv" run --python 3.14 --with machineconfig ftpx "$@"
|
|
20
20
|
}
|
|
21
|
-
kill_process() {
|
|
22
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with machineconfig kill_process "$@"
|
|
23
|
-
}
|
|
24
21
|
sessions() {
|
|
25
22
|
"$HOME/.local/bin/uv" run --python 3.14 --with machineconfig sessions "$@"
|
|
26
23
|
}
|
|
@@ -123,12 +123,12 @@ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
123
123
|
machineconfig/scripts/python/agents.py,sha256=mFVAnOdWVDoZTdRjLansS5-MGbCKkqDiGseRmXsU6B0,10478
|
|
124
124
|
machineconfig/scripts/python/cloud.py,sha256=kRH9Pt1yEkASFskIVEgRmkidrksdkgv2-bBmjLSxzSo,814
|
|
125
125
|
machineconfig/scripts/python/croshell.py,sha256=GfqDkXdHCGDLCoHIHyJV2sqMrqhCWaOWB2FXKy2T0cw,7184
|
|
126
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
127
|
-
machineconfig/scripts/python/devops_navigator.py,sha256=
|
|
126
|
+
machineconfig/scripts/python/devops.py,sha256=UERDj4hEDW2b6CW6w5BPpgZ6UyDCOvOcfjpW1YKP_QE,1481
|
|
127
|
+
machineconfig/scripts/python/devops_navigator.py,sha256=Z9ZhQKDEpgsp9__oMjP5CWDei4rQSO_wPY1LwR-UEaU,34867
|
|
128
128
|
machineconfig/scripts/python/fire_jobs.py,sha256=l2qByVK2rxWDUGFliU3HYwrtAI1XsUvOtcGLX4DUA5U,13689
|
|
129
129
|
machineconfig/scripts/python/ftpx.py,sha256=IoopsHQavcvLqVEDjaDnmfVJHtYgJaEX-B6r84VIO-Y,9445
|
|
130
130
|
machineconfig/scripts/python/interactive.py,sha256=IRveYja_9omEEhRyM1M6_SlljPY2Eo_GGoK9tTi1nsk,11778
|
|
131
|
-
machineconfig/scripts/python/sessions.py,sha256=
|
|
131
|
+
machineconfig/scripts/python/sessions.py,sha256=SYenzrW8Mhq9pvXmQ_9JHVvkqMl3dNinVCyEKJ4qXL0,9020
|
|
132
132
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
133
|
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
134
134
|
machineconfig/scripts/python/ai/initai.py,sha256=53MuUgk92avRPM-U3dy6o_pnEj2thlurC8U6dz41_W0,2089
|
|
@@ -175,7 +175,7 @@ machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4F
|
|
|
175
175
|
machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=f_2espL92n6SoNb5sFVMvrK7LA29HzfrFAKhxKaud1M,510
|
|
176
176
|
machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=4Ko4dA8YXqiRJvuOuwZv3YOvnSJQ7-A11ezJ8EztDis,2068
|
|
177
177
|
machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=GQJaCSnvNbIo_CmpYBDZOUyi0kPgn8VCr3a5Dnfy0_w,9681
|
|
178
|
-
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256
|
|
178
|
+
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=-cClZ0C4ojLangb39TBHBDYT0JkQP2B43fwubF_FI2s,2102
|
|
179
179
|
machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=285OzxttCx7YsrpOkaapMKP1eVGHmG5TkkaSQnY7i3c,3976
|
|
180
180
|
machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
181
181
|
machineconfig/scripts/python/devops_helpers/devops_add_identity.py,sha256=wvjNgqsLmqD2SxbNCW_usqfp0LI-TDvcJJKGOWt2oFw,3775
|
|
@@ -352,7 +352,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
|
|
|
352
352
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
353
353
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
354
354
|
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
355
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
355
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=_qk2RHrfM0-xA_HlnFgk8DtSNN-c3jA0m_UaMrffTYg,824
|
|
356
356
|
machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
|
|
357
357
|
machineconfig/setup_windows/apps.ps1,sha256=G5GqZ9G0aiQr_A-HaahtRdzpaTTdW6n3DRKMZWDTSPc,11214
|
|
358
358
|
machineconfig/setup_windows/uv.ps1,sha256=mzkFJUQ57dukVQtY7WqAQIVUDMcixnkir8aNM_TYrl4,350
|
|
@@ -362,7 +362,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
362
362
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
363
363
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
364
364
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
365
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
365
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=syyqtK1OiqOrhgNgvR8FlLVA05-iypm8v7uxbaV3X2k,863
|
|
366
366
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
368
368
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -403,8 +403,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=Xbi59rU35AzR
|
|
|
403
403
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
404
404
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
405
405
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
406
|
-
machineconfig-5.
|
|
407
|
-
machineconfig-5.
|
|
408
|
-
machineconfig-5.
|
|
409
|
-
machineconfig-5.
|
|
410
|
-
machineconfig-5.
|
|
406
|
+
machineconfig-5.54.dist-info/METADATA,sha256=YLYI7bE-7L7sy5caM0DO-modJax_-LTruaGDtxZMNao,3103
|
|
407
|
+
machineconfig-5.54.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
408
|
+
machineconfig-5.54.dist-info/entry_points.txt,sha256=0zMBUFkDgYw5mB3ASxpONEjTFMAXAkTFHHfAr5c1SKg,423
|
|
409
|
+
machineconfig-5.54.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
410
|
+
machineconfig-5.54.dist-info/RECORD,,
|
|
@@ -5,5 +5,4 @@ croshell = machineconfig.scripts.python.croshell:arg_parser
|
|
|
5
5
|
devops = machineconfig.scripts.python.devops:app
|
|
6
6
|
fire = machineconfig.scripts.python.fire_jobs:main_from_parser
|
|
7
7
|
ftpx = machineconfig.scripts.python.ftpx:main_from_parser
|
|
8
|
-
kill_process = machineconfig.utils.procs:main
|
|
9
8
|
sessions = machineconfig.scripts.python.sessions:main_from_parser
|
|
File without changes
|
|
File without changes
|