machineconfig 2.1__py3-none-any.whl → 2.3__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/enhanced_command_runner.py +0 -2
- machineconfig/cluster/sessions_managers/layout_types.py +29 -0
- machineconfig/cluster/sessions_managers/wt_local.py +68 -62
- machineconfig/cluster/sessions_managers/wt_local_manager.py +51 -22
- machineconfig/cluster/sessions_managers/wt_remote.py +30 -108
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +14 -11
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +33 -37
- machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py +22 -17
- machineconfig/cluster/sessions_managers/wt_utils/session_manager.py +59 -10
- machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py +16 -14
- machineconfig/cluster/sessions_managers/zellij_local.py +75 -57
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +51 -23
- machineconfig/cluster/sessions_managers/zellij_remote.py +47 -27
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +13 -12
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +14 -10
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +31 -15
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +47 -21
- machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py +1 -1
- machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +8 -7
- machineconfig/cluster/templates/utils.py +0 -35
- machineconfig/jobs/python/check_installations.py +1 -1
- machineconfig/jobs/python_custom_installers/dev/code.py +0 -13
- machineconfig/jobs/python_generic_installers/config.json +1 -1
- machineconfig/profile/create.py +13 -4
- machineconfig/profile/create_hardlinks.py +3 -1
- machineconfig/profile/shell.py +8 -7
- machineconfig/scripts/__init__.py +0 -2
- machineconfig/scripts/linux/devops +6 -4
- machineconfig/scripts/python/ai/generate_files.py +14 -15
- machineconfig/scripts/python/ai/mcinit.py +8 -5
- machineconfig/scripts/python/archive/tmate_conn.py +5 -5
- machineconfig/scripts/python/archive/tmate_start.py +7 -7
- machineconfig/scripts/python/choose_wezterm_theme.py +35 -32
- machineconfig/scripts/python/cloud_copy.py +22 -13
- machineconfig/scripts/python/cloud_mount.py +35 -23
- machineconfig/scripts/python/cloud_repo_sync.py +38 -25
- machineconfig/scripts/python/cloud_sync.py +4 -4
- machineconfig/scripts/python/croshell.py +37 -28
- machineconfig/scripts/python/devops.py +46 -27
- machineconfig/scripts/python/devops_add_identity.py +15 -25
- machineconfig/scripts/python/devops_add_ssh_key.py +7 -7
- machineconfig/scripts/python/devops_backup_retrieve.py +17 -15
- machineconfig/scripts/python/devops_devapps_install.py +26 -20
- machineconfig/scripts/python/devops_update_repos.py +142 -57
- machineconfig/scripts/python/dotfile.py +16 -14
- machineconfig/scripts/python/fire_agents.py +30 -23
- machineconfig/scripts/python/fire_jobs.py +86 -98
- machineconfig/scripts/python/fire_jobs_args_helper.py +84 -0
- machineconfig/scripts/python/fire_jobs_layout_helper.py +66 -0
- machineconfig/scripts/python/ftpx.py +24 -14
- machineconfig/scripts/python/get_zellij_cmd.py +8 -7
- machineconfig/scripts/python/helpers/cloud_helpers.py +33 -28
- machineconfig/scripts/python/helpers/helpers2.py +25 -14
- machineconfig/scripts/python/helpers/helpers4.py +44 -31
- machineconfig/scripts/python/helpers/helpers5.py +1 -1
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +31 -9
- machineconfig/scripts/python/mount_nfs.py +8 -15
- machineconfig/scripts/python/mount_nw_drive.py +10 -5
- machineconfig/scripts/python/mount_ssh.py +8 -6
- machineconfig/scripts/python/repos.py +215 -57
- machineconfig/scripts/python/snapshot.py +0 -1
- machineconfig/scripts/python/start_slidev.py +10 -5
- machineconfig/scripts/python/start_terminals.py +22 -16
- machineconfig/scripts/python/viewer_template.py +0 -1
- machineconfig/scripts/python/wifi_conn.py +49 -76
- machineconfig/scripts/python/wsl_windows_transfer.py +8 -6
- machineconfig/settings/lf/linux/lfrc +1 -0
- machineconfig/setup_linux/web_shortcuts/croshell.sh +5 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
- machineconfig/setup_linux/web_shortcuts/ssh.sh +0 -4
- machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py +3 -12
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +1 -1
- machineconfig/utils/code.py +2 -3
- machineconfig/utils/installer.py +2 -2
- machineconfig/utils/installer_utils/installer_abc.py +2 -4
- machineconfig/utils/installer_utils/installer_class.py +6 -4
- machineconfig/utils/links.py +103 -33
- machineconfig/utils/notifications.py +52 -38
- machineconfig/utils/options.py +14 -21
- machineconfig/utils/path.py +12 -12
- machineconfig/utils/path_reduced.py +239 -200
- machineconfig/utils/procs.py +1 -1
- machineconfig/utils/source_of_truth.py +27 -0
- machineconfig/utils/ssh.py +9 -19
- machineconfig/utils/terminal.py +4 -2
- machineconfig/utils/upgrade_packages.py +91 -0
- machineconfig/utils/utils2.py +1 -2
- machineconfig/utils/utils5.py +23 -11
- machineconfig/utils/ve.py +4 -1
- {machineconfig-2.1.dist-info → machineconfig-2.3.dist-info}/METADATA +13 -13
- {machineconfig-2.1.dist-info → machineconfig-2.3.dist-info}/RECORD +105 -121
- machineconfig-2.3.dist-info/entry_points.txt +2 -0
- machineconfig/cluster/sessions_managers/archive/create_zellij_template.py +0 -59
- machineconfig/cluster/sessions_managers/archive/session_managers.py +0 -183
- machineconfig/cluster/sessions_managers/demo_rich_zellij.py +0 -0
- machineconfig/jobs/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/croshell.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-313.pyc +0 -0
- machineconfig/scripts/python/__pycache__/fire_jobs.cpython-313.pyc +0 -0
- machineconfig/scripts/python/ai/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/python/ai/__pycache__/generate_files.cpython-313.pyc +0 -0
- machineconfig/scripts/python/ai/__pycache__/mcinit.cpython-313.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc +0 -0
- machineconfig/setup_linux/web_shortcuts/all.sh +0 -48
- machineconfig/setup_linux/web_shortcuts/update_system.sh +0 -48
- machineconfig/utils/utils.py +0 -97
- /machineconfig/cluster/{cloud_manager.py → remote/cloud_manager.py} +0 -0
- /machineconfig/cluster/{data_transfer.py → remote/data_transfer.py} +0 -0
- /machineconfig/cluster/{distribute.py → remote/distribute.py} +0 -0
- /machineconfig/cluster/{file_manager.py → remote/file_manager.py} +0 -0
- /machineconfig/cluster/{job_params.py → remote/job_params.py} +0 -0
- /machineconfig/cluster/{loader_runner.py → remote/loader_runner.py} +0 -0
- /machineconfig/cluster/{remote_machine.py → remote/remote_machine.py} +0 -0
- /machineconfig/cluster/{script_execution.py → remote/script_execution.py} +0 -0
- /machineconfig/cluster/{script_notify_upon_completion.py → remote/script_notify_upon_completion.py} +0 -0
- /machineconfig/{cluster/sessions_managers/archive/__init__.py → scripts/python/fire_jobs_streamlit_helper.py} +0 -0
- /machineconfig/setup_linux/web_shortcuts/{tmp.sh → android.sh} +0 -0
- {machineconfig-2.1.dist-info → machineconfig-2.3.dist-info}/WHEEL +0 -0
- {machineconfig-2.1.dist-info → machineconfig-2.3.dist-info}/top_level.txt +0 -0
|
@@ -1,40 +1,37 @@
|
|
|
1
1
|
machineconfig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
machineconfig/logger.py,sha256=XLckvZ8cPDpC5v75ESP3YNTputIrDYuvoYisj0YZtGw,1415
|
|
3
3
|
machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
machineconfig/cluster/cloud_manager.py,sha256=DCkA0XCOrhdBzPJ8M0_V1TuY8Mj7MW82iHr9NN3luxU,26037
|
|
5
|
-
machineconfig/cluster/data_transfer.py,sha256=1QxIUetqlhmyl67icBx0nFZEZ7Z2DRjygXofKLMOz-0,4385
|
|
6
|
-
machineconfig/cluster/distribute.py,sha256=TWnOcTcItu3QQTDP3cNsUprnteYYt7WM7oHpNuoPSFo,15273
|
|
7
|
-
machineconfig/cluster/file_manager.py,sha256=w1edpBcH8mHDEzRF5tqQDu5MJYsySIQrMCbgN23A4zM,13966
|
|
8
|
-
machineconfig/cluster/job_params.py,sha256=_t5QKqRHReShaBlJfSgVS5E3_oHYcRUIRO_Uz1mbA-k,7698
|
|
9
|
-
machineconfig/cluster/loader_runner.py,sha256=Ia62ALepM3TP7kHaymfp0jEMuHJ0HjF31VbNJOCYYtM,7061
|
|
10
|
-
machineconfig/cluster/remote_machine.py,sha256=cKqrB9HpSt8bTttQ6UixlOvUw4Wf2ouFrFTeqTA3No0,19749
|
|
11
|
-
machineconfig/cluster/script_execution.py,sha256=4U70FDtjOh6A6C2Ei-Xh90S888q64VhRPbExoEbdepk,9980
|
|
12
|
-
machineconfig/cluster/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
|
|
4
|
+
machineconfig/cluster/remote/cloud_manager.py,sha256=DCkA0XCOrhdBzPJ8M0_V1TuY8Mj7MW82iHr9NN3luxU,26037
|
|
5
|
+
machineconfig/cluster/remote/data_transfer.py,sha256=1QxIUetqlhmyl67icBx0nFZEZ7Z2DRjygXofKLMOz-0,4385
|
|
6
|
+
machineconfig/cluster/remote/distribute.py,sha256=TWnOcTcItu3QQTDP3cNsUprnteYYt7WM7oHpNuoPSFo,15273
|
|
7
|
+
machineconfig/cluster/remote/file_manager.py,sha256=w1edpBcH8mHDEzRF5tqQDu5MJYsySIQrMCbgN23A4zM,13966
|
|
8
|
+
machineconfig/cluster/remote/job_params.py,sha256=_t5QKqRHReShaBlJfSgVS5E3_oHYcRUIRO_Uz1mbA-k,7698
|
|
9
|
+
machineconfig/cluster/remote/loader_runner.py,sha256=Ia62ALepM3TP7kHaymfp0jEMuHJ0HjF31VbNJOCYYtM,7061
|
|
10
|
+
machineconfig/cluster/remote/remote_machine.py,sha256=cKqrB9HpSt8bTttQ6UixlOvUw4Wf2ouFrFTeqTA3No0,19749
|
|
11
|
+
machineconfig/cluster/remote/script_execution.py,sha256=4U70FDtjOh6A6C2Ei-Xh90S888q64VhRPbExoEbdepk,9980
|
|
12
|
+
machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
|
|
13
13
|
machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
machineconfig/cluster/sessions_managers/
|
|
15
|
-
machineconfig/cluster/sessions_managers/
|
|
16
|
-
machineconfig/cluster/sessions_managers/wt_local.py,sha256=
|
|
17
|
-
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256
|
|
18
|
-
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=
|
|
19
|
-
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=
|
|
20
|
-
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=
|
|
21
|
-
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=
|
|
22
|
-
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=
|
|
23
|
-
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=
|
|
24
|
-
machineconfig/cluster/sessions_managers/
|
|
25
|
-
machineconfig/cluster/sessions_managers/
|
|
26
|
-
machineconfig/cluster/sessions_managers/archive/session_managers.py,sha256=dT3hSJS4-atl-x3r58u3gn395vukzZasc97-t5NSQEg,10279
|
|
27
|
-
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=dfPgDBKl4nDW69R_wemwZQhkt6-MELv7IwdDfzpxxMk,7677
|
|
28
|
-
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=5cb3Pog5IlELdxAZPBchvh9sBLMdTew-YMUkBvIe1m8,14931
|
|
14
|
+
machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=H2DZ3we9zx3Px0vCvFRkWfiA44um7ReouKbgylL873w,5317
|
|
15
|
+
machineconfig/cluster/sessions_managers/layout_types.py,sha256=OmiOX9xtakPz4l6IobWnpFHpbn95fitEE9q0YL1WxjQ,617
|
|
16
|
+
machineconfig/cluster/sessions_managers/wt_local.py,sha256=gp0sGSo0-AXJNt8HnaTd8L7HcLHi-Hg1BOWAAgirD8w,18237
|
|
17
|
+
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=g0rQTW5EVF7vPMpFg81U5XvjWM-u0dnNGiMOWlUClfw,24196
|
|
18
|
+
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=WrhB9NjHKYFMmKdN-vjFU3TnlTujtpuMjylwryIz4H4,8759
|
|
19
|
+
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=1PTlYIa3TrHgGIK1yHjFzlpkyDQQ8blj5x5BMT3BiQ0,19762
|
|
20
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=N6c7oouu5vi00xwAk6xUkf0pwG5YfxmPqXZIVOtuk0g,17085
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=6w6jzlX5i353-MIZrdpj2s2WUhwmOfCHmJ6fO67-qoQ,24237
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=aLpjZe7bqENccvbArq5iswq6eMUMsOP2HX7F1AWHHkI,11043
|
|
23
|
+
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=w5bfTqRrtmvjmArdyN2Kywaffu6iR-VHg1UgdCrMjsc,8120
|
|
24
|
+
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=N-CwiyARLQ7nPhvpKSi2LAWZ8YH9S9YWKwBtVGPYkkI,7449
|
|
25
|
+
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=WIerUrzC_ft5JHyFWuWX6zvPEtzihsmsci7RTCoQJhc,15200
|
|
29
26
|
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
|
|
30
|
-
machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256
|
|
31
|
-
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=
|
|
32
|
-
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=
|
|
33
|
-
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=
|
|
34
|
-
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=
|
|
27
|
+
machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcYwPqwdNRnLU9QGKxRR9i6ewY02Id-tgnODB_OzQ,12552
|
|
28
|
+
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=YPMMt101peN4SAY6fs5MFJaQyknmbQzhy3wiUySAZj4,9503
|
|
29
|
+
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=z_wmo09KqCJBtJjPsvkX1WyoEVqfNzJ7vCbJsxJotEY,2856
|
|
30
|
+
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=5CE7BfHYzqHFfe8XX18i-V-Tjv_D6LDR3h3buvzNGds,5267
|
|
31
|
+
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=ZVvTaniB23jKkZB0zchaXGtt9Sy02AWCFVGICowya5U,13302
|
|
35
32
|
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=Nkd5QFw5yG2qD2-WLioqi-e3WKuOqGA8C35epGmB49g,2602
|
|
36
|
-
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=
|
|
37
|
-
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=
|
|
33
|
+
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=U_Gvhf-uPwY8jFoxg4aOWsIQbYjd8ueRsfPim1Wv0Pc,4936
|
|
34
|
+
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=plodEzMGSTP_IbW6lPcUbTM-0Tyux-1CPmX7mSpPf4I,3762
|
|
38
35
|
machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
36
|
machineconfig/cluster/templates/cli_click.py,sha256=7v6w-dj1whBd9ydKeOAQFuD5kF7_6ivyPAqNl8BEvc0,5084
|
|
40
37
|
machineconfig/cluster/templates/cli_gooey.py,sha256=KUiZDuqmHDkGS7NqwBTzZUbxysgasq-M0DWmwd44vOE,5534
|
|
@@ -42,14 +39,13 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
42
39
|
machineconfig/cluster/templates/run_cloud.py,sha256=0o4-v5yFEqvlHzoKDXljRCR5ikx_r5w4oYE5OCtVIK8,2378
|
|
43
40
|
machineconfig/cluster/templates/run_cluster.py,sha256=ZFNl4EDybicedWKX5qBwSSeKKfdV2lQFD_1kcAyjHYM,4691
|
|
44
41
|
machineconfig/cluster/templates/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdRdzcjlpP9gcLdc,3247
|
|
45
|
-
machineconfig/cluster/templates/utils.py,sha256=
|
|
42
|
+
machineconfig/cluster/templates/utils.py,sha256=hrtaDkGxl9p9SAdPz46ppTtbrIW2OonsO42DEA-qoS8,1646
|
|
46
43
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
machineconfig/jobs/__pycache__/__init__.cpython-313.pyc,sha256=XCpGeTOsCIrHvdkU0hZ-ISJF86afNZ4mr5dY9n0K8Gg,161
|
|
48
44
|
machineconfig/jobs/linux/msc/cli_agents.sh,sha256=X94rDsNHokIWQyHUQu0n2d0AbR39ak-nw4PbrUsJr7w,377
|
|
49
45
|
machineconfig/jobs/linux/msc/lid.sh,sha256=09LeoSaXCGjCn7YxPcIFQpHroYdglJlEtFU2agarh3I,1302
|
|
50
46
|
machineconfig/jobs/linux/msc/network.sh,sha256=dmISsh0hioDheinqee3qHfo2k7ClFx6G_GfGDxuflmc,1796
|
|
51
47
|
machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
machineconfig/jobs/python/check_installations.py,sha256=
|
|
48
|
+
machineconfig/jobs/python/check_installations.py,sha256=HOGlZOCtpZyORNEbqDdsnSNWyFjXIrdXQhTwls9vsX8,11151
|
|
53
49
|
machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
|
|
54
50
|
machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
|
|
55
51
|
machineconfig/jobs/python/python_ve_symlink.py,sha256=quma-fmKIeNbScaQ3HdZV50QCcGt4MF6HjBfsHtxdv4,852
|
|
@@ -63,13 +59,12 @@ machineconfig/jobs/python_custom_installers/docker.py,sha256=YqUVDtTbcTLTImyypJc
|
|
|
63
59
|
machineconfig/jobs/python_custom_installers/gh.py,sha256=Z5MP0fdIdTuTXibRq6FmcyiQJ2I-1vMEPOKNB79JF0M,2507
|
|
64
60
|
machineconfig/jobs/python_custom_installers/hx.py,sha256=0rdkIyj-kiT-GTF0nMiBRqQ3_RafksgqgpgKXyUScc8,5551
|
|
65
61
|
machineconfig/jobs/python_custom_installers/warp-cli.py,sha256=IGuMJYOKPZYDqQNUro9thF3fklXsjpIoHPQykmWmI9Y,1970
|
|
66
|
-
machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-313.pyc,sha256=bWIqUPLAlCi-Deqj0QhXVabsxdOSFqiZGDHB6rHWQSE,186
|
|
67
62
|
machineconfig/jobs/python_custom_installers/archive/ngrok.py,sha256=DtMXSoRgcS-DuelTwqUiP0zaC0eA7vsToRRo0CMmc4U,1696
|
|
68
63
|
machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=_yyUIn9ySM5tngdRcauJLZtfIR2tMCSBDZUVBYgKP70,761
|
|
69
64
|
machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=JkFJk9GpYSshtHs8tF--qQd0pP7bly7J8wYag-XT-v0,1878
|
|
70
65
|
machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=PlwvBzphAFzRNEc9hQj_tqw9RiTRoTuWAgd0b0Lh-EQ,2001
|
|
71
66
|
machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=_O3dRHOSqt0fOy6mfvpBV9McCpG6PHt1jf-u-Lk2l6M,1389
|
|
72
|
-
machineconfig/jobs/python_custom_installers/dev/code.py,sha256=
|
|
67
|
+
machineconfig/jobs/python_custom_installers/dev/code.py,sha256=hmOsvy9vu0CJlQ8sboeflr7ZzYVdNsZ6qG5SUX-FLR4,1689
|
|
73
68
|
machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=FfBMjN5LsU0e3sQHB3DJaHA4k7PeQ52LFHKfAk7we00,4426
|
|
74
69
|
machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=YgHZ9vH7O7gWROrg0HVxx5-fvxYb5UQ118YaD61JTM4,2317
|
|
75
70
|
machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=ay1VYEFWPFvfFoi6LnRZwiLTZrClRZpl9n5ZsOF4rXw,2457
|
|
@@ -92,13 +87,11 @@ machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh,sha256=8S0nZ
|
|
|
92
87
|
machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh,sha256=PVNLeYWdh3XEFllCVZDYIHBI42btjGlH5jbyXjJGz-Y,3033
|
|
93
88
|
machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh,sha256=m697rRoIIVk-f8JdI1YQmphk-JWpMc5IYbD5YaQ3SeQ,1874
|
|
94
89
|
machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
machineconfig/jobs/python_generic_installers/config.json,sha256=
|
|
96
|
-
machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc,sha256=knHc0czISCOGlMdoXh0vJGcyr0TTsRAzNIk8iYo26VM,187
|
|
90
|
+
machineconfig/jobs/python_generic_installers/config.json,sha256=dkrLpAs-xJ1gvpFd42yuWGoRkkE1MG-8fAhrMNrxt34,20678
|
|
97
91
|
machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO1-5lxtbVGuXXoTTuvWjs54xlHHIAIIZYDAy8FSA,823
|
|
98
92
|
machineconfig/jobs/python_generic_installers/dev/config.json,sha256=dKzCQNuQigcuTGw1uvhHkhG-kvp2UPHpv0X6XOTYtBE,29760
|
|
99
93
|
machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
94
|
machineconfig/jobs/python_linux_installers/config.json,sha256=rn2mss51IgiAKKmhPdQ0nmTC_aPFm-6rIfHdCBlEFBE,5324
|
|
101
|
-
machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc,sha256=VPZBY1nwCPNRdlftZPBK6pJb-b44HTw7qG6ce-AvLuM,185
|
|
102
95
|
machineconfig/jobs/python_linux_installers/archive/config.json,sha256=haf6H05bW2AC-CptfZBeNeMoQK60w8iWmCZ2aDiL4O0,302
|
|
103
96
|
machineconfig/jobs/python_linux_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
97
|
machineconfig/jobs/python_linux_installers/dev/config.json,sha256=IxlCuMfWX-SWCnQxQN5JBlxDIAHPvZRlSFbszqERj2w,9951
|
|
@@ -116,16 +109,15 @@ machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYi
|
|
|
116
109
|
machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
110
|
machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
111
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
-
machineconfig/profile/create.py,sha256=
|
|
120
|
-
machineconfig/profile/create_hardlinks.py,sha256=
|
|
121
|
-
machineconfig/profile/shell.py,sha256=
|
|
112
|
+
machineconfig/profile/create.py,sha256=Xur6u5xc2YkHGILnJiIOsAqIhTPy_0SIW1HVWRKZyMI,6432
|
|
113
|
+
machineconfig/profile/create_hardlinks.py,sha256=5rDftMifdwSpQ-kEgR9LUSCwGVlAWCrwF6Ko10hxUxo,5652
|
|
114
|
+
machineconfig/profile/shell.py,sha256=haNn70imxRIMxOIZ8N6jU26-OepqS5HkCtO0vAP-Zvs,10958
|
|
122
115
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
123
116
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
124
117
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
125
118
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
126
119
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
127
|
-
machineconfig/scripts/__init__.py,sha256=
|
|
128
|
-
machineconfig/scripts/__pycache__/__init__.cpython-313.pyc,sha256=81r8paKCdivOaCaQwPtHlC0Jb5Fuq7vYx78AYUSgKHs,246
|
|
120
|
+
machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
|
|
129
121
|
machineconfig/scripts/cloud/init.sh,sha256=yNsseCLMceO50Eg72ra6_NIJCxkGZmpmos1EXe-mvzY,4649
|
|
130
122
|
machineconfig/scripts/linux/checkout_versions,sha256=0W-Px2qAiswg8IElABV6awE-EHPzXOFcCxO1SBd8Rj4,187
|
|
131
123
|
machineconfig/scripts/linux/choose_wezterm_theme,sha256=Pn679w5en-_9NWD7PnGwB3EwyWA6cm28G6mGdrjNACM,233
|
|
@@ -135,7 +127,7 @@ machineconfig/scripts/linux/cloud_mount,sha256=gDp1OMnzJMoyrlpdSYytPz5kK8C27ummm
|
|
|
135
127
|
machineconfig/scripts/linux/cloud_repo_sync,sha256=3Aqj8OUHlXAcch14q-3dYk0YxPK5VfCqlukqBqtS9rQ,375
|
|
136
128
|
machineconfig/scripts/linux/cloud_sync,sha256=XZTIRkvM5E8HFoX0mXCXQCpsgIlDVHJMFgshFq9zegE,523
|
|
137
129
|
machineconfig/scripts/linux/croshell,sha256=WsRJE7k2AKbiXTKmk81ZgllwgCAvEQD_I62cDkx6mhc,761
|
|
138
|
-
machineconfig/scripts/linux/devops,sha256=
|
|
130
|
+
machineconfig/scripts/linux/devops,sha256=FD-VjArFRlzqmEk8DMcYeH-Yq92F6dDoLSDL6RYqNps,671
|
|
139
131
|
machineconfig/scripts/linux/fire,sha256=XSP5lmcDHWmWO8E62ztgsCPopJA1zOy9N_6zgMfWP84,849
|
|
140
132
|
machineconfig/scripts/linux/fire_agents,sha256=qezkGuG8otoZbE4cwuEcqW5CagddufzadWKqbRHYchI,830
|
|
141
133
|
machineconfig/scripts/linux/ftpx,sha256=hF8WlySKa6r9O5pOQp6HJPU1_sbt8pnoSJnD_4K4HnQ,176
|
|
@@ -170,51 +162,45 @@ machineconfig/scripts/linux/archive/tmate_conn,sha256=mDymJCJ-scdYhoG06EAMncjoSA
|
|
|
170
162
|
machineconfig/scripts/linux/archive/tmate_start,sha256=eyaknKoVb-XtJnZcfB0CCxm9z9zkD0dsuIDeFLKbIO8,452
|
|
171
163
|
machineconfig/scripts/linux/archive/transfer_wsl_win,sha256=KzSaO4CWbuM6UNoNasdJhaWWjRhN0lWIiJrBZMmONz0,137
|
|
172
164
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=
|
|
174
|
-
machineconfig/scripts/python/cloud_copy.py,sha256=
|
|
165
|
+
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=xCDLLJKlYNOQ0tOZ4cgkBN5hTPGn-0llkyupmoN2rb8,3320
|
|
166
|
+
machineconfig/scripts/python/cloud_copy.py,sha256=NjUOKztK5zHzK9krTPgyZCCVohooZNF48EGJ96kfIVw,8547
|
|
175
167
|
machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
|
|
176
|
-
machineconfig/scripts/python/cloud_mount.py,sha256=
|
|
177
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256=
|
|
178
|
-
machineconfig/scripts/python/cloud_sync.py,sha256=
|
|
179
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
180
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
181
|
-
machineconfig/scripts/python/devops_add_identity.py,sha256=
|
|
182
|
-
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=
|
|
183
|
-
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=
|
|
184
|
-
machineconfig/scripts/python/devops_devapps_install.py,sha256=
|
|
185
|
-
machineconfig/scripts/python/devops_update_repos.py,sha256=
|
|
186
|
-
machineconfig/scripts/python/dotfile.py,sha256=
|
|
187
|
-
machineconfig/scripts/python/fire_agents.py,sha256=
|
|
188
|
-
machineconfig/scripts/python/fire_jobs.py,sha256=
|
|
189
|
-
machineconfig/scripts/python/
|
|
190
|
-
machineconfig/scripts/python/
|
|
168
|
+
machineconfig/scripts/python/cloud_mount.py,sha256=6iaEidaHj3CMgH6udCd1I04BdUtSsyEO3n5A1OAKpjI,6790
|
|
169
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=HUaFhSl9f7y2BJgBfXWKnb-xymsi0lB1hqRl8xU_H-E,9861
|
|
170
|
+
machineconfig/scripts/python/cloud_sync.py,sha256=grlWuY7E0NadylxUU14YAcym6vICYvoI9PyF5a4G4_c,3846
|
|
171
|
+
machineconfig/scripts/python/croshell.py,sha256=1UOOk1esyP-YOIZuhe_d22I69So_fZIZsBpNfQnGIIQ,9551
|
|
172
|
+
machineconfig/scripts/python/devops.py,sha256=5pZ1JzRwcY3ZPruHUFScR7WHPJjFw8jjbNbi3d6DrfE,8389
|
|
173
|
+
machineconfig/scripts/python/devops_add_identity.py,sha256=gYcRzUZGr-truU2l5iPLEiWSZpKLzz5a6v5VPrEMVwg,3869
|
|
174
|
+
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=D66vyl4NnvwL306yJXSFI4ht0sz-m9yczuBf82VCodo,6760
|
|
175
|
+
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=noN0pgZkj7wdQSZpyCOKYVV_npcKn1CkXtqt1l2QO4w,6201
|
|
176
|
+
machineconfig/scripts/python/devops_devapps_install.py,sha256=HrKa1mSwMXtdFPOy4LCHUAY6LvrlHFtDW_kCrIYL90w,8160
|
|
177
|
+
machineconfig/scripts/python/devops_update_repos.py,sha256=q8mCIqCYsJdGCf4sBUeVe6hJIQX4pGLYPAF3rDpTQZI,11221
|
|
178
|
+
machineconfig/scripts/python/dotfile.py,sha256=miL8mQH2AqPdnHSz0Cxa7qQavaOmzTD9DAF66H2PRzA,2259
|
|
179
|
+
machineconfig/scripts/python/fire_agents.py,sha256=VhmB_onoLYRAqqaEUV2UJytxQQBb_0d0j6KCTkUMW7c,9358
|
|
180
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=L7C-FUhEUcPXYh1ov2qv0PwEIksEDBUrIj8Q20RHURg,16545
|
|
181
|
+
machineconfig/scripts/python/fire_jobs_args_helper.py,sha256=TfCKSExGZhYrZ6JmXIHsd0wpNSWcKeLeRh9gFR3FG-M,4330
|
|
182
|
+
machineconfig/scripts/python/fire_jobs_layout_helper.py,sha256=Ph3nc6_-Q80xJNqTspWUN1SVxzA6afGHDnWUlgQykZw,3226
|
|
183
|
+
machineconfig/scripts/python/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
|
+
machineconfig/scripts/python/ftpx.py,sha256=WQ-6Z043q3yQOgWQV9g-R5QjouilWC0grOc6hydvbvg,9914
|
|
185
|
+
machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
|
|
191
186
|
machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
|
|
192
|
-
machineconfig/scripts/python/mount_nfs.py,sha256=
|
|
193
|
-
machineconfig/scripts/python/mount_nw_drive.py,sha256=
|
|
194
|
-
machineconfig/scripts/python/mount_ssh.py,sha256=
|
|
187
|
+
machineconfig/scripts/python/mount_nfs.py,sha256=KleZz9Np1csQLNZ4_gdIpTwYQqIkiarjrXJLzB0xCvw,3178
|
|
188
|
+
machineconfig/scripts/python/mount_nw_drive.py,sha256=q7URYlipteXdhFKBaqS-PB7kAJq4oMWsvsu47rQ_xdI,1546
|
|
189
|
+
machineconfig/scripts/python/mount_ssh.py,sha256=NObjRZZXb7Jw-ytM66mpFx9B0AsvW4u_n3y_KtETo-c,2222
|
|
195
190
|
machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
|
|
196
191
|
machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
197
|
-
machineconfig/scripts/python/repos.py,sha256=
|
|
192
|
+
machineconfig/scripts/python/repos.py,sha256=rlUff2c_hyJZ-6WXQ6goKhOt4n7k0pP_Gq0V8Z6IVIg,18076
|
|
198
193
|
machineconfig/scripts/python/scheduler.py,sha256=7IBjMMOHMkklcWzYwz93EH9XzbJ5uPqU03bJ_lYbRNo,3083
|
|
199
|
-
machineconfig/scripts/python/snapshot.py,sha256=
|
|
200
|
-
machineconfig/scripts/python/start_slidev.py,sha256=
|
|
201
|
-
machineconfig/scripts/python/start_terminals.py,sha256=
|
|
194
|
+
machineconfig/scripts/python/snapshot.py,sha256=aDvKeoniZaeTSNv9zWBUajaj2yagAxVdfuvO1_tgq5Y,1026
|
|
195
|
+
machineconfig/scripts/python/start_slidev.py,sha256=pwqTTmfGSV26NQ9yyhMnsgkPka6Z6V88yJuWGzLwRu0,4458
|
|
196
|
+
machineconfig/scripts/python/start_terminals.py,sha256=r5NVU00ghkNsuifp2eU8Z-z_0WJ5NhZk8qjuPoY5PUM,6206
|
|
202
197
|
machineconfig/scripts/python/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
203
|
-
machineconfig/scripts/python/viewer_template.py,sha256=
|
|
204
|
-
machineconfig/scripts/python/wifi_conn.py,sha256=
|
|
205
|
-
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=
|
|
206
|
-
machineconfig/scripts/python/__pycache__/__init__.cpython-313.pyc,sha256=IppPGJ6Wk5Ma5oPWfJpN5QDW6-NvCk29la5JGbgAJ6E,171
|
|
207
|
-
machineconfig/scripts/python/__pycache__/croshell.cpython-313.pyc,sha256=QUNpI_DiCOfJsTJT4NQUVUK0yICGYHynaywp9otqblA,10060
|
|
208
|
-
machineconfig/scripts/python/__pycache__/devops.cpython-313.pyc,sha256=B0L7yb9FGPDPzSbG3SWFny0MC-Xt4_WAPJm5CqdyMNs,11399
|
|
209
|
-
machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-313.pyc,sha256=W0ng4bVHVdDIMoTAqQhavXBeW_0bRGIG0DTIV0yudus,8588
|
|
210
|
-
machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-313.pyc,sha256=wVe7KZd1RXv1FK9KHEVNCf7t1MtL6QFSzkjhC-s7B_c,8829
|
|
211
|
-
machineconfig/scripts/python/__pycache__/fire_jobs.cpython-313.pyc,sha256=7JwpSmdlC98ZtOb8dbT9tpMDHwEhK_4kk1E20rrCpJg,20646
|
|
198
|
+
machineconfig/scripts/python/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
199
|
+
machineconfig/scripts/python/wifi_conn.py,sha256=2FJ4srVthGHsy3KSXpvndAyVkNO8n_XeSgVRnd_PjZA,15576
|
|
200
|
+
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=RfSf5SJejnqrg36YfXSwu52ceEW77uNP4WC6QQUyRTA,3650
|
|
212
201
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
-
machineconfig/scripts/python/ai/generate_files.py,sha256=
|
|
214
|
-
machineconfig/scripts/python/ai/mcinit.py,sha256=
|
|
215
|
-
machineconfig/scripts/python/ai/__pycache__/__init__.cpython-313.pyc,sha256=E66w-W7QR1OnEPhvZJNhpI5v3DUZsB_YvUNkD7o-I_k,174
|
|
216
|
-
machineconfig/scripts/python/ai/__pycache__/generate_files.cpython-313.pyc,sha256=eDxFEvTU_3_v-OGT5XIKVIoctO2FLooayaOuLfbpw24,3923
|
|
217
|
-
machineconfig/scripts/python/ai/__pycache__/mcinit.cpython-313.pyc,sha256=9lVKqvAbpArJnbTFt3Q-pfozXZ9SPp5hE4E_wN7ClKA,6654
|
|
202
|
+
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
203
|
+
machineconfig/scripts/python/ai/mcinit.py,sha256=IuUclOpQ0-5YJ4AghbPCglyMi6DPtP0zqIOhB-28wmQ,5251
|
|
218
204
|
machineconfig/scripts/python/ai/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
219
205
|
machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
220
206
|
machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
@@ -224,16 +210,14 @@ machineconfig/scripts/python/ai/prompts/allLintersAndTypeCheckers.prompt.md,sha2
|
|
|
224
210
|
machineconfig/scripts/python/ai/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
225
211
|
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=W6UAn5dGA7Bn4wsTicT84KKOYqF6WI5jrWhBWo8FbsI,1953
|
|
226
212
|
machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39JEZjCdvDrXYUMVvZNY,1163
|
|
227
|
-
machineconfig/scripts/python/archive/tmate_conn.py,sha256=
|
|
228
|
-
machineconfig/scripts/python/archive/tmate_start.py,sha256=
|
|
213
|
+
machineconfig/scripts/python/archive/tmate_conn.py,sha256=BiZQmYabl4K4-mbOpcb_R1JzYfEwxuAnk5FOciqGHFo,1231
|
|
214
|
+
machineconfig/scripts/python/archive/tmate_start.py,sha256=Hp7xv32u-fRuCG_f-Cy6qg0VemoaPOP-Pxs_gsFYcyg,1518
|
|
229
215
|
machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
-
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=
|
|
231
|
-
machineconfig/scripts/python/helpers/helpers2.py,sha256=
|
|
232
|
-
machineconfig/scripts/python/helpers/helpers4.py,sha256=
|
|
233
|
-
machineconfig/scripts/python/helpers/helpers5.py,sha256=
|
|
234
|
-
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=
|
|
235
|
-
machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.pyc,sha256=CwoU1mAubvFjStsgxFBHH_zI0LfY3k3Xy4IechpqH7A,179
|
|
236
|
-
machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc,sha256=qvuofjEveVe6yP8lVvMD59Pn_-0QzaSmFDmVfTlzswM,9836
|
|
216
|
+
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=R8xFPcgsdRHn4ta9QjQUjch3P5Bwnv8oiY-UpFE982U,4966
|
|
217
|
+
machineconfig/scripts/python/helpers/helpers2.py,sha256=TU1sA0GKNXHXT1_0y8piBLT_BeXfk0uBmkmUeyVYj58,7295
|
|
218
|
+
machineconfig/scripts/python/helpers/helpers4.py,sha256=SFYfxRleEq3gIbffIxFM8d1Ra5zNheUuTIOi2iBsqlE,7708
|
|
219
|
+
machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
220
|
+
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=c4IkoVQMGkO-D00-q2YE6Jvte39jDHsOBr2sr0c7y5Q,5331
|
|
237
221
|
machineconfig/scripts/windows/checkout_version.ps1,sha256=5bwjbKoBeyFJ6DEGgQiWWHp-VahrtvfU0w_g69zP3CM,131
|
|
238
222
|
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=qDRHCeglCm3n_ooaq3Wlzc-WLpnX9Ez7KL31j2b_wlo,316
|
|
239
223
|
machineconfig/scripts/windows/cloud_copy.ps1,sha256=B1s0tRXvqg-evUf1YzGaCdJNAa-MMc7gY3JUgkztZGA,417
|
|
@@ -295,7 +279,7 @@ machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42Wq
|
|
|
295
279
|
machineconfig/settings/keyboard/kanata/kanata.kbd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
280
|
machineconfig/settings/lf/linux/colors,sha256=uSW9O3CkiVomxK8-JN8hQRcM71yADuOSjichbfBFTpg,4148
|
|
297
281
|
machineconfig/settings/lf/linux/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
298
|
-
machineconfig/settings/lf/linux/lfrc,sha256=
|
|
282
|
+
machineconfig/settings/lf/linux/lfrc,sha256=dUz7-wfAsXXzegmFsFJ8_jpBWa8ll5nnqlkUQBls_Qg,5418
|
|
299
283
|
machineconfig/settings/lf/linux/autocall/delete.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
284
|
machineconfig/settings/lf/linux/autocall/on-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
285
|
machineconfig/settings/lf/linux/autocall/on-quit.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -388,13 +372,11 @@ machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWD
|
|
|
388
372
|
machineconfig/setup_linux/nix/cli_installation.sh,sha256=AQ_wRmldeD1tPqCmU7qgz9ZrZFly4OYwBJDGRpb9IJ0,5470
|
|
389
373
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
390
374
|
machineconfig/setup_linux/others/openssh-server_add_pub_key.sh,sha256=UiJcD1o4UekKKtp5YJKRq135PpqdTLXy7M6HvQ-Qum4,1993
|
|
391
|
-
machineconfig/setup_linux/web_shortcuts/
|
|
375
|
+
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
392
376
|
machineconfig/setup_linux/web_shortcuts/ascii_art.sh,sha256=RWcxH_Db7WHH37PclYmc92o6zAS557wGZxcYTuyTUZ0,3550
|
|
393
|
-
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=
|
|
394
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
395
|
-
machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=
|
|
396
|
-
machineconfig/setup_linux/web_shortcuts/tmp.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
397
|
-
machineconfig/setup_linux/web_shortcuts/update_system.sh,sha256=xQ1RxpsRhPFGpoDv01XTrB-BsqnbWiw7LMAh7Fc0uWs,1926
|
|
377
|
+
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=LpA7JCfrIe677_GcFeP5OT1fPKXcmQVNcPykq1DnFAs,284
|
|
378
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=g8cbhmpAugD-LIikNDX4_L59CBmoYbrH7GprtMXII8Q,7758
|
|
379
|
+
machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=k6BAY-zAWsi1beOMiZODxw4VOjZCTABZu__gxSET1eU,1924
|
|
398
380
|
machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
381
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
400
382
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
@@ -405,25 +387,26 @@ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=jRTeWqHtS6FjB-C
|
|
|
405
387
|
machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
|
|
406
388
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
389
|
machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
|
|
408
|
-
machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=
|
|
409
|
-
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256
|
|
390
|
+
machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=JgJZMP93xPQwr_6tsRmimOMllu-vsXn6ZgW-4ZEfRt0,4538
|
|
391
|
+
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=-XLcrpWv_iPPNTFjp5cUEGsvLrkLNMq93b0KhGX7tPw,9217
|
|
410
392
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
machineconfig/utils/code.py,sha256=
|
|
412
|
-
machineconfig/utils/installer.py,sha256=
|
|
393
|
+
machineconfig/utils/code.py,sha256=M8VzIdz-BYQNchXP78WaB5Uub_voSN0ndbbB6UDC0jo,4535
|
|
394
|
+
machineconfig/utils/installer.py,sha256=725N-0gmMbrWWh6_9sn-2w9aXrfjIPrnuu9o13T4N4o,10941
|
|
413
395
|
machineconfig/utils/io_save.py,sha256=iC1YTH0MOlBS8bWUB8Xhdl4CG_bEKQ3OVwMohdCOazI,3145
|
|
414
|
-
machineconfig/utils/links.py,sha256=
|
|
415
|
-
machineconfig/utils/notifications.py,sha256=
|
|
416
|
-
machineconfig/utils/options.py,sha256=
|
|
417
|
-
machineconfig/utils/path.py,sha256=
|
|
418
|
-
machineconfig/utils/path_reduced.py,sha256=
|
|
419
|
-
machineconfig/utils/procs.py,sha256=
|
|
396
|
+
machineconfig/utils/links.py,sha256=Lkzp1yZFyMe0ikbVsnWBektZy-9_Km69zt7hJ33MHp0,10309
|
|
397
|
+
machineconfig/utils/notifications.py,sha256=7OQmcOMhJIOQ2Rhgm9HDeyhXtjUkC4Ldl1Rrgnv311g,8423
|
|
398
|
+
machineconfig/utils/options.py,sha256=ez3U8UuhjuSMcuUneHEYYg3JWEFLC-LVcZdlT8hlBK4,8198
|
|
399
|
+
machineconfig/utils/path.py,sha256=4PNyyYsjPdJGDx1FbhPT4Sv6uR6PHAk9tMZiGQCGkIc,8071
|
|
400
|
+
machineconfig/utils/path_reduced.py,sha256=hccGUTSMtggU-LpLNS7W_c1s-CqhjHMbTQ59-1EqgmY,52473
|
|
401
|
+
machineconfig/utils/procs.py,sha256=6uB8lvmipNviMExjgFpZ3nGInatLf7GFTMmDNcI7paU,10828
|
|
420
402
|
machineconfig/utils/scheduling.py,sha256=4RRrrtjzOxk02IZENhIw6aGj5eMaWr0Tb73R68lhbGY,11271
|
|
421
|
-
machineconfig/utils/
|
|
422
|
-
machineconfig/utils/
|
|
423
|
-
machineconfig/utils/
|
|
424
|
-
machineconfig/utils/
|
|
425
|
-
machineconfig/utils/
|
|
426
|
-
machineconfig/utils/
|
|
403
|
+
machineconfig/utils/source_of_truth.py,sha256=QUxJ4eyY-O2cAFGknLY9Xz2E12w3cAJWuDFiIjERVWY,952
|
|
404
|
+
machineconfig/utils/ssh.py,sha256=ZVgFpr940OApfy07rFNujYAZ0AJG4xGPteupBG-Gdkc,20130
|
|
405
|
+
machineconfig/utils/terminal.py,sha256=k3xoMwJPGvmaeL9CxEIwrcQjRNN6EnJItoIIxXrUY8c,12258
|
|
406
|
+
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
407
|
+
machineconfig/utils/utils2.py,sha256=Y9bX4gaaPih7gbOeTcfPhQ3CcMFKGXgVCEQhVhljH4Q,2526
|
|
408
|
+
machineconfig/utils/utils5.py,sha256=s2NFUBcm4Jeuet8sUC7WKGSrYT4BnqTog39bsynXLik,15166
|
|
409
|
+
machineconfig/utils/ve.py,sha256=2-XzS2LV1c-iW3SZ3elELrCeAisXLNLqQU4Ayieq6Ho,2763
|
|
427
410
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
411
|
machineconfig/utils/ai/browser_user_wrapper.py,sha256=DVs1aje6Rm6ZIuRXeNm4rj7ytoui1djh5yvJ97D_mCQ,2120
|
|
429
412
|
machineconfig/utils/ai/generate_file_checklist.py,sha256=HVPSKM5ko17e_x1rHZ8XATaUKUVo4gtlSYGKbGd7Mh0,2834
|
|
@@ -431,9 +414,10 @@ machineconfig/utils/ai/url2md.py,sha256=vuFRHFhke6rqhiazk_p_c8T8BES9blxX7kmVNveH
|
|
|
431
414
|
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
432
415
|
machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
|
|
433
416
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
|
-
machineconfig/utils/installer_utils/installer_abc.py,sha256=
|
|
435
|
-
machineconfig/utils/installer_utils/installer_class.py,sha256=
|
|
436
|
-
machineconfig-2.
|
|
437
|
-
machineconfig-2.
|
|
438
|
-
machineconfig-2.
|
|
439
|
-
machineconfig-2.
|
|
417
|
+
machineconfig/utils/installer_utils/installer_abc.py,sha256=jR5XvrCjisIzoxk2VL0VhoVv-PkKdstDHGLcYky5Mqs,5319
|
|
418
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=l0UM-u6ZfWx-uLvAk_mmojbppj4sxDrHX3wmVwQv12w,20366
|
|
419
|
+
machineconfig-2.3.dist-info/METADATA,sha256=vzsWnq4tsFJn2sO5T2M529-eluFYNR9fc9HB9b_nOcQ,7165
|
|
420
|
+
machineconfig-2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
421
|
+
machineconfig-2.3.dist-info/entry_points.txt,sha256=9qZRmyzJ6rPMBjF7f3E_T6I8VLIJHUB_y1qmTvc8TZY,75
|
|
422
|
+
machineconfig-2.3.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
423
|
+
machineconfig-2.3.dist-info/RECORD,,
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"""ZT"""
|
|
2
|
-
|
|
3
|
-
import socket
|
|
4
|
-
from machineconfig.utils.utils import choose_ssh_host, write_shell_script_to_default_program_path
|
|
5
|
-
from machineconfig.utils.path_reduced import PathExtended as PathExtended
|
|
6
|
-
|
|
7
|
-
prefix = """
|
|
8
|
-
|
|
9
|
-
layout {
|
|
10
|
-
default_tab_template {
|
|
11
|
-
pane size=1 borderless=true {
|
|
12
|
-
plugin location="zellij:compact-bar"
|
|
13
|
-
}
|
|
14
|
-
children
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
suffix = """
|
|
21
|
-
|
|
22
|
-
tab name="THISMACHINE" focus=true // the default_tab_template
|
|
23
|
-
}
|
|
24
|
-
"""
|
|
25
|
-
|
|
26
|
-
tab = """
|
|
27
|
-
|
|
28
|
-
tab name="TABNAME" focus=false { // the default_tab_template with three vertical panes between the plugins
|
|
29
|
-
pane name="fpane" {
|
|
30
|
-
command "TABCOMMAND"
|
|
31
|
-
args "TABARGS"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def build_template(tabs: list[str]):
|
|
39
|
-
res = prefix
|
|
40
|
-
for t in tabs:
|
|
41
|
-
res += tab.replace("TABNAME", t).replace("TABCOMMAND", "ssh").replace("TABARGS", t)
|
|
42
|
-
res += suffix.replace("THISMACHINE", socket.gethostname())
|
|
43
|
-
file = PathExtended.tmp().joinpath("tmp_files/templates/zellij_template.kdl")
|
|
44
|
-
file.parent.mkdir(parents=True, exist_ok=True)
|
|
45
|
-
file.write_text(res, encoding="utf-8")
|
|
46
|
-
res = f"zellij --layout {file}"
|
|
47
|
-
return res
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
def launch_from_ssh_config():
|
|
51
|
-
hosts = choose_ssh_host(multi=True)
|
|
52
|
-
assert isinstance(hosts, list)
|
|
53
|
-
res = build_template(hosts)
|
|
54
|
-
write_shell_script_to_default_program_path(res, execute=False, desc="zellij launch script", preserve_cwd=False, display=False)
|
|
55
|
-
return None
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
if __name__ == "__main__":
|
|
59
|
-
launch_from_ssh_config()
|
|
@@ -1,183 +0,0 @@
|
|
|
1
|
-
# """
|
|
2
|
-
# Session Manager
|
|
3
|
-
# """
|
|
4
|
-
|
|
5
|
-
# from machineconfig.cluster.self_ssh import SelfSSH
|
|
6
|
-
|
|
7
|
-
# from machineconfig.utils.io_save import save_yaml
|
|
8
|
-
# import time
|
|
9
|
-
# import subprocess
|
|
10
|
-
# from typing import Union
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
# class Zellij:
|
|
14
|
-
# @staticmethod
|
|
15
|
-
# def get_current_zellij_session() -> str:
|
|
16
|
-
# try:
|
|
17
|
-
# output_lines = Terminal().run("zellij ls --no-formatting").op.split("\n")
|
|
18
|
-
# current_lines = [line for line in output_lines if "(current)" in line]
|
|
19
|
-
# return current_lines[0].split(" [Created")[0]
|
|
20
|
-
# except IndexError as ie:
|
|
21
|
-
# print("""Fails if there is no zellij session running, fails if there is no (current) suffix against the session name.""")
|
|
22
|
-
# raise ie
|
|
23
|
-
# @staticmethod
|
|
24
|
-
# def get_new_session_command(sess_name: str) -> str: return f"zellij attach {sess_name} -c " # -c means create if not exists.
|
|
25
|
-
# @staticmethod
|
|
26
|
-
# def get_new_session_ssh_command(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
27
|
-
# if isinstance(ssh, SelfSSH): return Zellij.get_new_session_command(sess_name=sess_name)
|
|
28
|
-
# return f"{ssh.get_ssh_conn_str()} -t {Zellij.get_new_session_command(sess_name=sess_name)}"
|
|
29
|
-
# @staticmethod
|
|
30
|
-
# def open_console(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
31
|
-
# if isinstance(ssh, SelfSSH):
|
|
32
|
-
# # return Terminal().run_async(Zellij.get_new_session_command(sess_name=sess_name), shell="powershell")
|
|
33
|
-
# # currently, there is a limitation in zellij on creating a detached sessions, there is no way to fix this now.
|
|
34
|
-
# # this will get stuck in the new session and won't run parallel.
|
|
35
|
-
# return subprocess.Popen(["zellij", "--session", sess_name], shell=True, stdin=None, stdout=None, stderr=None)
|
|
36
|
-
# return Terminal().run_async(Zellij.get_new_session_ssh_command(ssh=ssh, sess_name=sess_name))
|
|
37
|
-
# @staticmethod
|
|
38
|
-
# def asssert_session_started(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
39
|
-
# while True:
|
|
40
|
-
# raw_resp = ssh.run("zellij ls --no-formatting", verbose=False).op.split("\n")
|
|
41
|
-
# current_sessions = [item.split(" [Created")[0] for item in raw_resp if "EXITED" not in item]
|
|
42
|
-
# if sess_name in current_sessions:
|
|
43
|
-
# print(f"--> Session {sess_name} has started at the remote.")
|
|
44
|
-
# time.sleep(6)
|
|
45
|
-
# break
|
|
46
|
-
# time.sleep(2)
|
|
47
|
-
# print(f"--> Waiting for zellij session {sess_name} to start before sending fire commands ...")
|
|
48
|
-
|
|
49
|
-
# @staticmethod
|
|
50
|
-
# def close_tab(sess_name: str, tab_name: str):
|
|
51
|
-
# cmd = f"""
|
|
52
|
-
# zellij --session {sess_name} action close-tab --tab-name '{tab_name}'
|
|
53
|
-
# zellij --session {sess_name} action new-tab --name '🖥️{tab_name}'
|
|
54
|
-
# zellij --session {sess_name} action new-tab --name '🔍{tab_name}'
|
|
55
|
-
# zellij --session {sess_name} action new-tab --name '🪪{tab_name}'
|
|
56
|
-
# zellij --session {sess_name} action new-tab --name '🧑💻{tab_name}'
|
|
57
|
-
# """
|
|
58
|
-
# print(f"Closing tab `{tab_name}` in zellij session `{sess_name}` with command \n{cmd}")
|
|
59
|
-
# return Terminal().run_script(cmd)
|
|
60
|
-
|
|
61
|
-
# @staticmethod
|
|
62
|
-
# def setup_layout(ssh: Union[SSH, SelfSSH], sess_name: str, cmd: str = "", run: bool = False, job_wd: str = "$HOME/tmp_results/remote_machines", tab_name: str = "", compact: bool = False):
|
|
63
|
-
# sleep = 0.9
|
|
64
|
-
# if run:
|
|
65
|
-
# if cmd.startswith(". "): cmd = cmd[2:]
|
|
66
|
-
# elif cmd.startswith("source "): cmd = cmd[7:]
|
|
67
|
-
# else: pass
|
|
68
|
-
# exe = f"""
|
|
69
|
-
# zellij --session {sess_name} action new-tab --name '{tab_name}'; sleep {sleep}
|
|
70
|
-
# zellij --session {sess_name} run -d down -- /bin/bash {cmd}; sleep {sleep}
|
|
71
|
-
# zellij --session {sess_name} action move-focus up; sleep {sleep}
|
|
72
|
-
# zellij --session {sess_name} action close-pane; sleep {sleep}
|
|
73
|
-
# """
|
|
74
|
-
# else: exe = f"""
|
|
75
|
-
# zellij --session {sess_name} action write-chars "{cmd}"
|
|
76
|
-
# """
|
|
77
|
-
# if not compact: cmd = f"""
|
|
78
|
-
# zellij --session {sess_name} action new-tab --name '{tab_name}'; sleep {sleep}
|
|
79
|
-
# zellij --session {sess_name} action rename-tab '🖥️{tab_name}'; sleep {sleep} # rename the focused first tab
|
|
80
|
-
# zellij --session {sess_name} action new-tab --name '🔍{tab_name}'; sleep {sleep}
|
|
81
|
-
# zellij --session {sess_name} action write-chars htop; sleep {sleep}
|
|
82
|
-
|
|
83
|
-
# zellij --session {sess_name} action new-tab --name '📁{tab_name}'; sleep {sleep}
|
|
84
|
-
# zellij --session {sess_name} run --direction down --cwd {job_wd} -- lf; sleep {sleep}
|
|
85
|
-
# zellij --session {sess_name} action move-focus up; sleep {sleep}
|
|
86
|
-
# zellij --session {sess_name} action close-pane; sleep {sleep}
|
|
87
|
-
|
|
88
|
-
# zellij --session {sess_name} action new-tab --name '🪪{tab_name}'; sleep {sleep}
|
|
89
|
-
# zellij --session {sess_name} run --direction down -- neofetch;cpufetch; sleep {sleep}
|
|
90
|
-
# zellij --session {sess_name} action move-focus up; sleep {sleep}
|
|
91
|
-
# zellij --session {sess_name} action close-pane; sleep {sleep}
|
|
92
|
-
|
|
93
|
-
# zellij --session {sess_name} action new-tab --name '🧑💻{tab_name}'; sleep {sleep}
|
|
94
|
-
# zellij --session {sess_name} action write-chars "cd {job_wd}"; sleep {sleep}
|
|
95
|
-
# zellij --session {sess_name} action go-to-tab 1; sleep {sleep}
|
|
96
|
-
# {exe}
|
|
97
|
-
|
|
98
|
-
# """
|
|
99
|
-
# else: cmd = exe
|
|
100
|
-
# if isinstance(ssh, SelfSSH):
|
|
101
|
-
# # print(1)
|
|
102
|
-
# print(f"Setting up zellij layout `{sess_name}` on `{ssh.get_remote_repr()}` to run `{P(job_wd).name}`")
|
|
103
|
-
# # return Terminal().run_script(cmd) # Zellij not happy with launching scripts of zellij commands.
|
|
104
|
-
# return Response.from_completed_process(subprocess.run(cmd, shell=True, check=True, capture_output=True, text=True))
|
|
105
|
-
# # print(2)
|
|
106
|
-
# return ssh.run(cmd, desc=f"Setting up zellij layout on `{ssh.get_remote_repr()}`", verbose=False)
|
|
107
|
-
# @staticmethod
|
|
108
|
-
# def kill_session(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
109
|
-
# cmd = f'zellij kill-session {sess_name}'
|
|
110
|
-
# return ssh.run(cmd, desc=f"Killing zellij session `{sess_name}` on `{ssh.get_remote_repr()}`", verbose=False)
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
# class WindowsTerminal:
|
|
114
|
-
# @staticmethod
|
|
115
|
-
# def kill_session(sess_name: str):
|
|
116
|
-
# from machineconfig.utils.procs import ProcessManager
|
|
117
|
-
# pm = ProcessManager()
|
|
118
|
-
# pm.kill(commands=[sess_name])
|
|
119
|
-
# @staticmethod
|
|
120
|
-
# def open_reference(): PathExtended(r"https://learn.microsoft.com/en-us/windows/terminal/command-line-arguments?tabs=windows")()
|
|
121
|
-
# @staticmethod
|
|
122
|
-
# def get_new_session_command(sess_name: str): return f"wt -w {sess_name} -d ."
|
|
123
|
-
# @staticmethod
|
|
124
|
-
# def get_new_session_ssh_command(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
125
|
-
# if isinstance(ssh, SelfSSH): return WindowsTerminal.get_new_session_command(sess_name=sess_name)
|
|
126
|
-
# return f"{ssh.get_ssh_conn_str()} -t {WindowsTerminal.get_new_session_command(sess_name=sess_name)}"
|
|
127
|
-
# @staticmethod
|
|
128
|
-
# def open_console(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
129
|
-
# if isinstance(ssh, SelfSSH):
|
|
130
|
-
# # return Terminal().run_async(WindowsTerminal.get_new_session_command(sess_name=sess_name), shell="powershell")
|
|
131
|
-
# return subprocess.Popen(["wt", "--window", sess_name], shell=True, stdin=None, stdout=None, stderr=None)
|
|
132
|
-
# return Terminal().run_async(WindowsTerminal.get_new_session_ssh_command(ssh=ssh, sess_name=sess_name), shell="pwsh")
|
|
133
|
-
# @staticmethod
|
|
134
|
-
# def asssert_session_started(ssh: Union[SSH, SelfSSH], sess_name: str):
|
|
135
|
-
# _ = sess_name, ssh
|
|
136
|
-
# time.sleep(6)
|
|
137
|
-
# return True
|
|
138
|
-
# @staticmethod
|
|
139
|
-
# def setup_layout(ssh: Union[SSH, SelfSSH], sess_name: str, tab_name: str = "", cmd: str = "", run: bool = True, job_wd: str = "$HOME/tmp_results/remote_machines", compact: bool = True):
|
|
140
|
-
# if run:
|
|
141
|
-
# if cmd.startswith(". "): cmd = cmd[2:]
|
|
142
|
-
# elif cmd.startswith("source "): cmd = cmd[7:]
|
|
143
|
-
# else: pass
|
|
144
|
-
# exe: str = f"""
|
|
145
|
-
# wt --window {sess_name} new-tab --title '{tab_name}' pwsh -noExit -Command {cmd}
|
|
146
|
-
# """
|
|
147
|
-
# else: raise NotImplementedError("I don't know how to write-chars in Windows Terminal") # exe = f""" wt --window {sess_name} action write-chars "{cmd}" """
|
|
148
|
-
# sleep = 0.9
|
|
149
|
-
# if compact: cmd = f"""
|
|
150
|
-
# wt --window {sess_name} new-tab --title '💻{tab_name}' htop `; split-pane --horizontal --title '📁{tab_name}' --startingDirectory {job_wd} --profile pwsh lf `; split-pane --vertical --title '🪪{tab_name}' powershell -noExit "$HOME/scripts/neofetch.ps1" `; move-focus up `; split-pane --vertical --startingDirectory {job_wd} --title '🧑💻{tab_name}' --profile pwsh
|
|
151
|
-
# """ # when pane-splitting, the tab title goes to the last pane declared.
|
|
152
|
-
# else: cmd = f"""'
|
|
153
|
-
# wt --window {sess_name} new-tab --title '💻{tab_name}' htop; sleep {sleep}
|
|
154
|
-
# wt --window {sess_name} new-tab --title '📁{tab_name}' --startingDirectory {job_wd} lf; sleep {sleep}
|
|
155
|
-
# wt --window {sess_name} new-tab --title '🪪{tab_name}' powershell -noExit "$HOME/scripts/neofetch.ps1"; sleep {sleep}
|
|
156
|
-
# wt --window {sess_name} new-tab --title '🧑💻{tab_name}' --startingDirectory {job_wd} --profile pwsh; sleep {sleep}
|
|
157
|
-
# """
|
|
158
|
-
# cmd = cmd + f"\nsleep {sleep};" + exe
|
|
159
|
-
# # print(cmd)
|
|
160
|
-
# if isinstance(ssh, SelfSSH):
|
|
161
|
-
# print(f"Firing WindowsTerminal Session `{sess_name}` on `{ssh.get_remote_repr()}` to run `{P(job_wd).name}`")
|
|
162
|
-
# return Terminal().run_script(cmd, shell="pwsh")
|
|
163
|
-
# return ssh.run(cmd, desc=f"Setting up WindowsTerminal layout on `{ssh.get_remote_repr()}`", verbose=False)
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
# class Mprocs:
|
|
167
|
-
# @staticmethod
|
|
168
|
-
# def get_template():
|
|
169
|
-
# import machineconfig
|
|
170
|
-
# return PathExtended(machineconfig.__file__).parent.joinpath(r"settings/mprocs/windows/mprocs.yaml").readit()
|
|
171
|
-
# # def get_new_session_name(self): return f"mprocs{self.id}"
|
|
172
|
-
# @staticmethod
|
|
173
|
-
# def get_ssh_command(): return ""
|
|
174
|
-
# def open_console(self, cmd: str, shell: str = "powershell"):
|
|
175
|
-
# _ = cmd, shell
|
|
176
|
-
# return "wt -w 0 -d ."
|
|
177
|
-
# def get_layout(self):
|
|
178
|
-
# temp = self.get_template()
|
|
179
|
-
# temp.procs['main']['shell']['windows'] = "croshell"
|
|
180
|
-
# _template_file = save_yaml(obj=temp, path=PathExtended.tmpfile(suffix=".yaml"))
|
|
181
|
-
# def asssert_session_started(self):
|
|
182
|
-
# time.sleep(3)
|
|
183
|
-
# return True
|
|
File without changes
|
|
Binary file
|
|
Binary file
|