machineconfig 1.97__py3-none-any.whl → 2.1__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/cloud_manager.py +22 -29
- machineconfig/cluster/data_transfer.py +2 -3
- machineconfig/cluster/distribute.py +0 -2
- machineconfig/cluster/file_manager.py +4 -5
- machineconfig/cluster/job_params.py +1 -4
- machineconfig/cluster/loader_runner.py +8 -11
- machineconfig/cluster/remote_machine.py +4 -5
- machineconfig/cluster/script_execution.py +2 -2
- machineconfig/cluster/script_notify_upon_completion.py +0 -1
- machineconfig/cluster/sessions_managers/archive/create_zellij_template.py +4 -6
- machineconfig/cluster/sessions_managers/archive/session_managers.py +0 -1
- machineconfig/cluster/sessions_managers/enhanced_command_runner.py +35 -75
- machineconfig/cluster/sessions_managers/wt_local.py +113 -185
- machineconfig/cluster/sessions_managers/wt_local_manager.py +127 -197
- machineconfig/cluster/sessions_managers/wt_remote.py +60 -67
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +110 -149
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +61 -64
- machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py +72 -172
- machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py +27 -60
- machineconfig/cluster/sessions_managers/wt_utils/session_manager.py +58 -137
- machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py +46 -74
- machineconfig/cluster/sessions_managers/zellij_local.py +91 -147
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +165 -190
- machineconfig/cluster/sessions_managers/zellij_remote.py +51 -58
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +40 -46
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +19 -17
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +30 -31
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +64 -134
- machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py +7 -11
- machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py +27 -55
- machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +14 -13
- machineconfig/cluster/templates/cli_click.py +0 -1
- machineconfig/cluster/templates/cli_gooey.py +0 -2
- machineconfig/cluster/templates/cli_trogon.py +0 -1
- machineconfig/cluster/templates/run_cloud.py +0 -1
- machineconfig/cluster/templates/run_cluster.py +0 -1
- machineconfig/cluster/templates/run_remote.py +0 -1
- machineconfig/cluster/templates/utils.py +27 -11
- machineconfig/jobs/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/linux/msc/cli_agents.sh +16 -0
- machineconfig/jobs/python/check_installations.py +9 -9
- machineconfig/jobs/python/create_bootable_media.py +0 -2
- machineconfig/jobs/python/python_cargo_build_share.py +2 -2
- machineconfig/jobs/python/python_ve_symlink.py +9 -11
- machineconfig/jobs/python/tasks.py +0 -1
- machineconfig/jobs/python/vscode/api.py +5 -5
- machineconfig/jobs/python/vscode/link_ve.py +20 -21
- machineconfig/jobs/python/vscode/select_interpreter.py +28 -29
- machineconfig/jobs/python/vscode/sync_code.py +14 -18
- machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_custom_installers/archive/ngrok.py +15 -15
- machineconfig/jobs/python_custom_installers/dev/aider.py +10 -18
- machineconfig/jobs/python_custom_installers/dev/alacritty.py +12 -21
- machineconfig/jobs/python_custom_installers/dev/brave.py +13 -22
- machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +13 -20
- machineconfig/jobs/python_custom_installers/dev/code.py +17 -24
- machineconfig/jobs/python_custom_installers/dev/cursor.py +10 -21
- machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +12 -11
- machineconfig/jobs/python_custom_installers/dev/espanso.py +19 -23
- machineconfig/jobs/python_custom_installers/dev/goes.py +9 -16
- machineconfig/jobs/python_custom_installers/dev/lvim.py +13 -21
- machineconfig/jobs/python_custom_installers/dev/nerdfont.py +15 -22
- machineconfig/jobs/python_custom_installers/dev/redis.py +15 -23
- machineconfig/jobs/python_custom_installers/dev/wezterm.py +15 -22
- machineconfig/jobs/python_custom_installers/dev/winget.py +32 -50
- machineconfig/jobs/python_custom_installers/docker.py +15 -24
- machineconfig/jobs/python_custom_installers/gh.py +18 -26
- machineconfig/jobs/python_custom_installers/hx.py +33 -17
- machineconfig/jobs/python_custom_installers/warp-cli.py +15 -23
- machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_generic_installers/config.json +412 -389
- machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_windows_installers/dev/config.json +1 -1
- machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +1 -1
- machineconfig/jobs/windows/msc/cli_agents.bat +0 -0
- machineconfig/jobs/windows/msc/cli_agents.ps1 +0 -0
- machineconfig/jobs/windows/start_terminal.ps1 +1 -1
- machineconfig/logger.py +50 -0
- machineconfig/profile/create.py +50 -36
- machineconfig/profile/create_hardlinks.py +33 -26
- machineconfig/profile/shell.py +87 -60
- machineconfig/scripts/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/cloud/init.sh +2 -2
- machineconfig/scripts/linux/checkout_versions +1 -1
- machineconfig/scripts/linux/choose_wezterm_theme +1 -1
- machineconfig/scripts/linux/cloud_copy +1 -1
- machineconfig/scripts/linux/cloud_manager +1 -1
- machineconfig/scripts/linux/cloud_mount +1 -1
- machineconfig/scripts/linux/cloud_repo_sync +1 -1
- machineconfig/scripts/linux/cloud_sync +1 -1
- machineconfig/scripts/linux/croshell +1 -1
- machineconfig/scripts/linux/devops +3 -5
- machineconfig/scripts/linux/fire +2 -1
- machineconfig/scripts/linux/fire_agents +3 -3
- machineconfig/scripts/linux/ftpx +1 -1
- machineconfig/scripts/linux/gh_models +1 -1
- machineconfig/scripts/linux/kill_process +1 -1
- machineconfig/scripts/linux/mcinit +2 -2
- machineconfig/scripts/linux/repos +1 -1
- machineconfig/scripts/linux/scheduler +1 -1
- machineconfig/scripts/linux/start_slidev +1 -1
- machineconfig/scripts/linux/start_terminals +1 -1
- machineconfig/scripts/linux/url2md +1 -1
- machineconfig/scripts/linux/warp-cli.sh +122 -0
- machineconfig/scripts/linux/wifi_conn +1 -1
- 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/__init__.py +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/ai/chatmodes/Thinking-Beast-Mode.chatmode.md +337 -0
- machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md +644 -0
- machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md +81 -0
- machineconfig/scripts/python/ai/configs/.gemini/settings.json +81 -0
- machineconfig/scripts/python/ai/generate_files.py +84 -0
- machineconfig/scripts/python/ai/instructions/python/dev.instructions.md +45 -0
- machineconfig/scripts/python/ai/mcinit.py +107 -0
- machineconfig/scripts/python/ai/prompts/allLintersAndTypeCheckers.prompt.md +5 -0
- machineconfig/scripts/python/ai/prompts/research-report-skeleton.prompt.md +38 -0
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +52 -0
- machineconfig/scripts/python/archive/tmate_conn.py +5 -5
- machineconfig/scripts/python/archive/tmate_start.py +3 -3
- machineconfig/scripts/python/choose_wezterm_theme.py +2 -2
- machineconfig/scripts/python/cloud_copy.py +20 -19
- machineconfig/scripts/python/cloud_mount.py +10 -8
- machineconfig/scripts/python/cloud_repo_sync.py +15 -15
- machineconfig/scripts/python/cloud_sync.py +1 -1
- machineconfig/scripts/python/croshell.py +18 -16
- machineconfig/scripts/python/devops.py +6 -6
- machineconfig/scripts/python/devops_add_identity.py +9 -7
- machineconfig/scripts/python/devops_add_ssh_key.py +19 -19
- machineconfig/scripts/python/devops_backup_retrieve.py +14 -14
- machineconfig/scripts/python/devops_devapps_install.py +3 -3
- machineconfig/scripts/python/devops_update_repos.py +141 -53
- machineconfig/scripts/python/dotfile.py +3 -3
- machineconfig/scripts/python/fire_agents.py +202 -41
- machineconfig/scripts/python/fire_jobs.py +20 -21
- machineconfig/scripts/python/ftpx.py +4 -3
- machineconfig/scripts/python/gh_models.py +94 -94
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc +0 -0
- machineconfig/scripts/python/helpers/cloud_helpers.py +3 -3
- machineconfig/scripts/python/helpers/helpers2.py +3 -3
- machineconfig/scripts/python/helpers/helpers4.py +8 -7
- machineconfig/scripts/python/helpers/helpers5.py +7 -7
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +2 -2
- machineconfig/scripts/python/mount_nfs.py +4 -3
- machineconfig/scripts/python/mount_nw_drive.py +4 -4
- machineconfig/scripts/python/mount_ssh.py +4 -3
- machineconfig/scripts/python/repos.py +9 -9
- machineconfig/scripts/python/scheduler.py +1 -1
- machineconfig/scripts/python/start_slidev.py +9 -8
- machineconfig/scripts/python/start_terminals.py +1 -1
- machineconfig/scripts/python/viewer.py +40 -40
- machineconfig/scripts/python/wifi_conn.py +65 -66
- machineconfig/scripts/python/wsl_windows_transfer.py +2 -2
- machineconfig/scripts/windows/checkout_version.ps1 +1 -3
- machineconfig/scripts/windows/choose_wezterm_theme.ps1 +1 -3
- machineconfig/scripts/windows/cloud_copy.ps1 +2 -6
- machineconfig/scripts/windows/cloud_manager.ps1 +1 -1
- machineconfig/scripts/windows/cloud_repo_sync.ps1 +1 -2
- machineconfig/scripts/windows/cloud_sync.ps1 +2 -2
- machineconfig/scripts/windows/croshell.ps1 +2 -2
- machineconfig/scripts/windows/devops.ps1 +1 -4
- machineconfig/scripts/windows/dotfile.ps1 +1 -3
- machineconfig/scripts/windows/fire.ps1 +1 -1
- machineconfig/scripts/windows/ftpx.ps1 +2 -2
- machineconfig/scripts/windows/gpt.ps1 +1 -1
- machineconfig/scripts/windows/kill_process.ps1 +1 -2
- machineconfig/scripts/windows/mcinit.ps1 +2 -2
- machineconfig/scripts/windows/mount_nfs.ps1 +1 -1
- machineconfig/scripts/windows/mount_ssh.ps1 +1 -1
- machineconfig/scripts/windows/pomodoro.ps1 +1 -1
- machineconfig/scripts/windows/py2exe.ps1 +1 -3
- machineconfig/scripts/windows/repos.ps1 +1 -1
- machineconfig/scripts/windows/scheduler.ps1 +1 -1
- machineconfig/scripts/windows/snapshot.ps1 +2 -2
- machineconfig/scripts/windows/start_slidev.ps1 +1 -1
- machineconfig/scripts/windows/start_terminals.ps1 +1 -1
- machineconfig/scripts/windows/wifi_conn.ps1 +1 -1
- machineconfig/scripts/windows/wsl_windows_transfer.ps1 +1 -3
- machineconfig/settings/lf/linux/lfrc +1 -1
- machineconfig/settings/linters/.ruff.toml +2 -2
- machineconfig/settings/linters/.ruff_cache/.gitignore +2 -0
- machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG +1 -0
- machineconfig/settings/lvim/windows/archive/config_additional.lua +1 -1
- machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +71 -71
- machineconfig/settings/shells/wt/settings.json +8 -8
- machineconfig/settings/svim/linux/init.toml +1 -1
- machineconfig/settings/svim/windows/init.toml +1 -1
- machineconfig/setup_linux/web_shortcuts/croshell.sh +0 -54
- machineconfig/setup_linux/web_shortcuts/interactive.sh +6 -6
- machineconfig/setup_linux/web_shortcuts/tmp.sh +2 -0
- machineconfig/setup_windows/web_shortcuts/all.ps1 +2 -2
- machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +1 -1
- machineconfig/setup_windows/web_shortcuts/croshell.ps1 +1 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +5 -5
- machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1 +51 -15
- machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py +75 -18
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +52 -42
- machineconfig/utils/ai/browser_user_wrapper.py +5 -5
- machineconfig/utils/ai/generate_file_checklist.py +19 -22
- machineconfig/utils/ai/url2md.py +5 -3
- machineconfig/utils/cloud/onedrive/setup_oauth.py +5 -4
- machineconfig/utils/cloud/onedrive/transaction.py +192 -227
- machineconfig/utils/code.py +71 -43
- machineconfig/utils/installer.py +77 -85
- machineconfig/utils/installer_utils/installer_abc.py +29 -17
- machineconfig/utils/installer_utils/installer_class.py +188 -83
- machineconfig/utils/io_save.py +3 -15
- machineconfig/utils/links.py +22 -11
- machineconfig/utils/notifications.py +197 -0
- machineconfig/utils/options.py +38 -25
- machineconfig/utils/path.py +18 -6
- machineconfig/utils/path_reduced.py +637 -316
- machineconfig/utils/procs.py +69 -63
- machineconfig/utils/scheduling.py +11 -13
- machineconfig/utils/ssh.py +351 -0
- machineconfig/utils/terminal.py +225 -0
- machineconfig/utils/utils.py +13 -12
- machineconfig/utils/utils2.py +43 -10
- machineconfig/utils/utils5.py +242 -46
- machineconfig/utils/ve.py +11 -6
- {machineconfig-1.97.dist-info → machineconfig-2.1.dist-info}/METADATA +15 -9
- {machineconfig-1.97.dist-info → machineconfig-2.1.dist-info}/RECORD +232 -235
- machineconfig/cluster/self_ssh.py +0 -57
- machineconfig/jobs/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python/archive/python_tools.txt +0 -12
- machineconfig/jobs/python/vscode/__pycache__/select_interpreter.cpython-311.pyc +0 -0
- machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_generic_installers/update.py +0 -3
- machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/profile/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/profile/__pycache__/create.cpython-311.pyc +0 -0
- machineconfig/profile/__pycache__/shell.cpython-311.pyc +0 -0
- machineconfig/scripts/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/linux/activate_ve +0 -87
- machineconfig/scripts/python/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_copy.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_mount.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_sync.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/croshell.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_backup_retrieve.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/fire_agents.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/get_zellij_cmd.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc +0 -0
- machineconfig/scripts/python/ai/__pycache__/init.cpython-311.pyc +0 -0
- machineconfig/scripts/python/ai/init.py +0 -56
- machineconfig/scripts/python/ai/rules/python/dev.md +0 -31
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/cloud_helpers.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers2.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/repo_sync_helpers.cpython-311.pyc +0 -0
- machineconfig/scripts/windows/activate_ve.ps1 +0 -54
- {machineconfig-1.97.dist-info → machineconfig-2.1.dist-info}/WHEEL +0 -0
- {machineconfig-1.97.dist-info → machineconfig-2.1.dist-info}/top_level.txt +0 -0
|
@@ -1,87 +1,85 @@
|
|
|
1
1
|
machineconfig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
machineconfig/logger.py,sha256=XLckvZ8cPDpC5v75ESP3YNTputIrDYuvoYisj0YZtGw,1415
|
|
2
3
|
machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
machineconfig/cluster/cloud_manager.py,sha256=
|
|
4
|
-
machineconfig/cluster/data_transfer.py,sha256=
|
|
5
|
-
machineconfig/cluster/distribute.py,sha256=
|
|
6
|
-
machineconfig/cluster/file_manager.py,sha256=
|
|
7
|
-
machineconfig/cluster/job_params.py,sha256=
|
|
8
|
-
machineconfig/cluster/loader_runner.py,sha256=
|
|
9
|
-
machineconfig/cluster/remote_machine.py,sha256=
|
|
10
|
-
machineconfig/cluster/script_execution.py,sha256=
|
|
11
|
-
machineconfig/cluster/script_notify_upon_completion.py,sha256=
|
|
12
|
-
machineconfig/cluster/self_ssh.py,sha256=GvoDC2dGeWnZdxBue8aiF7wghUqJjxJnERGdGWSSvsQ,2976
|
|
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
|
|
13
13
|
machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
machineconfig/cluster/sessions_managers/demo_rich_zellij.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=
|
|
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=
|
|
15
|
+
machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=2RhIS641zpcT1CLavVQXPnd1DMg7fne2_PwNoz7QLWo,5319
|
|
16
|
+
machineconfig/cluster/sessions_managers/wt_local.py,sha256=8wF4zdy6QKU0zSGoPv08Yz-iNtqS1d4qRbUZrAaD0ak,17970
|
|
17
|
+
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=-NeKeCZkgxJmByU-LonmMA4C1452I92h65bkCX5K15A,23181
|
|
18
|
+
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=sd4r6P-cdFmEskVMbFqvUFb1PFqp0BS9PM0X8pzQN5w,12450
|
|
19
|
+
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=BOTf_B3MPFH5SJNYP7ONt4c3D604c7Q9scakvyaRnQI,19379
|
|
20
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=6-c1_C7ktCYYwn7vcr1U5TDkokLCXIXsf5Va_TaJRJw,16368
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=G3B38xReWkzPGzqWdA7IvwLO6jZqG3c_ndoevQhIsDg,23175
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=2mrY45FPK4CDcckW1A4n4jDGsKCk6-bjzoDxI8F_r8o,9881
|
|
23
|
+
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=R0vlLMeXBd6yfsf3KHh4jEJv5gmTXWBHNY3vUdiR-ns,8089
|
|
24
24
|
machineconfig/cluster/sessions_managers/archive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
machineconfig/cluster/sessions_managers/archive/create_zellij_template.py,sha256=
|
|
26
|
-
machineconfig/cluster/sessions_managers/archive/session_managers.py,sha256=
|
|
27
|
-
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=
|
|
28
|
-
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256
|
|
29
|
-
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=
|
|
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=
|
|
35
|
-
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=
|
|
36
|
-
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=
|
|
37
|
-
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=
|
|
25
|
+
machineconfig/cluster/sessions_managers/archive/create_zellij_template.py,sha256=BjY3lJM50sfNzXOUnoX-iiSEWxx-Lgg8XyraD-jkWrc,1477
|
|
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
|
|
29
|
+
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=5DOi1qQ8-rqurqzdKRRTZuhy4mY_SPVb2njxelnZu9E,11387
|
|
31
|
+
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=ckYw77F0rmePPZvZQGaWN-xNMutLrPPuH05p19HB8B0,9287
|
|
32
|
+
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=NeyUw1sPWc1QHtABmqHGmHNyJ97NZJrdc9VPBiHQViQ,2501
|
|
33
|
+
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=hG0OH2LF6tnDbIMMLDj4yYMWUYfWYu0i3M6N6Of8Xrk,4697
|
|
34
|
+
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=jdMDaxIhT37hnHf8ZbLXP-11I-a3HBd3SBmW7nqDlmE,12303
|
|
35
|
+
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=g_b6e6XG0Yz6_KDiIKzNaUzJAjFdT9wEyrmdWS4ANQ0,4884
|
|
37
|
+
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=vqx3JqhKV7dfGuxmDphTC_4atOxXF4eOJC7cP_0qqag,3603
|
|
38
38
|
machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
machineconfig/cluster/templates/cli_click.py,sha256=
|
|
40
|
-
machineconfig/cluster/templates/cli_gooey.py,sha256=
|
|
41
|
-
machineconfig/cluster/templates/cli_trogon.py,sha256=
|
|
42
|
-
machineconfig/cluster/templates/run_cloud.py,sha256=
|
|
43
|
-
machineconfig/cluster/templates/run_cluster.py,sha256=
|
|
44
|
-
machineconfig/cluster/templates/run_remote.py,sha256=
|
|
45
|
-
machineconfig/cluster/templates/utils.py,sha256=
|
|
39
|
+
machineconfig/cluster/templates/cli_click.py,sha256=7v6w-dj1whBd9ydKeOAQFuD5kF7_6ivyPAqNl8BEvc0,5084
|
|
40
|
+
machineconfig/cluster/templates/cli_gooey.py,sha256=KUiZDuqmHDkGS7NqwBTzZUbxysgasq-M0DWmwd44vOE,5534
|
|
41
|
+
machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQwzAHH_04stPuV5bY,647
|
|
42
|
+
machineconfig/cluster/templates/run_cloud.py,sha256=0o4-v5yFEqvlHzoKDXljRCR5ikx_r5w4oYE5OCtVIK8,2378
|
|
43
|
+
machineconfig/cluster/templates/run_cluster.py,sha256=ZFNl4EDybicedWKX5qBwSSeKKfdV2lQFD_1kcAyjHYM,4691
|
|
44
|
+
machineconfig/cluster/templates/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdRdzcjlpP9gcLdc,3247
|
|
45
|
+
machineconfig/cluster/templates/utils.py,sha256=nQ0W8zxXHAESvzsnH10pzZ6Ke4oRdQj83eRNPANm8k4,3846
|
|
46
46
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
machineconfig/jobs/__pycache__/__init__.cpython-
|
|
47
|
+
machineconfig/jobs/__pycache__/__init__.cpython-313.pyc,sha256=XCpGeTOsCIrHvdkU0hZ-ISJF86afNZ4mr5dY9n0K8Gg,161
|
|
48
|
+
machineconfig/jobs/linux/msc/cli_agents.sh,sha256=X94rDsNHokIWQyHUQu0n2d0AbR39ak-nw4PbrUsJr7w,377
|
|
48
49
|
machineconfig/jobs/linux/msc/lid.sh,sha256=09LeoSaXCGjCn7YxPcIFQpHroYdglJlEtFU2agarh3I,1302
|
|
49
50
|
machineconfig/jobs/linux/msc/network.sh,sha256=dmISsh0hioDheinqee3qHfo2k7ClFx6G_GfGDxuflmc,1796
|
|
50
51
|
machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
machineconfig/jobs/python/check_installations.py,sha256=
|
|
52
|
-
machineconfig/jobs/python/create_bootable_media.py,sha256=
|
|
53
|
-
machineconfig/jobs/python/python_cargo_build_share.py,sha256=
|
|
54
|
-
machineconfig/jobs/python/python_ve_symlink.py,sha256=
|
|
55
|
-
machineconfig/jobs/python/tasks.py,sha256=
|
|
56
|
-
machineconfig/jobs/python/
|
|
57
|
-
machineconfig/jobs/python/
|
|
58
|
-
machineconfig/jobs/python/vscode/
|
|
59
|
-
machineconfig/jobs/python/vscode/
|
|
60
|
-
machineconfig/jobs/python/vscode/select_interpreter.py,sha256=Brd_LwXO0-AeiJwxtFBbw_k-ah57vNu6_a0Os-nso74,2701
|
|
61
|
-
machineconfig/jobs/python/vscode/sync_code.py,sha256=rLpHOyt-t3FSC6N3mppunfRQMbI78S5FhYjDCFonaEg,2205
|
|
62
|
-
machineconfig/jobs/python/vscode/__pycache__/select_interpreter.cpython-311.pyc,sha256=RgsGRZtpwohxBOd5A8OJLETKJzak9D5uyHXcx2e6lwk,4820
|
|
52
|
+
machineconfig/jobs/python/check_installations.py,sha256=vJSZIfvKiDfDJ133OwPyeQ-o0vUlMIGa7cQwbCah7b8,11141
|
|
53
|
+
machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
|
|
54
|
+
machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
|
|
55
|
+
machineconfig/jobs/python/python_ve_symlink.py,sha256=quma-fmKIeNbScaQ3HdZV50QCcGt4MF6HjBfsHtxdv4,852
|
|
56
|
+
machineconfig/jobs/python/tasks.py,sha256=hrBDQOnBmcXtauTkicVgC8J2AOGcfdFfyx0K8eI6Coc,150
|
|
57
|
+
machineconfig/jobs/python/vscode/api.py,sha256=BYF3XeNXYCpM4ApDCz2ZM1AInY4WgBqrpX9l_MWYqfM,1670
|
|
58
|
+
machineconfig/jobs/python/vscode/link_ve.py,sha256=1tXXgfWcl18K6avdhm2V7zng18opR9pfI0PSLxMFbiQ,1439
|
|
59
|
+
machineconfig/jobs/python/vscode/select_interpreter.py,sha256=54IljnFsvlz-B3qezMxc84RZSBxpYqKOsPmL9LwvSUU,2686
|
|
60
|
+
machineconfig/jobs/python/vscode/sync_code.py,sha256=pYt-s43y1lj77oj2VFzY3aN7YHj7j8Yw5W3bMj2xTUM,2155
|
|
63
61
|
machineconfig/jobs/python_custom_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
machineconfig/jobs/python_custom_installers/docker.py,sha256=
|
|
65
|
-
machineconfig/jobs/python_custom_installers/gh.py,sha256=
|
|
66
|
-
machineconfig/jobs/python_custom_installers/hx.py,sha256=
|
|
67
|
-
machineconfig/jobs/python_custom_installers/warp-cli.py,sha256=
|
|
68
|
-
machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-
|
|
69
|
-
machineconfig/jobs/python_custom_installers/archive/ngrok.py,sha256=
|
|
70
|
-
machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=
|
|
71
|
-
machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=
|
|
72
|
-
machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=
|
|
73
|
-
machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=
|
|
74
|
-
machineconfig/jobs/python_custom_installers/dev/code.py,sha256=
|
|
75
|
-
machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=
|
|
76
|
-
machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=
|
|
77
|
-
machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=
|
|
78
|
-
machineconfig/jobs/python_custom_installers/dev/goes.py,sha256=
|
|
79
|
-
machineconfig/jobs/python_custom_installers/dev/lvim.py,sha256=
|
|
80
|
-
machineconfig/jobs/python_custom_installers/dev/nerdfont.py,sha256=
|
|
81
|
-
machineconfig/jobs/python_custom_installers/dev/redis.py,sha256=
|
|
62
|
+
machineconfig/jobs/python_custom_installers/docker.py,sha256=YqUVDtTbcTLTImyypJcXDveJ0kKDw3pAVm8GT56wvzE,2213
|
|
63
|
+
machineconfig/jobs/python_custom_installers/gh.py,sha256=Z5MP0fdIdTuTXibRq6FmcyiQJ2I-1vMEPOKNB79JF0M,2507
|
|
64
|
+
machineconfig/jobs/python_custom_installers/hx.py,sha256=0rdkIyj-kiT-GTF0nMiBRqQ3_RafksgqgpgKXyUScc8,5551
|
|
65
|
+
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
|
+
machineconfig/jobs/python_custom_installers/archive/ngrok.py,sha256=DtMXSoRgcS-DuelTwqUiP0zaC0eA7vsToRRo0CMmc4U,1696
|
|
68
|
+
machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=_yyUIn9ySM5tngdRcauJLZtfIR2tMCSBDZUVBYgKP70,761
|
|
69
|
+
machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=JkFJk9GpYSshtHs8tF--qQd0pP7bly7J8wYag-XT-v0,1878
|
|
70
|
+
machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=PlwvBzphAFzRNEc9hQj_tqw9RiTRoTuWAgd0b0Lh-EQ,2001
|
|
71
|
+
machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=_O3dRHOSqt0fOy6mfvpBV9McCpG6PHt1jf-u-Lk2l6M,1389
|
|
72
|
+
machineconfig/jobs/python_custom_installers/dev/code.py,sha256=0kyvxhSccecuwlyL7c3VMytSXLtGYwRPeca9GQ2NI6c,1927
|
|
73
|
+
machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=FfBMjN5LsU0e3sQHB3DJaHA4k7PeQ52LFHKfAk7we00,4426
|
|
74
|
+
machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=YgHZ9vH7O7gWROrg0HVxx5-fvxYb5UQ118YaD61JTM4,2317
|
|
75
|
+
machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=ay1VYEFWPFvfFoi6LnRZwiLTZrClRZpl9n5ZsOF4rXw,2457
|
|
76
|
+
machineconfig/jobs/python_custom_installers/dev/goes.py,sha256=XpF_mMB7HNrB1O3J2L73OXwbrL3cyc_2_rQG8ZqmLjU,1039
|
|
77
|
+
machineconfig/jobs/python_custom_installers/dev/lvim.py,sha256=OUXnJ-pLmFx3d2AItGId0SePTGpVNrbXcpsg3_eBAcU,2152
|
|
78
|
+
machineconfig/jobs/python_custom_installers/dev/nerdfont.py,sha256=tslO5orXs5rSbacAB2nHd3OjOsWWuOIHgeLZcwJAeSg,2006
|
|
79
|
+
machineconfig/jobs/python_custom_installers/dev/redis.py,sha256=CW6FtlJ7wgydfS8sUd16sD-6g52PrlkypjEDWot6NPc,2165
|
|
82
80
|
machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md,sha256=Yam2UzJUCslAp01_A0gdMH59s27hna9mqQsSGU7q64g,1128
|
|
83
|
-
machineconfig/jobs/python_custom_installers/dev/wezterm.py,sha256=
|
|
84
|
-
machineconfig/jobs/python_custom_installers/dev/winget.py,sha256=
|
|
81
|
+
machineconfig/jobs/python_custom_installers/dev/wezterm.py,sha256=cyCr4Y_HLF2MwmM9hlWU7REogyIXgmMRdOv_WjYND-g,2152
|
|
82
|
+
machineconfig/jobs/python_custom_installers/dev/winget.py,sha256=xERVNYysxhPb7qgDybqUeYmPrUju_AOQAmYkMMAYGlM,5628
|
|
85
83
|
machineconfig/jobs/python_custom_installers/scripts/linux/brave.sh,sha256=m01xquA4YZW3YrhJiTCvTZuLliELmRI1avYFyuE5-Ws,2119
|
|
86
84
|
machineconfig/jobs/python_custom_installers/scripts/linux/docker.sh,sha256=mojUmdFXXH5vJN7hHwP3JmRajya1yyM4bZvuLOx-nTc,5343
|
|
87
85
|
machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh,sha256=TiS-hWRltw66_p_Fq8gfkA_rqUIuwxoIkFZItVF6TXA,1478
|
|
@@ -94,14 +92,13 @@ machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh,sha256=8S0nZ
|
|
|
94
92
|
machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh,sha256=PVNLeYWdh3XEFllCVZDYIHBI42btjGlH5jbyXjJGz-Y,3033
|
|
95
93
|
machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh,sha256=m697rRoIIVk-f8JdI1YQmphk-JWpMc5IYbD5YaQ3SeQ,1874
|
|
96
94
|
machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
-
machineconfig/jobs/python_generic_installers/config.json,sha256=
|
|
98
|
-
machineconfig/jobs/python_generic_installers/
|
|
99
|
-
machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc,sha256=6W3MndIH6TpKF1rOCDC53oH4ZV8tCD6zakk8dgCyhO8,199
|
|
95
|
+
machineconfig/jobs/python_generic_installers/config.json,sha256=r-pLmhPQh3Acy3I4xJ8Kn1Vmh9TY9khSLTDP8e0N0u4,20714
|
|
96
|
+
machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc,sha256=knHc0czISCOGlMdoXh0vJGcyr0TTsRAzNIk8iYo26VM,187
|
|
100
97
|
machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO1-5lxtbVGuXXoTTuvWjs54xlHHIAIIZYDAy8FSA,823
|
|
101
98
|
machineconfig/jobs/python_generic_installers/dev/config.json,sha256=dKzCQNuQigcuTGw1uvhHkhG-kvp2UPHpv0X6XOTYtBE,29760
|
|
102
99
|
machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
100
|
machineconfig/jobs/python_linux_installers/config.json,sha256=rn2mss51IgiAKKmhPdQ0nmTC_aPFm-6rIfHdCBlEFBE,5324
|
|
104
|
-
machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-
|
|
101
|
+
machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc,sha256=VPZBY1nwCPNRdlftZPBK6pJb-b44HTw7qG6ce-AvLuM,185
|
|
105
102
|
machineconfig/jobs/python_linux_installers/archive/config.json,sha256=haf6H05bW2AC-CptfZBeNeMoQK60w8iWmCZ2aDiL4O0,302
|
|
106
103
|
machineconfig/jobs/python_linux_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
104
|
machineconfig/jobs/python_linux_installers/dev/config.json,sha256=IxlCuMfWX-SWCnQxQN5JBlxDIAHPvZRlSFbszqERj2w,9951
|
|
@@ -110,180 +107,174 @@ machineconfig/jobs/python_windows_installers/config.json,sha256=_jMleGe2iqcOr4yc
|
|
|
110
107
|
machineconfig/jobs/python_windows_installers/archive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
108
|
machineconfig/jobs/python_windows_installers/archive/file.json,sha256=sF9TUg7DQnq6R6qqLa9tRWfaQRfYKi4cy4T1hZ8yegU,314
|
|
112
109
|
machineconfig/jobs/python_windows_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
-
machineconfig/jobs/python_windows_installers/dev/config.json,sha256
|
|
114
|
-
machineconfig/jobs/windows/start_terminal.ps1,sha256=
|
|
110
|
+
machineconfig/jobs/python_windows_installers/dev/config.json,sha256=-KWibjBW62-wbe6z28z9iK50kAIAyYxwtZZru37J1N4,4
|
|
111
|
+
machineconfig/jobs/windows/start_terminal.ps1,sha256=wy0fGwgb4U7xaHsONDrR4V5u9JEkG5vtt4NZUBx0ro8,473
|
|
115
112
|
machineconfig/jobs/windows/startup_file.cmd,sha256=qOqDwL0MmRB-fHauJKjOO0mhczyA3-cdRUyY1p7NCok,95
|
|
116
|
-
machineconfig/jobs/windows/archive/archive_pygraphviz.ps1,sha256=
|
|
113
|
+
machineconfig/jobs/windows/archive/archive_pygraphviz.ps1,sha256=XBMaFurdY8smiLdeP3iAm2p1x4Ui_F3Ty9lHikKSfUk,708
|
|
117
114
|
machineconfig/jobs/windows/archive/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
118
115
|
machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
116
|
+
machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
118
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
-
machineconfig/profile/create.py,sha256=
|
|
121
|
-
machineconfig/profile/create_hardlinks.py,sha256=
|
|
122
|
-
machineconfig/profile/shell.py,sha256=
|
|
123
|
-
machineconfig/profile/__pycache__/__init__.cpython-311.pyc,sha256=6gOzV1HQTZjV4MYfRkbhkhd7ipdMtvf7VaSsaducCf4,176
|
|
124
|
-
machineconfig/profile/__pycache__/create.cpython-311.pyc,sha256=b7M1MklDpLOoHATJ6wPt00FUC0L0CqyjfV4YLbhGaMA,8719
|
|
125
|
-
machineconfig/profile/__pycache__/shell.cpython-311.pyc,sha256=gxIxNHWggqVWGNjwjb5ZbY5LKfmBpkmPrVJ3sFJbHao,12508
|
|
119
|
+
machineconfig/profile/create.py,sha256=U-0LGlWYGoXgIUQaLp_1qWEGYlQvtxaTlFhkuHFeg2Y,6202
|
|
120
|
+
machineconfig/profile/create_hardlinks.py,sha256=_knhdUUEY2nyh2RR9_BM3NFEUejfYf62C7aYpKhO1oc,5566
|
|
121
|
+
machineconfig/profile/shell.py,sha256=7uoAfrrs3zBFeKynhRdXSukGJDoWjFiha5EiJ1n8Lew,10903
|
|
126
122
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
127
123
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
128
124
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
129
125
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
130
126
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
131
127
|
machineconfig/scripts/__init__.py,sha256=8aZPVoch_gcI0Ihcr30zQcPjRQMWiWzDnQXnOm7spzo,73
|
|
132
|
-
machineconfig/scripts/__pycache__/__init__.cpython-
|
|
133
|
-
machineconfig/scripts/
|
|
134
|
-
machineconfig/scripts/
|
|
135
|
-
machineconfig/scripts/linux/
|
|
136
|
-
machineconfig/scripts/linux/
|
|
137
|
-
machineconfig/scripts/linux/
|
|
138
|
-
machineconfig/scripts/linux/
|
|
139
|
-
machineconfig/scripts/linux/
|
|
140
|
-
machineconfig/scripts/linux/
|
|
141
|
-
machineconfig/scripts/linux/
|
|
142
|
-
machineconfig/scripts/linux/
|
|
143
|
-
machineconfig/scripts/linux/
|
|
144
|
-
machineconfig/scripts/linux/
|
|
145
|
-
machineconfig/scripts/linux/
|
|
146
|
-
machineconfig/scripts/linux/fire_agents,sha256=bX39bY9xf4hX-bn_Dy5XN3foIEaytLpW-oqFXYRrJ04,836
|
|
147
|
-
machineconfig/scripts/linux/ftpx,sha256=2GPRwSUhshI4BNxmOeMVoYlM6I7OQ0o3b8t6FlKDyRk,162
|
|
128
|
+
machineconfig/scripts/__pycache__/__init__.cpython-313.pyc,sha256=81r8paKCdivOaCaQwPtHlC0Jb5Fuq7vYx78AYUSgKHs,246
|
|
129
|
+
machineconfig/scripts/cloud/init.sh,sha256=yNsseCLMceO50Eg72ra6_NIJCxkGZmpmos1EXe-mvzY,4649
|
|
130
|
+
machineconfig/scripts/linux/checkout_versions,sha256=0W-Px2qAiswg8IElABV6awE-EHPzXOFcCxO1SBd8Rj4,187
|
|
131
|
+
machineconfig/scripts/linux/choose_wezterm_theme,sha256=Pn679w5en-_9NWD7PnGwB3EwyWA6cm28G6mGdrjNACM,233
|
|
132
|
+
machineconfig/scripts/linux/cloud_copy,sha256=H_IpiexwCO_NsCOf6_EX0q674qlK4evB65NEgb93ghU,180
|
|
133
|
+
machineconfig/scripts/linux/cloud_manager,sha256=1TfYXstwm2AWUwRdtW4x1DE-eacgAOIUAfDuMOFToKU,185
|
|
134
|
+
machineconfig/scripts/linux/cloud_mount,sha256=gDp1OMnzJMoyrlpdSYytPz5kK8C27ummmxGBsaTnmDs,532
|
|
135
|
+
machineconfig/scripts/linux/cloud_repo_sync,sha256=3Aqj8OUHlXAcch14q-3dYk0YxPK5VfCqlukqBqtS9rQ,375
|
|
136
|
+
machineconfig/scripts/linux/cloud_sync,sha256=XZTIRkvM5E8HFoX0mXCXQCpsgIlDVHJMFgshFq9zegE,523
|
|
137
|
+
machineconfig/scripts/linux/croshell,sha256=WsRJE7k2AKbiXTKmk81ZgllwgCAvEQD_I62cDkx6mhc,761
|
|
138
|
+
machineconfig/scripts/linux/devops,sha256=aEyDZOQEGxvPC5rmqil-NdnfjadaxA4h-ep1d_UefFY,545
|
|
139
|
+
machineconfig/scripts/linux/fire,sha256=XSP5lmcDHWmWO8E62ztgsCPopJA1zOy9N_6zgMfWP84,849
|
|
140
|
+
machineconfig/scripts/linux/fire_agents,sha256=qezkGuG8otoZbE4cwuEcqW5CagddufzadWKqbRHYchI,830
|
|
141
|
+
machineconfig/scripts/linux/ftpx,sha256=hF8WlySKa6r9O5pOQp6HJPU1_sbt8pnoSJnD_4K4HnQ,176
|
|
148
142
|
machineconfig/scripts/linux/fzf2g,sha256=YK_YLmxCm6zms24ytylgoUHnvWqq8oTdRTiskzDClS0,831
|
|
149
143
|
machineconfig/scripts/linux/fzfag,sha256=x0rX7vM_YjKLZ822D2Xh0HdaTj5kR_gG3g_5_w6ring,679
|
|
150
144
|
machineconfig/scripts/linux/fzffg,sha256=jjeeyFkWmBbwH2taRqC3EOzZep2KR-ZYoI4UI-5kHqg,1090
|
|
151
145
|
machineconfig/scripts/linux/fzfg,sha256=ClGnJZUsIk4y0qs3W5iXGo-nd0FaqAHMsnh8uoXQFy8,1190
|
|
152
146
|
machineconfig/scripts/linux/fzfrga,sha256=xSdws6ae28ZXkkqz_uupZ0MYw_vxE2qpLT2DLS3WITM,460
|
|
153
|
-
machineconfig/scripts/linux/gh_models,sha256=
|
|
154
|
-
machineconfig/scripts/linux/kill_process,sha256=
|
|
155
|
-
machineconfig/scripts/linux/mcinit,sha256=
|
|
147
|
+
machineconfig/scripts/linux/gh_models,sha256=NkSBS3AcAAwVPnQ0kXL3Ko5O1Xl0kYmQA81vZApSBGU,181
|
|
148
|
+
machineconfig/scripts/linux/kill_process,sha256=CjE6M1U9y70VzgX6GMiflN6ihvCFR6IZwYa3ipb7PTY,227
|
|
149
|
+
machineconfig/scripts/linux/mcinit,sha256=Vqp6WII0ffWeKUFnKlR4uYqaXolhrYUg4a6vLrHB_O0,847
|
|
156
150
|
machineconfig/scripts/linux/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
157
151
|
machineconfig/scripts/linux/mount_nfs,sha256=HLWF7ocUjuDXaFFtOzEA9JlROTcsbDEhgosBdBpBUUA,2061
|
|
158
152
|
machineconfig/scripts/linux/mount_nw_drive,sha256=fZWV2x7Slne2c0NU-65qXBmTIeJNvjAHY-NqkDgoq1U,2527
|
|
159
153
|
machineconfig/scripts/linux/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
|
|
160
154
|
machineconfig/scripts/linux/programs,sha256=KlKTLhreJ0CRHvtm61ilOtVm8VUia7gb0zWD1IP6rNY,472
|
|
161
|
-
machineconfig/scripts/linux/repos,sha256=
|
|
162
|
-
machineconfig/scripts/linux/scheduler,sha256=
|
|
155
|
+
machineconfig/scripts/linux/repos,sha256=m_4hu6dkgLphd7EO5NIG5z0dNC1nyGgHck_EnGIEbWc,517
|
|
156
|
+
machineconfig/scripts/linux/scheduler,sha256=fYdjQHI3ku68xwv0O7oWWRpgm5Pd1hFwAaiupzivZwo,178
|
|
163
157
|
machineconfig/scripts/linux/share_cloud.sh,sha256=75IzCm7Nob1wO-zlfaNyPPod1IjAsVCG5lcMFdXmiI4,3010
|
|
164
158
|
machineconfig/scripts/linux/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
|
|
165
159
|
machineconfig/scripts/linux/share_smb,sha256=HZX8BKgMlS9JzkGIYnxTsPvoxEBBuVLVkqzR3pmGFGY,20
|
|
166
160
|
machineconfig/scripts/linux/skrg,sha256=JgQJGwxaChr148bDnpTB0rrqZMe2o2zGSDA9x_oUhWM,133
|
|
167
161
|
machineconfig/scripts/linux/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
|
|
168
|
-
machineconfig/scripts/linux/start_slidev,sha256=
|
|
169
|
-
machineconfig/scripts/linux/start_terminals,sha256=
|
|
162
|
+
machineconfig/scripts/linux/start_slidev,sha256=MYQmrcx-3WP1gzUtSPpgbbGIlxOoRUWQe5GZa9FZOx4,616
|
|
163
|
+
machineconfig/scripts/linux/start_terminals,sha256=SRsk9M7dizTHTyO1Msu6KFCDhIW-cFo_1xaiZ_D83AM,260
|
|
170
164
|
machineconfig/scripts/linux/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
171
|
-
machineconfig/scripts/linux/url2md,sha256=
|
|
172
|
-
machineconfig/scripts/linux/
|
|
165
|
+
machineconfig/scripts/linux/url2md,sha256=eOPlXIwgpPzVYB_x217hISkQIzIZEGCEOQsBMLA-Pds,171
|
|
166
|
+
machineconfig/scripts/linux/warp-cli.sh,sha256=shFFZ9viet_DSEEHT8kxlGRHoJpO6o85pKYnc3rIkaA,3868
|
|
167
|
+
machineconfig/scripts/linux/wifi_conn,sha256=zsmP1e3WK1apdafjYjfsdXJY8YItzFEp9f1QP3614ec,513
|
|
173
168
|
machineconfig/scripts/linux/z_ls,sha256=ATZtu0ccN3AKvAOxkwLq1xgQjJ3en5byEWJ3Q8afnNg,3340
|
|
174
169
|
machineconfig/scripts/linux/archive/tmate_conn,sha256=mDymJCJ-scdYhoG06EAMncjoSAj8irg3YqZzP69vLgI,378
|
|
175
170
|
machineconfig/scripts/linux/archive/tmate_start,sha256=eyaknKoVb-XtJnZcfB0CCxm9z9zkD0dsuIDeFLKbIO8,452
|
|
176
171
|
machineconfig/scripts/linux/archive/transfer_wsl_win,sha256=KzSaO4CWbuM6UNoNasdJhaWWjRhN0lWIiJrBZMmONz0,137
|
|
177
172
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
|
-
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=
|
|
179
|
-
machineconfig/scripts/python/cloud_copy.py,sha256=
|
|
173
|
+
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=2JjmYE9amtMFIHEegSTt7BLiX0ybIRhSoKwZfuuomzo,3259
|
|
174
|
+
machineconfig/scripts/python/cloud_copy.py,sha256=uc9TkfkGiRX7c9jomJTABijXq3kq2-wfBj887yVKMkE,8584
|
|
180
175
|
machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
|
|
181
|
-
machineconfig/scripts/python/cloud_mount.py,sha256=
|
|
182
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256=
|
|
183
|
-
machineconfig/scripts/python/cloud_sync.py,sha256=
|
|
184
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
185
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
186
|
-
machineconfig/scripts/python/devops_add_identity.py,sha256=
|
|
187
|
-
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=
|
|
188
|
-
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=
|
|
189
|
-
machineconfig/scripts/python/devops_devapps_install.py,sha256=
|
|
190
|
-
machineconfig/scripts/python/devops_update_repos.py,sha256=
|
|
191
|
-
machineconfig/scripts/python/dotfile.py,sha256=
|
|
192
|
-
machineconfig/scripts/python/fire_agents.py,sha256=
|
|
193
|
-
machineconfig/scripts/python/fire_jobs.py,sha256=
|
|
194
|
-
machineconfig/scripts/python/ftpx.py,sha256=
|
|
176
|
+
machineconfig/scripts/python/cloud_mount.py,sha256=SXYU8EgdVjgm-WUjV7hgZb-6Fq-7oYRTjJYzFDaK7M8,6601
|
|
177
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=wLAlxo4WFxocM98Q0WnDwrd1X_1tIH4O1btvTvJ_Xjc,9607
|
|
178
|
+
machineconfig/scripts/python/cloud_sync.py,sha256=cJIMzfwzg5hsizkdOP5xgDRJyHzNbANzGUQi6oxlQKU,3844
|
|
179
|
+
machineconfig/scripts/python/croshell.py,sha256=ttNdwI1ErBSaN-nlsXT2R6S-X66I176b28HADbPNlxc,9327
|
|
180
|
+
machineconfig/scripts/python/devops.py,sha256=a8UngP3h62TxAt8PbDs5PgyHrCikiYS-ijRxTtE0LdM,8246
|
|
181
|
+
machineconfig/scripts/python/devops_add_identity.py,sha256=Smu8vIe6_q_df1SgBPadv17Smmr6pjTQuDeeWh66Cx4,3929
|
|
182
|
+
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=wSd7NkJSAKGeIc6my4d7hvh1CrudQW0vKGMLMuejlgA,6696
|
|
183
|
+
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=PotVX3zy-ArAIPapB9E8kwp_qznAOolJ9fH5jJBqqY8,6110
|
|
184
|
+
machineconfig/scripts/python/devops_devapps_install.py,sha256=_Qr8dWcwuMZ2qChKFILFfzMMCV60e5qtYf-nWS4DaG8,8006
|
|
185
|
+
machineconfig/scripts/python/devops_update_repos.py,sha256=WkNmrCgx7Y87QRsPehJHgUp7g7d9eN-rCxhCJgtaibQ,7151
|
|
186
|
+
machineconfig/scripts/python/dotfile.py,sha256=ca3LMxazEEKrQokVzIVVpRwkg-5-3PZCgEBZ1kQvz_4,2178
|
|
187
|
+
machineconfig/scripts/python/fire_agents.py,sha256=yGJ4GDVAf2c-sbpQLbhw2IjuMgpG01REKnkdPqHHdbw,9004
|
|
188
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=1Eus4LBMFpkADUZNzwkA9sbWn_CtE-BsXRxBq55vycY,19684
|
|
189
|
+
machineconfig/scripts/python/ftpx.py,sha256=V7I91Jn4UIIh6K_oy9RbZjPy7T2OfM3VVQBdwjvj1gA,9784
|
|
195
190
|
machineconfig/scripts/python/get_zellij_cmd.py,sha256=6irkwgbeC18OWBnTBAF4i0klqZ6GlwagXaQIUBRFxVQ,596
|
|
196
|
-
machineconfig/scripts/python/gh_models.py,sha256=
|
|
197
|
-
machineconfig/scripts/python/mount_nfs.py,sha256=
|
|
198
|
-
machineconfig/scripts/python/mount_nw_drive.py,sha256=
|
|
199
|
-
machineconfig/scripts/python/mount_ssh.py,sha256=
|
|
191
|
+
machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
|
|
192
|
+
machineconfig/scripts/python/mount_nfs.py,sha256=3rcP8efrQ8DJ12DmeTdBT2x0I9MBgvchtLK66AOJLGg,3232
|
|
193
|
+
machineconfig/scripts/python/mount_nw_drive.py,sha256=NZjpKL7BVrcGpZeVX6NZ7mugJb4KFIYyHLc2ZFYh5s8,1499
|
|
194
|
+
machineconfig/scripts/python/mount_ssh.py,sha256=Rs3SPXrAivBFeI720qaudh9MshY8xV_l6dn7zyItTMg,2172
|
|
200
195
|
machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
|
|
201
196
|
machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
202
|
-
machineconfig/scripts/python/repos.py,sha256=
|
|
203
|
-
machineconfig/scripts/python/scheduler.py,sha256=
|
|
197
|
+
machineconfig/scripts/python/repos.py,sha256=6S-Hx0CqkLxoaw2CFt9ouG8wiuhzhIGvWXXqseEGjTw,11344
|
|
198
|
+
machineconfig/scripts/python/scheduler.py,sha256=7IBjMMOHMkklcWzYwz93EH9XzbJ5uPqU03bJ_lYbRNo,3083
|
|
204
199
|
machineconfig/scripts/python/snapshot.py,sha256=b2JakHHNFkPHg49q6U1OyQpL8sz5hLSIwoCHfH1kURE,1027
|
|
205
|
-
machineconfig/scripts/python/start_slidev.py,sha256=
|
|
206
|
-
machineconfig/scripts/python/start_terminals.py,sha256=
|
|
207
|
-
machineconfig/scripts/python/viewer.py,sha256=
|
|
200
|
+
machineconfig/scripts/python/start_slidev.py,sha256=BNm6O7Mfs_e8YKCL1umxGbsuYRHwYQKpdsXo5WSAS3A,4394
|
|
201
|
+
machineconfig/scripts/python/start_terminals.py,sha256=6Ynw-XDqJzIxj9PbH0KQjdUcpM0GKXrP3l7pyOTK8Ro,6129
|
|
202
|
+
machineconfig/scripts/python/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
208
203
|
machineconfig/scripts/python/viewer_template.py,sha256=g_sS2uZPN96sQOGereSJcrg6z1erM2MZPlw9vwZhSxY,3945
|
|
209
|
-
machineconfig/scripts/python/wifi_conn.py,sha256=
|
|
210
|
-
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=
|
|
211
|
-
machineconfig/scripts/python/__pycache__/__init__.cpython-
|
|
212
|
-
machineconfig/scripts/python/__pycache__/
|
|
213
|
-
machineconfig/scripts/python/__pycache__/
|
|
214
|
-
machineconfig/scripts/python/__pycache__/
|
|
215
|
-
machineconfig/scripts/python/__pycache__/
|
|
216
|
-
machineconfig/scripts/python/__pycache__/
|
|
217
|
-
machineconfig/scripts/python/
|
|
218
|
-
machineconfig/scripts/python/
|
|
219
|
-
machineconfig/scripts/python/
|
|
220
|
-
machineconfig/scripts/python/__pycache__/
|
|
221
|
-
machineconfig/scripts/python/__pycache__/
|
|
222
|
-
machineconfig/scripts/python/__pycache__/
|
|
223
|
-
machineconfig/scripts/python/
|
|
224
|
-
machineconfig/scripts/python/
|
|
225
|
-
machineconfig/scripts/python/
|
|
226
|
-
machineconfig/scripts/python/ai/
|
|
227
|
-
machineconfig/scripts/python/ai/
|
|
228
|
-
machineconfig/scripts/python/ai/
|
|
204
|
+
machineconfig/scripts/python/wifi_conn.py,sha256=cQ6brIVgQp7JK3ZKYV-eX0G05PVLiZk08eQh1itzoMM,16149
|
|
205
|
+
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=sbw3l5ygR748qU-5XSRSScpXo0LI6aR74gxsLE4QLGE,3645
|
|
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
|
|
212
|
+
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
machineconfig/scripts/python/ai/generate_files.py,sha256=2eHwbjoAs7a2uTnhTVA3kv8DdR0GnheWMyQZOUTxcws,2921
|
|
214
|
+
machineconfig/scripts/python/ai/mcinit.py,sha256=NpV5YdOJ5vUeCSihEfCGt1RRIiGh7vgiLc7Oyg14Myc,5275
|
|
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
|
|
218
|
+
machineconfig/scripts/python/ai/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
219
|
+
machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
220
|
+
machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
221
|
+
machineconfig/scripts/python/ai/configs/.gemini/settings.json,sha256=hv0POw6ySh8vukLd2Zebt7CH4Aiw1W26ge-Tl1fxgoQ,2301
|
|
222
|
+
machineconfig/scripts/python/ai/instructions/python/dev.instructions.md,sha256=eKgTj1Nv11DHvvjUKqSi-DhyLwpVTfWl1x__d256baw,4481
|
|
223
|
+
machineconfig/scripts/python/ai/prompts/allLintersAndTypeCheckers.prompt.md,sha256=0YO5BvqKMxoB6Xs4MR4dv3g7iLgviUc_JoqXdvfxXqY,46
|
|
224
|
+
machineconfig/scripts/python/ai/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
225
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=W6UAn5dGA7Bn4wsTicT84KKOYqF6WI5jrWhBWo8FbsI,1953
|
|
229
226
|
machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39JEZjCdvDrXYUMVvZNY,1163
|
|
230
|
-
machineconfig/scripts/python/archive/tmate_conn.py,sha256=
|
|
231
|
-
machineconfig/scripts/python/archive/tmate_start.py,sha256=
|
|
227
|
+
machineconfig/scripts/python/archive/tmate_conn.py,sha256=C36Kb1E04UPGy7oAQ9IRpcdK8nRa0yr9zjq-fZUalcI,1231
|
|
228
|
+
machineconfig/scripts/python/archive/tmate_start.py,sha256=OeCKT7GLL77IafF_LIN31QYGAh_JClv8xMxDccc_1dc,1518
|
|
232
229
|
machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
-
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=
|
|
234
|
-
machineconfig/scripts/python/helpers/helpers2.py,sha256=
|
|
235
|
-
machineconfig/scripts/python/helpers/helpers4.py,sha256=
|
|
236
|
-
machineconfig/scripts/python/helpers/helpers5.py,sha256=
|
|
237
|
-
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=
|
|
238
|
-
machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-
|
|
239
|
-
machineconfig/scripts/python/helpers/__pycache__/
|
|
240
|
-
machineconfig/scripts/
|
|
241
|
-
machineconfig/scripts/
|
|
242
|
-
machineconfig/scripts/
|
|
243
|
-
machineconfig/scripts/
|
|
244
|
-
machineconfig/scripts/python/helpers/__pycache__/repo_sync_helpers.cpython-311.pyc,sha256=U0HPSMRmaDkysn6N8heE4fMM5017CtK4hJQVJUJmBT0,7758
|
|
245
|
-
machineconfig/scripts/windows/activate_ve.ps1,sha256=1YDd90eIhJ680a-tPHeBesnIVLHWqLn1DU66B-2oA7E,1875
|
|
246
|
-
machineconfig/scripts/windows/checkout_version.ps1,sha256=l6U-qSroHFd_fDa6Z0uSJ5Yxfr0D3nW5uotJRQ7zpI8,148
|
|
247
|
-
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=9_lPcTMuZhaxi860o5lyQWujzMRqm3ATgeGbboECtfI,367
|
|
248
|
-
machineconfig/scripts/windows/cloud_copy.ps1,sha256=ubLWKzpF6RMU35BLqSRHtVqTLEwActuegWMPmuJHWbg,495
|
|
249
|
-
machineconfig/scripts/windows/cloud_manager.ps1,sha256=ndmz60_AEGiNjSROL8s27BHLINipY1BTfq4wFVUaaNA,262
|
|
230
|
+
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=Zm_pVme1vVRzerrHrxVIU2Bf2pzSjVbNoiBEecZY-ds,4962
|
|
231
|
+
machineconfig/scripts/python/helpers/helpers2.py,sha256=4mh6ID3xKlPc_SpMsX5la7IQ9Ra0sIBtTLLassOuXYY,7162
|
|
232
|
+
machineconfig/scripts/python/helpers/helpers4.py,sha256=EjmyGWYzFYdWz_nirYQjf5oCIDTusVI7JpzIjg3k2u4,7507
|
|
233
|
+
machineconfig/scripts/python/helpers/helpers5.py,sha256=riXysqaW9skVZ_3J9Gn7eOLNnpsetgYZlaReryx94Cc,1122
|
|
234
|
+
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=26gQHKR0yM0D87W3lfwYboKxL4y6C_xv1n_dFqI2DqE,4450
|
|
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
|
|
237
|
+
machineconfig/scripts/windows/checkout_version.ps1,sha256=5bwjbKoBeyFJ6DEGgQiWWHp-VahrtvfU0w_g69zP3CM,131
|
|
238
|
+
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=qDRHCeglCm3n_ooaq3Wlzc-WLpnX9Ez7KL31j2b_wlo,316
|
|
239
|
+
machineconfig/scripts/windows/cloud_copy.ps1,sha256=B1s0tRXvqg-evUf1YzGaCdJNAa-MMc7gY3JUgkztZGA,417
|
|
240
|
+
machineconfig/scripts/windows/cloud_manager.ps1,sha256=fsjk23GJ_kX7jHiPvlK7FAfqm8dUz-wVe8x9QmpdNbI,281
|
|
250
241
|
machineconfig/scripts/windows/cloud_mount.ps1,sha256=y927i24HzcUEG1uT-BIWRH0hij7iYmN19H1HWvWLPLc,718
|
|
251
|
-
machineconfig/scripts/windows/cloud_repo_sync.ps1,sha256=
|
|
252
|
-
machineconfig/scripts/windows/cloud_sync.ps1,sha256=
|
|
253
|
-
machineconfig/scripts/windows/croshell.ps1,sha256=
|
|
254
|
-
machineconfig/scripts/windows/devops.ps1,sha256=
|
|
255
|
-
machineconfig/scripts/windows/dotfile.ps1,sha256=
|
|
256
|
-
machineconfig/scripts/windows/fire.ps1,sha256=
|
|
257
|
-
machineconfig/scripts/windows/ftpx.ps1,sha256=
|
|
242
|
+
machineconfig/scripts/windows/cloud_repo_sync.ps1,sha256=gp0CJOYCKeY_GLJMvtH4C3IWn8aib8FXjIMa3gWMNn8,219
|
|
243
|
+
machineconfig/scripts/windows/cloud_sync.ps1,sha256=aujgVLNilqK7pBpu8mqenXcYtCh8BZTrsOWsTh_BQvQ,497
|
|
244
|
+
machineconfig/scripts/windows/croshell.ps1,sha256=5pe-lr5YvJrVrcd76Jppu2qeBD76M82NpiI5uQXk44M,1318
|
|
245
|
+
machineconfig/scripts/windows/devops.ps1,sha256=UksrFjKnAd69TxpOc1qkvgpNvaqZnjRtzSIn03n_yM4,780
|
|
246
|
+
machineconfig/scripts/windows/dotfile.ps1,sha256=ku3ugbR21XMZ3QL2s681wcqQTdzvugcupK0MsRGsl20,203
|
|
247
|
+
machineconfig/scripts/windows/fire.ps1,sha256=eMPeFtTwVoHZepD814GLlcVjNxGq1N0UKP0p6u7Aigc,1226
|
|
248
|
+
machineconfig/scripts/windows/ftpx.ps1,sha256=of-mOeNb5xQYzmJB3RW9oaSHFEEKWPE5cN6hdsci99k,192
|
|
258
249
|
machineconfig/scripts/windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
|
|
259
250
|
machineconfig/scripts/windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
|
|
260
251
|
machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
|
|
261
|
-
machineconfig/scripts/windows/gpt.ps1,sha256=
|
|
252
|
+
machineconfig/scripts/windows/gpt.ps1,sha256=U2EBC1vKBXqTIlzJJfd5iQ9NAk7z_i9NEbteUO1GrwY,382
|
|
262
253
|
machineconfig/scripts/windows/grep.ps1,sha256=sUP_cXtqPEWLQ8_TdGJX7_-CO6CQYTP4pA-ZmkdPLdY,49
|
|
263
|
-
machineconfig/scripts/windows/kill_process.ps1,sha256=
|
|
264
|
-
machineconfig/scripts/windows/mcinit.ps1,sha256=
|
|
265
|
-
machineconfig/scripts/windows/mount_nfs.ps1,sha256=
|
|
254
|
+
machineconfig/scripts/windows/kill_process.ps1,sha256=LAcWToitWLcoOHk9yu9It8W5l9XrsAm2_c42XJrlae4,172
|
|
255
|
+
machineconfig/scripts/windows/mcinit.ps1,sha256=hNhvQO4UyxEy2x3OatEbH-q9hD3dOyGzAkxj6PdYIX0,153
|
|
256
|
+
machineconfig/scripts/windows/mount_nfs.ps1,sha256=mTR-KcOYJaljWzymKTbzj3jrl5EMgS33mHizU-uO7yo,2089
|
|
266
257
|
machineconfig/scripts/windows/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
267
258
|
machineconfig/scripts/windows/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
268
|
-
machineconfig/scripts/windows/mount_ssh.ps1,sha256=
|
|
259
|
+
machineconfig/scripts/windows/mount_ssh.ps1,sha256=occ_cFU02ZifsjJ7VwwBsYcOCFE12LJwcgd64cSY0tM,396
|
|
269
260
|
machineconfig/scripts/windows/nano.ps1,sha256=H1PNN1x3UnOCGwijgMij-K2ZM2E20sfsLTEEap-W5dQ,50
|
|
270
261
|
machineconfig/scripts/windows/neofetch.ps1,sha256=U2bcNNMv_IHz9cUZPTxC2-TetOFOsKAIi-Q9ryIgZqM,150
|
|
271
|
-
machineconfig/scripts/windows/pomodoro.ps1,sha256=
|
|
272
|
-
machineconfig/scripts/windows/py2exe.ps1,sha256=
|
|
262
|
+
machineconfig/scripts/windows/pomodoro.ps1,sha256=39FpFG4ytX1sl478eHioUKpMhif2Smeuf-Xjfz026tk,270
|
|
263
|
+
machineconfig/scripts/windows/py2exe.ps1,sha256=1UE_7f4bHpx3PTKxEHlhH-HXlTbPm046fvi8nJhQv3U,285
|
|
273
264
|
machineconfig/scripts/windows/reload_path.ps1,sha256=81hQY18LFApVZWFiUfgMzzPH2pJ1WD1fHInfmicBZFA,217
|
|
274
|
-
machineconfig/scripts/windows/repos.ps1,sha256=
|
|
275
|
-
machineconfig/scripts/windows/scheduler.ps1,sha256=
|
|
265
|
+
machineconfig/scripts/windows/repos.ps1,sha256=ZxOsMBUBpqNBqd8A9e_djSQf6JoMA4c1GYR5uyrMmwk,864
|
|
266
|
+
machineconfig/scripts/windows/scheduler.ps1,sha256=s8CSYC2i-DwdF29MsDLDOt040nzApXTUEhNES5ZZnVo,155
|
|
276
267
|
machineconfig/scripts/windows/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
277
268
|
machineconfig/scripts/windows/share_nfs.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
269
|
machineconfig/scripts/windows/share_smb.ps1,sha256=_iJLdgm4pK6Qhz9MpgJlDKHOul38pT8F_VQXqPNBZDE,543
|
|
279
|
-
machineconfig/scripts/windows/snapshot.ps1,sha256=
|
|
280
|
-
machineconfig/scripts/windows/start_slidev.ps1,sha256=
|
|
281
|
-
machineconfig/scripts/windows/start_terminals.ps1,sha256=
|
|
270
|
+
machineconfig/scripts/windows/snapshot.ps1,sha256=lkTikgiM4CweAKyrSyaPj73UQ3KBTuR7tLgxwb5rCzg,148
|
|
271
|
+
machineconfig/scripts/windows/start_slidev.ps1,sha256=Y41Vi749kUPNHGta3MIUnWtmuMyrVWCuW5xnIR6I8jI,457
|
|
272
|
+
machineconfig/scripts/windows/start_terminals.ps1,sha256=5s1OWgZ3q-8lyxSUeT4jFCrBMCWU0Uq3f79o5uNSA5M,401
|
|
282
273
|
machineconfig/scripts/windows/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
283
|
-
machineconfig/scripts/windows/wifi_conn.ps1,sha256=
|
|
274
|
+
machineconfig/scripts/windows/wifi_conn.ps1,sha256=ebS0-hPSOlt1bHl_ZA4V6Wi0VlvIG76L6e3Jr_VFFUs,210
|
|
284
275
|
machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1,sha256=dGKAoP8WsQzHiAZjD8WT1Ne8RRQU8xf9HdH9bDkihh4,1720
|
|
285
276
|
machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1,sha256=dr6t49UCnMHAhA0AR4gHluN0HvS5wzyygCNmjORfknU,2715
|
|
286
|
-
machineconfig/scripts/windows/wsl_windows_transfer.ps1,sha256=
|
|
277
|
+
machineconfig/scripts/windows/wsl_windows_transfer.ps1,sha256=BfjjuRS_UOKtXSSN1lYl014gSy_p2BhTuFPp8dezQng,165
|
|
287
278
|
machineconfig/scripts/windows/archive/gource2vid.ps1,sha256=tkMdMJkvguoKhzRb2yCJr4l8W54bdIt2yHl0oPPWKxE,484
|
|
288
279
|
machineconfig/scripts/windows/archive/im2text.ps1,sha256=yf9yVPiuQoagpOc0mzFaWNmoCLckey_GmSByqk3diHQ,784
|
|
289
280
|
machineconfig/scripts/windows/archive/secure_pull.ps1,sha256=7VR6EvLmWXIqUZDQcd5nb-OYkKBOkOcCJDFJr4rhf9A,1606
|
|
@@ -304,7 +295,7 @@ machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42Wq
|
|
|
304
295
|
machineconfig/settings/keyboard/kanata/kanata.kbd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
296
|
machineconfig/settings/lf/linux/colors,sha256=uSW9O3CkiVomxK8-JN8hQRcM71yADuOSjichbfBFTpg,4148
|
|
306
297
|
machineconfig/settings/lf/linux/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
307
|
-
machineconfig/settings/lf/linux/lfrc,sha256
|
|
298
|
+
machineconfig/settings/lf/linux/lfrc,sha256=qnHdKZ_DYiN9TguJXpVmB-S79GkNFUS6bzYFZjfvNlY,5385
|
|
308
299
|
machineconfig/settings/lf/linux/autocall/delete.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
300
|
machineconfig/settings/lf/linux/autocall/on-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
301
|
machineconfig/settings/lf/linux/autocall/on-quit.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -341,10 +332,12 @@ machineconfig/settings/lf/windows/autocall/rename.ps1,sha256=47DEQpj8HBSa-_TImW-
|
|
|
341
332
|
machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJudwD3SVGhQ,1958
|
|
342
333
|
machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
|
|
343
334
|
machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
|
|
344
|
-
machineconfig/settings/linters/.ruff.toml,sha256=
|
|
335
|
+
machineconfig/settings/linters/.ruff.toml,sha256=CiLFhFLJzQc1UvJF2ecRjO4hjmC_xx9j0JCKHKi-po8,1655
|
|
336
|
+
machineconfig/settings/linters/.ruff_cache/.gitignore,sha256=njpg8ebsSuYCFcEdVLFxOSdF7CXp3e1DPVvZITY68xY,35
|
|
337
|
+
machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw5Pk-Ma4,43
|
|
345
338
|
machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
339
|
machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=
|
|
340
|
+
machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=zj-VDn-Av4IomJ3EqM1gf_6VsZ9ieG815O9QK1slyPI,792
|
|
348
341
|
machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
|
|
349
342
|
machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=qn_bPy8eSWMAlhA9PLVO_vxqlSlzzrQ1CldFjSKpLD4,864
|
|
350
343
|
machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
|
|
@@ -361,7 +354,7 @@ machineconfig/settings/shells/bash/init.sh,sha256=EOCNg7h4roNDTappkddwy7U_0R_NKi
|
|
|
361
354
|
machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
|
|
362
355
|
machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
356
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256
|
|
357
|
+
machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=-RINJ7SH3ieHGw2C1_ENnRitbVM9u26sUYD8kF7I3uQ,3503
|
|
365
358
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
366
359
|
machineconfig/settings/shells/nushell/config.nu,sha256=ug0E0NXNlCzgStScFN6VTsAkUaOTPJZB69P-LS5L2VE,1047
|
|
367
360
|
machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
|
|
@@ -370,10 +363,10 @@ machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
370
363
|
machineconfig/settings/shells/starship/starship.toml,sha256=5rQTY7ZpKnrnhgu2Y9OJKUYMz5lPLIftO1p1VRuVZwQ,1150
|
|
371
364
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
372
365
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
373
|
-
machineconfig/settings/shells/wt/settings.json,sha256=
|
|
366
|
+
machineconfig/settings/shells/wt/settings.json,sha256=XRqyjphS5EckkHkdYkw6b5btBgnaoic-vn5oCPaPVvI,10135
|
|
374
367
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
375
|
-
machineconfig/settings/svim/linux/init.toml,sha256=
|
|
376
|
-
machineconfig/settings/svim/windows/init.toml,sha256=
|
|
368
|
+
machineconfig/settings/svim/linux/init.toml,sha256=hQjQvkljszqy_hGJi6KFajfhERJPxicz5k06MfWD5-Q,1464
|
|
369
|
+
machineconfig/settings/svim/windows/init.toml,sha256=IEZj2KRRvjSa1l3qjDjAK9DPc493Zl24RVgbQNLzKNQ,1452
|
|
377
370
|
machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
|
|
378
371
|
machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
|
|
379
372
|
machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
|
|
@@ -397,46 +390,50 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
|
|
|
397
390
|
machineconfig/setup_linux/others/openssh-server_add_pub_key.sh,sha256=UiJcD1o4UekKKtp5YJKRq135PpqdTLXy7M6HvQ-Qum4,1993
|
|
398
391
|
machineconfig/setup_linux/web_shortcuts/all.sh,sha256=Dhy7bL5e3yfG6O0K42ZUBPLJKNjsGnXisko6a2dxhOY,2187
|
|
399
392
|
machineconfig/setup_linux/web_shortcuts/ascii_art.sh,sha256=RWcxH_Db7WHH37PclYmc92o6zAS557wGZxcYTuyTUZ0,3550
|
|
400
|
-
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=
|
|
401
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
393
|
+
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=HKX-XyfUUfYY89iDdNsOq__HOuYuwarE28Qz-KsAa8I,172
|
|
394
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=te7AuCwtzsPZ2I-5s6hqS4xGYaoGPFf9kWm-zJ525ss,7758
|
|
402
395
|
machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=U7eiioxrN1JHgtEH6pzc_0IzagELbtVFwkP2eQNSdIY,2165
|
|
396
|
+
machineconfig/setup_linux/web_shortcuts/tmp.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
403
397
|
machineconfig/setup_linux/web_shortcuts/update_system.sh,sha256=xQ1RxpsRhPFGpoDv01XTrB-BsqnbWiw7LMAh7Fc0uWs,1926
|
|
404
398
|
machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
399
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
406
400
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
407
|
-
machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=
|
|
408
|
-
machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=
|
|
409
|
-
machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=
|
|
410
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
401
|
+
machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=L03JJ4Jua_bzgtF3kuDOkuQ-Nqaj_ZcV3CFEkCHD1WI,908
|
|
402
|
+
machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=pUVTtgKHOdgaK3hxz7JoMZzTyQ7vm2RfE_OJgB7e4cw,1270
|
|
403
|
+
machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=cTQnegGLGYhuFY3YuuAj2ortN__adA2dznk2E737h4A,644
|
|
404
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=jRTeWqHtS6FjB-CxlSSo66HsJddrARWd-9AZFyyucAA,7645
|
|
411
405
|
machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
|
|
412
406
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
|
-
machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=
|
|
414
|
-
machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=
|
|
415
|
-
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=
|
|
407
|
+
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=xUYTAiihvaZXttAuU8y8MwmYAc3w20IYkp4SivA5oSY,4609
|
|
409
|
+
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=71ipq-upe85rtS364lxr98Nd9XwCmJwbpv_8IfW6BIA,9207
|
|
416
410
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
|
-
machineconfig/utils/code.py,sha256=
|
|
418
|
-
machineconfig/utils/installer.py,sha256=
|
|
419
|
-
machineconfig/utils/io_save.py,sha256=
|
|
420
|
-
machineconfig/utils/links.py,sha256=
|
|
421
|
-
machineconfig/utils/
|
|
422
|
-
machineconfig/utils/
|
|
423
|
-
machineconfig/utils/
|
|
424
|
-
machineconfig/utils/
|
|
425
|
-
machineconfig/utils/
|
|
426
|
-
machineconfig/utils/
|
|
427
|
-
machineconfig/utils/
|
|
428
|
-
machineconfig/utils/
|
|
429
|
-
machineconfig/utils/
|
|
411
|
+
machineconfig/utils/code.py,sha256=RaOPDrDm5a0373ll23hfUN1Qx0w4HU1OBGftROoYc1g,4625
|
|
412
|
+
machineconfig/utils/installer.py,sha256=KxOaN-iB7GCYDv1YvvN231gI04FaBeIEgI6mQ0ePJtA,10917
|
|
413
|
+
machineconfig/utils/io_save.py,sha256=iC1YTH0MOlBS8bWUB8Xhdl4CG_bEKQ3OVwMohdCOazI,3145
|
|
414
|
+
machineconfig/utils/links.py,sha256=mBvTA8tECb6t3xdlWQNctEA-6iguEp3BiLP_5SMlXZE,5186
|
|
415
|
+
machineconfig/utils/notifications.py,sha256=CPGfWULlBB6YnnhQ1wL_NuOAB3wFAyYJmayMHfTT3UY,8284
|
|
416
|
+
machineconfig/utils/options.py,sha256=1njCS3pZ6FU2rqgPn-m3WYyrLH3gliK1mo8sZnTxM_I,8428
|
|
417
|
+
machineconfig/utils/path.py,sha256=OjZmCprrl462bqTvTdZ8hL7Suh8OGAapBwvAn745x7Y,8008
|
|
418
|
+
machineconfig/utils/path_reduced.py,sha256=G-wTljbVhgrNJAlnn1S0_c3peuD54i32sSF5vxYxXYw,52814
|
|
419
|
+
machineconfig/utils/procs.py,sha256=ywf7ka0wyRbI-hU1kGKtGufIow1GbrxNpW1-60Nqnfg,10826
|
|
420
|
+
machineconfig/utils/scheduling.py,sha256=4RRrrtjzOxk02IZENhIw6aGj5eMaWr0Tb73R68lhbGY,11271
|
|
421
|
+
machineconfig/utils/ssh.py,sha256=wTawYWP5p3gAmE1Rf5d6SANowNa87H9HW5m1DXDTqLQ,21163
|
|
422
|
+
machineconfig/utils/terminal.py,sha256=SIaRX9cIeBwu_G18w5U-q4h3nKlVFQSuLdO9pngvbrg,12221
|
|
423
|
+
machineconfig/utils/utils.py,sha256=1yDPc5-4LpndKUNaSavO_MsoTG0HK4IlQTH_K7H-A0g,4048
|
|
424
|
+
machineconfig/utils/utils2.py,sha256=exnvGWnyVDNAaUFMtl1b3_fKlg2vNfJ9yOoGi0ercDY,2598
|
|
425
|
+
machineconfig/utils/utils5.py,sha256=x-9ZgtIo1QnHfQ9xznvYhar4aEqiU_TfNrfM4idD-Mk,15169
|
|
426
|
+
machineconfig/utils/ve.py,sha256=es5Hu9TpDx17DeN9KWreShDsXD59FBYAIwSbH7IBqU4,2571
|
|
430
427
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
|
-
machineconfig/utils/ai/browser_user_wrapper.py,sha256=
|
|
432
|
-
machineconfig/utils/ai/generate_file_checklist.py,sha256=
|
|
433
|
-
machineconfig/utils/ai/url2md.py,sha256=
|
|
434
|
-
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=
|
|
435
|
-
machineconfig/utils/cloud/onedrive/transaction.py,sha256=
|
|
428
|
+
machineconfig/utils/ai/browser_user_wrapper.py,sha256=DVs1aje6Rm6ZIuRXeNm4rj7ytoui1djh5yvJ97D_mCQ,2120
|
|
429
|
+
machineconfig/utils/ai/generate_file_checklist.py,sha256=HVPSKM5ko17e_x1rHZ8XATaUKUVo4gtlSYGKbGd7Mh0,2834
|
|
430
|
+
machineconfig/utils/ai/url2md.py,sha256=vuFRHFhke6rqhiazk_p_c8T8BES9blxX7kmVNveH2qs,3020
|
|
431
|
+
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
432
|
+
machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
|
|
436
433
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
|
-
machineconfig/utils/installer_utils/installer_abc.py,sha256=
|
|
438
|
-
machineconfig/utils/installer_utils/installer_class.py,sha256=
|
|
439
|
-
machineconfig-1.
|
|
440
|
-
machineconfig-1.
|
|
441
|
-
machineconfig-1.
|
|
442
|
-
machineconfig-1.
|
|
434
|
+
machineconfig/utils/installer_utils/installer_abc.py,sha256=oBjlo25Qudyw-dUxlhZnWktF6rUMiC7r9nGeQyqhcr0,5482
|
|
435
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=wnKjypZ05zWbmptXmaqkaw_ObpIQjnaeD1DsnyPUqiE,20289
|
|
436
|
+
machineconfig-2.1.dist-info/METADATA,sha256=Tltt_R-AgKpQjRQnUbeXfiyxYRDJ8gU6J0XOGNlCwak,7165
|
|
437
|
+
machineconfig-2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
438
|
+
machineconfig-2.1.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
439
|
+
machineconfig-2.1.dist-info/RECORD,,
|