machineconfig 2.0__py3-none-any.whl → 2.2__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 +0 -3
- machineconfig/cluster/data_transfer.py +0 -1
- machineconfig/cluster/file_manager.py +0 -1
- machineconfig/cluster/job_params.py +0 -3
- machineconfig/cluster/loader_runner.py +0 -3
- machineconfig/cluster/remote_machine.py +0 -1
- machineconfig/cluster/script_notify_upon_completion.py +0 -1
- machineconfig/cluster/sessions_managers/archive/create_zellij_template.py +5 -6
- machineconfig/cluster/sessions_managers/archive/session_managers.py +0 -1
- machineconfig/cluster/sessions_managers/enhanced_command_runner.py +17 -57
- machineconfig/cluster/sessions_managers/wt_local.py +36 -110
- machineconfig/cluster/sessions_managers/wt_local_manager.py +42 -112
- machineconfig/cluster/sessions_managers/wt_remote.py +23 -30
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +20 -62
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +10 -15
- machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py +27 -127
- machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py +10 -43
- machineconfig/cluster/sessions_managers/wt_utils/session_manager.py +22 -101
- machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py +11 -39
- machineconfig/cluster/sessions_managers/zellij_local.py +49 -102
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +34 -78
- machineconfig/cluster/sessions_managers/zellij_remote.py +17 -24
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +7 -13
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +4 -2
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +6 -6
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +18 -88
- machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py +2 -6
- machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py +12 -40
- machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +3 -2
- 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 -46
- machineconfig/jobs/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/linux/msc/cli_agents.sh +16 -0
- machineconfig/jobs/python/check_installations.py +2 -1
- machineconfig/jobs/python/create_bootable_media.py +0 -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 +13 -14
- machineconfig/jobs/python/vscode/select_interpreter.py +21 -22
- machineconfig/jobs/python/vscode/sync_code.py +9 -13
- machineconfig/jobs/python_custom_installers/archive/ngrok.py +13 -13
- machineconfig/jobs/python_custom_installers/dev/aider.py +7 -15
- machineconfig/jobs/python_custom_installers/dev/alacritty.py +9 -18
- machineconfig/jobs/python_custom_installers/dev/brave.py +10 -19
- machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +8 -15
- machineconfig/jobs/python_custom_installers/dev/code.py +12 -32
- machineconfig/jobs/python_custom_installers/dev/cursor.py +3 -14
- machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +8 -7
- machineconfig/jobs/python_custom_installers/dev/espanso.py +15 -19
- machineconfig/jobs/python_custom_installers/dev/goes.py +5 -12
- machineconfig/jobs/python_custom_installers/dev/lvim.py +9 -17
- machineconfig/jobs/python_custom_installers/dev/nerdfont.py +12 -19
- machineconfig/jobs/python_custom_installers/dev/redis.py +12 -20
- machineconfig/jobs/python_custom_installers/dev/wezterm.py +12 -19
- machineconfig/jobs/python_custom_installers/dev/winget.py +5 -23
- machineconfig/jobs/python_custom_installers/docker.py +12 -21
- machineconfig/jobs/python_custom_installers/gh.py +11 -19
- machineconfig/jobs/python_custom_installers/hx.py +32 -16
- machineconfig/jobs/python_custom_installers/warp-cli.py +12 -20
- machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- machineconfig/jobs/python_generic_installers/config.json +1 -1
- machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc +0 -0
- 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/profile/create.py +38 -26
- machineconfig/profile/create_hardlinks.py +29 -20
- machineconfig/profile/shell.py +56 -32
- machineconfig/scripts/__init__.py +0 -2
- 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 +7 -7
- machineconfig/scripts/linux/fire +1 -1
- machineconfig/scripts/linux/fire_agents +3 -2
- machineconfig/scripts/linux/ftpx +1 -1
- machineconfig/scripts/linux/gh_models +1 -1
- machineconfig/scripts/linux/kill_process +1 -1
- machineconfig/scripts/linux/mcinit +1 -1
- 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__/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_agents.cpython-313.pyc +0 -0
- machineconfig/scripts/python/ai/__init__.py +0 -0
- machineconfig/scripts/python/ai/generate_files.py +83 -0
- machineconfig/scripts/python/ai/instructions/python/dev.instructions.md +2 -2
- machineconfig/scripts/python/ai/mcinit.py +14 -7
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +10 -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 +23 -14
- machineconfig/scripts/python/cloud_mount.py +36 -24
- machineconfig/scripts/python/cloud_repo_sync.py +40 -27
- machineconfig/scripts/python/cloud_sync.py +4 -4
- machineconfig/scripts/python/croshell.py +40 -29
- machineconfig/scripts/python/devops.py +45 -27
- machineconfig/scripts/python/devops_add_identity.py +15 -25
- machineconfig/scripts/python/devops_add_ssh_key.py +8 -8
- machineconfig/scripts/python/devops_backup_retrieve.py +18 -16
- machineconfig/scripts/python/devops_devapps_install.py +25 -20
- machineconfig/scripts/python/devops_update_repos.py +232 -59
- machineconfig/scripts/python/dotfile.py +17 -15
- machineconfig/scripts/python/fire_agents.py +48 -22
- machineconfig/scripts/python/fire_jobs.py +93 -58
- machineconfig/scripts/python/ftpx.py +26 -15
- machineconfig/scripts/python/get_zellij_cmd.py +8 -7
- machineconfig/scripts/python/helpers/cloud_helpers.py +33 -28
- machineconfig/scripts/python/helpers/helpers2.py +27 -16
- machineconfig/scripts/python/helpers/helpers4.py +45 -32
- machineconfig/scripts/python/helpers/helpers5.py +1 -1
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +32 -10
- machineconfig/scripts/python/mount_nfs.py +9 -16
- machineconfig/scripts/python/mount_nw_drive.py +10 -5
- machineconfig/scripts/python/mount_ssh.py +9 -7
- machineconfig/scripts/python/repos.py +216 -58
- machineconfig/scripts/python/snapshot.py +0 -1
- machineconfig/scripts/python/start_slidev.py +11 -6
- machineconfig/scripts/python/start_terminals.py +22 -16
- machineconfig/scripts/python/viewer_template.py +0 -1
- machineconfig/scripts/python/wifi_conn.py +49 -75
- machineconfig/scripts/python/wsl_windows_transfer.py +9 -7
- 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 +1 -1
- 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 +2 -1
- 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/svim/linux/init.toml +1 -1
- machineconfig/settings/svim/windows/init.toml +1 -1
- machineconfig/setup_linux/web_shortcuts/croshell.sh +3 -52
- machineconfig/setup_linux/web_shortcuts/interactive.sh +6 -6
- machineconfig/setup_linux/web_shortcuts/ssh.sh +0 -4
- 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 +58 -13
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +45 -37
- machineconfig/utils/ai/generate_file_checklist.py +8 -10
- machineconfig/utils/ai/url2md.py +4 -2
- machineconfig/utils/cloud/onedrive/setup_oauth.py +1 -0
- machineconfig/utils/cloud/onedrive/transaction.py +63 -98
- machineconfig/utils/code.py +62 -41
- machineconfig/utils/installer.py +29 -35
- machineconfig/utils/installer_utils/installer_abc.py +11 -11
- machineconfig/utils/installer_utils/installer_class.py +155 -74
- machineconfig/utils/links.py +112 -31
- machineconfig/utils/notifications.py +211 -0
- machineconfig/utils/options.py +41 -42
- machineconfig/utils/path.py +13 -6
- machineconfig/utils/path_reduced.py +614 -311
- machineconfig/utils/procs.py +48 -42
- machineconfig/utils/scheduling.py +0 -1
- machineconfig/utils/source_of_truth.py +27 -0
- machineconfig/utils/ssh.py +146 -85
- machineconfig/utils/terminal.py +84 -37
- machineconfig/utils/upgrade_packages.py +91 -0
- machineconfig/utils/utils2.py +39 -50
- machineconfig/utils/utils5.py +195 -116
- machineconfig/utils/ve.py +13 -5
- {machineconfig-2.0.dist-info → machineconfig-2.2.dist-info}/METADATA +14 -13
- {machineconfig-2.0.dist-info → machineconfig-2.2.dist-info}/RECORD +212 -237
- machineconfig/jobs/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/python_ve_symlink.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__/fire_jobs.cpython-313.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/__pycache__/mcinit.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.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__/helpers4.cpython-313.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/setup_linux/web_shortcuts/all.sh +0 -48
- machineconfig/setup_linux/web_shortcuts/update_system.sh +0 -48
- machineconfig/utils/utils.py +0 -95
- /machineconfig/setup_linux/web_shortcuts/{tmp.sh → android.sh} +0 -0
- {machineconfig-2.0.dist-info → machineconfig-2.2.dist-info}/WHEEL +0 -0
- {machineconfig-2.0.dist-info → machineconfig-2.2.dist-info}/top_level.txt +0 -0
|
@@ -1,88 +1,84 @@
|
|
|
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=
|
|
5
|
-
machineconfig/cluster/data_transfer.py,sha256=
|
|
4
|
+
machineconfig/cluster/cloud_manager.py,sha256=DCkA0XCOrhdBzPJ8M0_V1TuY8Mj7MW82iHr9NN3luxU,26037
|
|
5
|
+
machineconfig/cluster/data_transfer.py,sha256=1QxIUetqlhmyl67icBx0nFZEZ7Z2DRjygXofKLMOz-0,4385
|
|
6
6
|
machineconfig/cluster/distribute.py,sha256=TWnOcTcItu3QQTDP3cNsUprnteYYt7WM7oHpNuoPSFo,15273
|
|
7
|
-
machineconfig/cluster/file_manager.py,sha256=
|
|
8
|
-
machineconfig/cluster/job_params.py,sha256=
|
|
9
|
-
machineconfig/cluster/loader_runner.py,sha256=
|
|
10
|
-
machineconfig/cluster/remote_machine.py,sha256=
|
|
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
11
|
machineconfig/cluster/script_execution.py,sha256=4U70FDtjOh6A6C2Ei-Xh90S888q64VhRPbExoEbdepk,9980
|
|
12
|
-
machineconfig/cluster/script_notify_upon_completion.py,sha256=
|
|
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=bbhQ0-X6VUXeS-6BFQzuQI7J7T-cLXxkS1ljzIQxNUQ,1515
|
|
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=tgNAbND5gwZFsc5_jeGMDMbvVc3UIMxi9MvWOH81ZL4,1646
|
|
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=
|
|
52
|
+
machineconfig/jobs/python/check_installations.py,sha256=HOGlZOCtpZyORNEbqDdsnSNWyFjXIrdXQhTwls9vsX8,11151
|
|
53
|
+
machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
|
|
53
54
|
machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
|
|
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/
|
|
59
|
-
machineconfig/jobs/python/vscode/
|
|
60
|
-
machineconfig/jobs/python/vscode/link_ve.py,sha256=7QqQKDo6yCh4k8-v6FZwnN0SBH7zGgZttyS0Svn5xII,1440
|
|
61
|
-
machineconfig/jobs/python/vscode/select_interpreter.py,sha256=FvtFe7WN0n142fhiTLlZIB_lSBn2BARWU2eivbuntS4,2687
|
|
62
|
-
machineconfig/jobs/python/vscode/sync_code.py,sha256=U2bB1TX2CLAZeBTa2CePMfz4nK7IqSfwUel455hCTTo,2185
|
|
63
|
-
machineconfig/jobs/python/vscode/__pycache__/select_interpreter.cpython-311.pyc,sha256=RgsGRZtpwohxBOd5A8OJLETKJzak9D5uyHXcx2e6lwk,4820
|
|
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
|
|
64
61
|
machineconfig/jobs/python_custom_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
-
machineconfig/jobs/python_custom_installers/docker.py,sha256=
|
|
66
|
-
machineconfig/jobs/python_custom_installers/gh.py,sha256=
|
|
67
|
-
machineconfig/jobs/python_custom_installers/hx.py,sha256=
|
|
68
|
-
machineconfig/jobs/python_custom_installers/warp-cli.py,sha256=
|
|
69
|
-
machineconfig/jobs/python_custom_installers/
|
|
70
|
-
machineconfig/jobs/python_custom_installers/
|
|
71
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
72
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
73
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
74
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
75
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
76
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
77
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
78
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
79
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
80
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
81
|
-
machineconfig/jobs/python_custom_installers/dev/
|
|
82
|
-
machineconfig/jobs/python_custom_installers/dev/redis.py,sha256=Ki1WmPFJ_1XHZYFuvoV3aRvlkZAN30V-gYoriEejKP4,2216
|
|
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/archive/ngrok.py,sha256=DtMXSoRgcS-DuelTwqUiP0zaC0eA7vsToRRo0CMmc4U,1696
|
|
67
|
+
machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=_yyUIn9ySM5tngdRcauJLZtfIR2tMCSBDZUVBYgKP70,761
|
|
68
|
+
machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=JkFJk9GpYSshtHs8tF--qQd0pP7bly7J8wYag-XT-v0,1878
|
|
69
|
+
machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=PlwvBzphAFzRNEc9hQj_tqw9RiTRoTuWAgd0b0Lh-EQ,2001
|
|
70
|
+
machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=_O3dRHOSqt0fOy6mfvpBV9McCpG6PHt1jf-u-Lk2l6M,1389
|
|
71
|
+
machineconfig/jobs/python_custom_installers/dev/code.py,sha256=hmOsvy9vu0CJlQ8sboeflr7ZzYVdNsZ6qG5SUX-FLR4,1689
|
|
72
|
+
machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=FfBMjN5LsU0e3sQHB3DJaHA4k7PeQ52LFHKfAk7we00,4426
|
|
73
|
+
machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=YgHZ9vH7O7gWROrg0HVxx5-fvxYb5UQ118YaD61JTM4,2317
|
|
74
|
+
machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=ay1VYEFWPFvfFoi6LnRZwiLTZrClRZpl9n5ZsOF4rXw,2457
|
|
75
|
+
machineconfig/jobs/python_custom_installers/dev/goes.py,sha256=XpF_mMB7HNrB1O3J2L73OXwbrL3cyc_2_rQG8ZqmLjU,1039
|
|
76
|
+
machineconfig/jobs/python_custom_installers/dev/lvim.py,sha256=OUXnJ-pLmFx3d2AItGId0SePTGpVNrbXcpsg3_eBAcU,2152
|
|
77
|
+
machineconfig/jobs/python_custom_installers/dev/nerdfont.py,sha256=tslO5orXs5rSbacAB2nHd3OjOsWWuOIHgeLZcwJAeSg,2006
|
|
78
|
+
machineconfig/jobs/python_custom_installers/dev/redis.py,sha256=CW6FtlJ7wgydfS8sUd16sD-6g52PrlkypjEDWot6NPc,2165
|
|
83
79
|
machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md,sha256=Yam2UzJUCslAp01_A0gdMH59s27hna9mqQsSGU7q64g,1128
|
|
84
|
-
machineconfig/jobs/python_custom_installers/dev/wezterm.py,sha256=
|
|
85
|
-
machineconfig/jobs/python_custom_installers/dev/winget.py,sha256=
|
|
80
|
+
machineconfig/jobs/python_custom_installers/dev/wezterm.py,sha256=cyCr4Y_HLF2MwmM9hlWU7REogyIXgmMRdOv_WjYND-g,2152
|
|
81
|
+
machineconfig/jobs/python_custom_installers/dev/winget.py,sha256=xERVNYysxhPb7qgDybqUeYmPrUju_AOQAmYkMMAYGlM,5628
|
|
86
82
|
machineconfig/jobs/python_custom_installers/scripts/linux/brave.sh,sha256=m01xquA4YZW3YrhJiTCvTZuLliELmRI1avYFyuE5-Ws,2119
|
|
87
83
|
machineconfig/jobs/python_custom_installers/scripts/linux/docker.sh,sha256=mojUmdFXXH5vJN7hHwP3JmRajya1yyM4bZvuLOx-nTc,5343
|
|
88
84
|
machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh,sha256=TiS-hWRltw66_p_Fq8gfkA_rqUIuwxoIkFZItVF6TXA,1478
|
|
@@ -95,14 +91,13 @@ machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh,sha256=8S0nZ
|
|
|
95
91
|
machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh,sha256=PVNLeYWdh3XEFllCVZDYIHBI42btjGlH5jbyXjJGz-Y,3033
|
|
96
92
|
machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh,sha256=m697rRoIIVk-f8JdI1YQmphk-JWpMc5IYbD5YaQ3SeQ,1874
|
|
97
93
|
machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
machineconfig/jobs/python_generic_installers/config.json,sha256=
|
|
99
|
-
machineconfig/jobs/python_generic_installers/
|
|
100
|
-
machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc,sha256=6W3MndIH6TpKF1rOCDC53oH4ZV8tCD6zakk8dgCyhO8,199
|
|
94
|
+
machineconfig/jobs/python_generic_installers/config.json,sha256=dkrLpAs-xJ1gvpFd42yuWGoRkkE1MG-8fAhrMNrxt34,20678
|
|
95
|
+
machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-313.pyc,sha256=knHc0czISCOGlMdoXh0vJGcyr0TTsRAzNIk8iYo26VM,187
|
|
101
96
|
machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO1-5lxtbVGuXXoTTuvWjs54xlHHIAIIZYDAy8FSA,823
|
|
102
97
|
machineconfig/jobs/python_generic_installers/dev/config.json,sha256=dKzCQNuQigcuTGw1uvhHkhG-kvp2UPHpv0X6XOTYtBE,29760
|
|
103
98
|
machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
99
|
machineconfig/jobs/python_linux_installers/config.json,sha256=rn2mss51IgiAKKmhPdQ0nmTC_aPFm-6rIfHdCBlEFBE,5324
|
|
105
|
-
machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-
|
|
100
|
+
machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-313.pyc,sha256=VPZBY1nwCPNRdlftZPBK6pJb-b44HTw7qG6ce-AvLuM,185
|
|
106
101
|
machineconfig/jobs/python_linux_installers/archive/config.json,sha256=haf6H05bW2AC-CptfZBeNeMoQK60w8iWmCZ2aDiL4O0,302
|
|
107
102
|
machineconfig/jobs/python_linux_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
103
|
machineconfig/jobs/python_linux_installers/dev/config.json,sha256=IxlCuMfWX-SWCnQxQN5JBlxDIAHPvZRlSFbszqERj2w,9951
|
|
@@ -112,189 +107,167 @@ machineconfig/jobs/python_windows_installers/archive/__init__.py,sha256=47DEQpj8
|
|
|
112
107
|
machineconfig/jobs/python_windows_installers/archive/file.json,sha256=sF9TUg7DQnq6R6qqLa9tRWfaQRfYKi4cy4T1hZ8yegU,314
|
|
113
108
|
machineconfig/jobs/python_windows_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
109
|
machineconfig/jobs/python_windows_installers/dev/config.json,sha256=-KWibjBW62-wbe6z28z9iK50kAIAyYxwtZZru37J1N4,4
|
|
115
|
-
machineconfig/jobs/windows/start_terminal.ps1,sha256=
|
|
110
|
+
machineconfig/jobs/windows/start_terminal.ps1,sha256=wy0fGwgb4U7xaHsONDrR4V5u9JEkG5vtt4NZUBx0ro8,473
|
|
116
111
|
machineconfig/jobs/windows/startup_file.cmd,sha256=qOqDwL0MmRB-fHauJKjOO0mhczyA3-cdRUyY1p7NCok,95
|
|
117
|
-
machineconfig/jobs/windows/archive/archive_pygraphviz.ps1,sha256=
|
|
112
|
+
machineconfig/jobs/windows/archive/archive_pygraphviz.ps1,sha256=XBMaFurdY8smiLdeP3iAm2p1x4Ui_F3Ty9lHikKSfUk,708
|
|
118
113
|
machineconfig/jobs/windows/archive/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
119
114
|
machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
115
|
+
machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
+
machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
117
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
-
machineconfig/profile/create.py,sha256=
|
|
122
|
-
machineconfig/profile/create_hardlinks.py,sha256=
|
|
123
|
-
machineconfig/profile/shell.py,sha256=
|
|
124
|
-
machineconfig/profile/__pycache__/__init__.cpython-311.pyc,sha256=2QWPveHQxw3U6SZx6SPhlQUeQjVc26SkwNIZKR-3Ll8,176
|
|
125
|
-
machineconfig/profile/__pycache__/create.cpython-311.pyc,sha256=SCnXRPQ9naUl9Sj2EgAUguolFrJUtSfE3yH6K0A6eJ0,8777
|
|
126
|
-
machineconfig/profile/__pycache__/shell.cpython-311.pyc,sha256=Jg0duafgnBIhhBNVOyitlhVckNrOx5lyuXpNeLywxnk,15064
|
|
118
|
+
machineconfig/profile/create.py,sha256=GHElQbP_ji6x0lPJiy_JkEeDVQJL8TjJNE1ZxQx5HF0,6428
|
|
119
|
+
machineconfig/profile/create_hardlinks.py,sha256=5rDftMifdwSpQ-kEgR9LUSCwGVlAWCrwF6Ko10hxUxo,5652
|
|
120
|
+
machineconfig/profile/shell.py,sha256=haNn70imxRIMxOIZ8N6jU26-OepqS5HkCtO0vAP-Zvs,10958
|
|
127
121
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
128
122
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
129
123
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
130
124
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
131
125
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
132
|
-
machineconfig/scripts/__init__.py,sha256=
|
|
133
|
-
machineconfig/scripts/__pycache__/__init__.cpython-
|
|
134
|
-
machineconfig/scripts/
|
|
135
|
-
machineconfig/scripts/
|
|
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/
|
|
147
|
-
machineconfig/scripts/linux/fire_agents,sha256=Qy5jW2wV0mz0D8vFpLQom9tM9yGa_Q4SRl3GzcK7Cqs,835
|
|
148
|
-
machineconfig/scripts/linux/ftpx,sha256=2GPRwSUhshI4BNxmOeMVoYlM6I7OQ0o3b8t6FlKDyRk,162
|
|
126
|
+
machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
|
|
127
|
+
machineconfig/scripts/__pycache__/__init__.cpython-313.pyc,sha256=ygO0oHmMcx06IQQo4uYMnTHHtjOckjootiTk2z-6s0c,244
|
|
128
|
+
machineconfig/scripts/cloud/init.sh,sha256=yNsseCLMceO50Eg72ra6_NIJCxkGZmpmos1EXe-mvzY,4649
|
|
129
|
+
machineconfig/scripts/linux/checkout_versions,sha256=0W-Px2qAiswg8IElABV6awE-EHPzXOFcCxO1SBd8Rj4,187
|
|
130
|
+
machineconfig/scripts/linux/choose_wezterm_theme,sha256=Pn679w5en-_9NWD7PnGwB3EwyWA6cm28G6mGdrjNACM,233
|
|
131
|
+
machineconfig/scripts/linux/cloud_copy,sha256=H_IpiexwCO_NsCOf6_EX0q674qlK4evB65NEgb93ghU,180
|
|
132
|
+
machineconfig/scripts/linux/cloud_manager,sha256=1TfYXstwm2AWUwRdtW4x1DE-eacgAOIUAfDuMOFToKU,185
|
|
133
|
+
machineconfig/scripts/linux/cloud_mount,sha256=gDp1OMnzJMoyrlpdSYytPz5kK8C27ummmxGBsaTnmDs,532
|
|
134
|
+
machineconfig/scripts/linux/cloud_repo_sync,sha256=3Aqj8OUHlXAcch14q-3dYk0YxPK5VfCqlukqBqtS9rQ,375
|
|
135
|
+
machineconfig/scripts/linux/cloud_sync,sha256=XZTIRkvM5E8HFoX0mXCXQCpsgIlDVHJMFgshFq9zegE,523
|
|
136
|
+
machineconfig/scripts/linux/croshell,sha256=WsRJE7k2AKbiXTKmk81ZgllwgCAvEQD_I62cDkx6mhc,761
|
|
137
|
+
machineconfig/scripts/linux/devops,sha256=FD-VjArFRlzqmEk8DMcYeH-Yq92F6dDoLSDL6RYqNps,671
|
|
138
|
+
machineconfig/scripts/linux/fire,sha256=XSP5lmcDHWmWO8E62ztgsCPopJA1zOy9N_6zgMfWP84,849
|
|
139
|
+
machineconfig/scripts/linux/fire_agents,sha256=qezkGuG8otoZbE4cwuEcqW5CagddufzadWKqbRHYchI,830
|
|
140
|
+
machineconfig/scripts/linux/ftpx,sha256=hF8WlySKa6r9O5pOQp6HJPU1_sbt8pnoSJnD_4K4HnQ,176
|
|
149
141
|
machineconfig/scripts/linux/fzf2g,sha256=YK_YLmxCm6zms24ytylgoUHnvWqq8oTdRTiskzDClS0,831
|
|
150
142
|
machineconfig/scripts/linux/fzfag,sha256=x0rX7vM_YjKLZ822D2Xh0HdaTj5kR_gG3g_5_w6ring,679
|
|
151
143
|
machineconfig/scripts/linux/fzffg,sha256=jjeeyFkWmBbwH2taRqC3EOzZep2KR-ZYoI4UI-5kHqg,1090
|
|
152
144
|
machineconfig/scripts/linux/fzfg,sha256=ClGnJZUsIk4y0qs3W5iXGo-nd0FaqAHMsnh8uoXQFy8,1190
|
|
153
145
|
machineconfig/scripts/linux/fzfrga,sha256=xSdws6ae28ZXkkqz_uupZ0MYw_vxE2qpLT2DLS3WITM,460
|
|
154
|
-
machineconfig/scripts/linux/gh_models,sha256=
|
|
155
|
-
machineconfig/scripts/linux/kill_process,sha256=
|
|
156
|
-
machineconfig/scripts/linux/mcinit,sha256=
|
|
146
|
+
machineconfig/scripts/linux/gh_models,sha256=NkSBS3AcAAwVPnQ0kXL3Ko5O1Xl0kYmQA81vZApSBGU,181
|
|
147
|
+
machineconfig/scripts/linux/kill_process,sha256=CjE6M1U9y70VzgX6GMiflN6ihvCFR6IZwYa3ipb7PTY,227
|
|
148
|
+
machineconfig/scripts/linux/mcinit,sha256=Vqp6WII0ffWeKUFnKlR4uYqaXolhrYUg4a6vLrHB_O0,847
|
|
157
149
|
machineconfig/scripts/linux/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
158
150
|
machineconfig/scripts/linux/mount_nfs,sha256=HLWF7ocUjuDXaFFtOzEA9JlROTcsbDEhgosBdBpBUUA,2061
|
|
159
151
|
machineconfig/scripts/linux/mount_nw_drive,sha256=fZWV2x7Slne2c0NU-65qXBmTIeJNvjAHY-NqkDgoq1U,2527
|
|
160
152
|
machineconfig/scripts/linux/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
|
|
161
153
|
machineconfig/scripts/linux/programs,sha256=KlKTLhreJ0CRHvtm61ilOtVm8VUia7gb0zWD1IP6rNY,472
|
|
162
|
-
machineconfig/scripts/linux/repos,sha256=
|
|
163
|
-
machineconfig/scripts/linux/scheduler,sha256=
|
|
154
|
+
machineconfig/scripts/linux/repos,sha256=m_4hu6dkgLphd7EO5NIG5z0dNC1nyGgHck_EnGIEbWc,517
|
|
155
|
+
machineconfig/scripts/linux/scheduler,sha256=fYdjQHI3ku68xwv0O7oWWRpgm5Pd1hFwAaiupzivZwo,178
|
|
164
156
|
machineconfig/scripts/linux/share_cloud.sh,sha256=75IzCm7Nob1wO-zlfaNyPPod1IjAsVCG5lcMFdXmiI4,3010
|
|
165
157
|
machineconfig/scripts/linux/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
|
|
166
158
|
machineconfig/scripts/linux/share_smb,sha256=HZX8BKgMlS9JzkGIYnxTsPvoxEBBuVLVkqzR3pmGFGY,20
|
|
167
159
|
machineconfig/scripts/linux/skrg,sha256=JgQJGwxaChr148bDnpTB0rrqZMe2o2zGSDA9x_oUhWM,133
|
|
168
160
|
machineconfig/scripts/linux/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
|
|
169
|
-
machineconfig/scripts/linux/start_slidev,sha256=
|
|
170
|
-
machineconfig/scripts/linux/start_terminals,sha256=
|
|
161
|
+
machineconfig/scripts/linux/start_slidev,sha256=MYQmrcx-3WP1gzUtSPpgbbGIlxOoRUWQe5GZa9FZOx4,616
|
|
162
|
+
machineconfig/scripts/linux/start_terminals,sha256=SRsk9M7dizTHTyO1Msu6KFCDhIW-cFo_1xaiZ_D83AM,260
|
|
171
163
|
machineconfig/scripts/linux/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
172
|
-
machineconfig/scripts/linux/url2md,sha256=
|
|
173
|
-
machineconfig/scripts/linux/
|
|
164
|
+
machineconfig/scripts/linux/url2md,sha256=eOPlXIwgpPzVYB_x217hISkQIzIZEGCEOQsBMLA-Pds,171
|
|
165
|
+
machineconfig/scripts/linux/warp-cli.sh,sha256=shFFZ9viet_DSEEHT8kxlGRHoJpO6o85pKYnc3rIkaA,3868
|
|
166
|
+
machineconfig/scripts/linux/wifi_conn,sha256=zsmP1e3WK1apdafjYjfsdXJY8YItzFEp9f1QP3614ec,513
|
|
174
167
|
machineconfig/scripts/linux/z_ls,sha256=ATZtu0ccN3AKvAOxkwLq1xgQjJ3en5byEWJ3Q8afnNg,3340
|
|
175
168
|
machineconfig/scripts/linux/archive/tmate_conn,sha256=mDymJCJ-scdYhoG06EAMncjoSAj8irg3YqZzP69vLgI,378
|
|
176
169
|
machineconfig/scripts/linux/archive/tmate_start,sha256=eyaknKoVb-XtJnZcfB0CCxm9z9zkD0dsuIDeFLKbIO8,452
|
|
177
170
|
machineconfig/scripts/linux/archive/transfer_wsl_win,sha256=KzSaO4CWbuM6UNoNasdJhaWWjRhN0lWIiJrBZMmONz0,137
|
|
178
171
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
-
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=
|
|
180
|
-
machineconfig/scripts/python/cloud_copy.py,sha256=
|
|
172
|
+
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=xCDLLJKlYNOQ0tOZ4cgkBN5hTPGn-0llkyupmoN2rb8,3320
|
|
173
|
+
machineconfig/scripts/python/cloud_copy.py,sha256=NjUOKztK5zHzK9krTPgyZCCVohooZNF48EGJ96kfIVw,8547
|
|
181
174
|
machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
|
|
182
|
-
machineconfig/scripts/python/cloud_mount.py,sha256=
|
|
183
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256=
|
|
184
|
-
machineconfig/scripts/python/cloud_sync.py,sha256=
|
|
185
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
186
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
187
|
-
machineconfig/scripts/python/devops_add_identity.py,sha256=
|
|
188
|
-
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=
|
|
189
|
-
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=
|
|
190
|
-
machineconfig/scripts/python/devops_devapps_install.py,sha256=
|
|
191
|
-
machineconfig/scripts/python/devops_update_repos.py,sha256=
|
|
192
|
-
machineconfig/scripts/python/dotfile.py,sha256=
|
|
193
|
-
machineconfig/scripts/python/fire_agents.py,sha256=
|
|
194
|
-
machineconfig/scripts/python/fire_jobs.py,sha256=
|
|
195
|
-
machineconfig/scripts/python/ftpx.py,sha256=
|
|
196
|
-
machineconfig/scripts/python/get_zellij_cmd.py,sha256=
|
|
175
|
+
machineconfig/scripts/python/cloud_mount.py,sha256=6iaEidaHj3CMgH6udCd1I04BdUtSsyEO3n5A1OAKpjI,6790
|
|
176
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=HUaFhSl9f7y2BJgBfXWKnb-xymsi0lB1hqRl8xU_H-E,9861
|
|
177
|
+
machineconfig/scripts/python/cloud_sync.py,sha256=grlWuY7E0NadylxUU14YAcym6vICYvoI9PyF5a4G4_c,3846
|
|
178
|
+
machineconfig/scripts/python/croshell.py,sha256=1UOOk1esyP-YOIZuhe_d22I69So_fZIZsBpNfQnGIIQ,9551
|
|
179
|
+
machineconfig/scripts/python/devops.py,sha256=rIBsyBTnK0kB-g_GKZ-K3xCpsev-Wn6mOvaZcLWSnGU,8388
|
|
180
|
+
machineconfig/scripts/python/devops_add_identity.py,sha256=gYcRzUZGr-truU2l5iPLEiWSZpKLzz5a6v5VPrEMVwg,3869
|
|
181
|
+
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=D66vyl4NnvwL306yJXSFI4ht0sz-m9yczuBf82VCodo,6760
|
|
182
|
+
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=noN0pgZkj7wdQSZpyCOKYVV_npcKn1CkXtqt1l2QO4w,6201
|
|
183
|
+
machineconfig/scripts/python/devops_devapps_install.py,sha256=5eagtkIoitPM08Y-dy1jCV3cIjDT2Bk7ooRpdYju3SM,8138
|
|
184
|
+
machineconfig/scripts/python/devops_update_repos.py,sha256=q8mCIqCYsJdGCf4sBUeVe6hJIQX4pGLYPAF3rDpTQZI,11221
|
|
185
|
+
machineconfig/scripts/python/dotfile.py,sha256=miL8mQH2AqPdnHSz0Cxa7qQavaOmzTD9DAF66H2PRzA,2259
|
|
186
|
+
machineconfig/scripts/python/fire_agents.py,sha256=d0zVilyBeFs1B-dh8fhBWqKqIh9UTOsWROUpmiFb7Vw,9254
|
|
187
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=4182jV9jh0lOxP0Q_ZgmCKZdSzFhcU-nfAcGM9fGKAU,20079
|
|
188
|
+
machineconfig/scripts/python/ftpx.py,sha256=WQ-6Z043q3yQOgWQV9g-R5QjouilWC0grOc6hydvbvg,9914
|
|
189
|
+
machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
|
|
197
190
|
machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
|
|
198
|
-
machineconfig/scripts/python/mount_nfs.py,sha256=
|
|
199
|
-
machineconfig/scripts/python/mount_nw_drive.py,sha256=
|
|
200
|
-
machineconfig/scripts/python/mount_ssh.py,sha256=
|
|
191
|
+
machineconfig/scripts/python/mount_nfs.py,sha256=KleZz9Np1csQLNZ4_gdIpTwYQqIkiarjrXJLzB0xCvw,3178
|
|
192
|
+
machineconfig/scripts/python/mount_nw_drive.py,sha256=q7URYlipteXdhFKBaqS-PB7kAJq4oMWsvsu47rQ_xdI,1546
|
|
193
|
+
machineconfig/scripts/python/mount_ssh.py,sha256=NObjRZZXb7Jw-ytM66mpFx9B0AsvW4u_n3y_KtETo-c,2222
|
|
201
194
|
machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
|
|
202
195
|
machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
203
|
-
machineconfig/scripts/python/repos.py,sha256=
|
|
196
|
+
machineconfig/scripts/python/repos.py,sha256=rlUff2c_hyJZ-6WXQ6goKhOt4n7k0pP_Gq0V8Z6IVIg,18076
|
|
204
197
|
machineconfig/scripts/python/scheduler.py,sha256=7IBjMMOHMkklcWzYwz93EH9XzbJ5uPqU03bJ_lYbRNo,3083
|
|
205
|
-
machineconfig/scripts/python/snapshot.py,sha256=
|
|
206
|
-
machineconfig/scripts/python/start_slidev.py,sha256=
|
|
207
|
-
machineconfig/scripts/python/start_terminals.py,sha256=
|
|
198
|
+
machineconfig/scripts/python/snapshot.py,sha256=aDvKeoniZaeTSNv9zWBUajaj2yagAxVdfuvO1_tgq5Y,1026
|
|
199
|
+
machineconfig/scripts/python/start_slidev.py,sha256=pwqTTmfGSV26NQ9yyhMnsgkPka6Z6V88yJuWGzLwRu0,4458
|
|
200
|
+
machineconfig/scripts/python/start_terminals.py,sha256=r5NVU00ghkNsuifp2eU8Z-z_0WJ5NhZk8qjuPoY5PUM,6206
|
|
208
201
|
machineconfig/scripts/python/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
209
|
-
machineconfig/scripts/python/viewer_template.py,sha256=
|
|
210
|
-
machineconfig/scripts/python/wifi_conn.py,sha256=
|
|
211
|
-
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=
|
|
212
|
-
machineconfig/scripts/python/__pycache__/__init__.cpython-
|
|
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__/devops_backup_retrieve.cpython-311.pyc,sha256=Bo--NSxW10D7iO-VubPbwH_P-SJsb4hULXAwtx3WhFc,10426
|
|
221
|
-
machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc,sha256=mSfuG3ehhkbtZnU5PMDv9mS4LcMhj5NDKQBi882nFlc,10162
|
|
222
|
-
machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc,sha256=cWcTykBCg3qu82jYcr7IIkN0cgpCZuNFqa8zfWKha_0,6589
|
|
223
|
-
machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-313.pyc,sha256=avPLMbryR4gAw-UE1M9dZLLxgXk32qeJ41B-M7c2sCY,5755
|
|
224
|
-
machineconfig/scripts/python/__pycache__/fire_agents.cpython-311.pyc,sha256=uPcAvvVsZCL_BTq3s4WFZwhO1GSxA2K7e-KlccPUmnE,12904
|
|
225
|
-
machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc,sha256=Mti7BvU3Mrck3t9fmzAsp1Rvz0FYaM7lmKeA3JSxxrM,22081
|
|
226
|
-
machineconfig/scripts/python/__pycache__/fire_jobs.cpython-313.pyc,sha256=wMwq9RL120uZ2j6Zex8-SVubEFnaFZantHF2lcW6IwY,20181
|
|
227
|
-
machineconfig/scripts/python/__pycache__/get_zellij_cmd.cpython-311.pyc,sha256=vDgQ-_22m3AyNJKjrXHZEPOOFiZ4Zh2z9NtdQvCWdXY,891
|
|
228
|
-
machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc,sha256=NmUeruJ7_snzKXm-ObBPqniFJONvaNLbZvbx01h4O8w,17583
|
|
229
|
-
machineconfig/scripts/python/ai/mcinit.py,sha256=Wvg5RDpDNuEeUotAf5hLx0B66YOdH1IIw4xm7F8DQxQ,5066
|
|
230
|
-
machineconfig/scripts/python/ai/__pycache__/init.cpython-311.pyc,sha256=aC1IcjcIuV2nsYztoX2FVm1r-1kNCIMvFF_JoxUpVc0,3868
|
|
231
|
-
machineconfig/scripts/python/ai/__pycache__/mcinit.cpython-311.pyc,sha256=cUY3G4h_oYy59MbwTEZHjx6nowYWTyBLBaCK6JaRONo,7366
|
|
202
|
+
machineconfig/scripts/python/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
203
|
+
machineconfig/scripts/python/wifi_conn.py,sha256=C-vZr-vEtTxlXuiO7hhKQ8f86Cb9m2XO8p3356jxFxw,15577
|
|
204
|
+
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=RfSf5SJejnqrg36YfXSwu52ceEW77uNP4WC6QQUyRTA,3650
|
|
205
|
+
machineconfig/scripts/python/__pycache__/__init__.cpython-313.pyc,sha256=IppPGJ6Wk5Ma5oPWfJpN5QDW6-NvCk29la5JGbgAJ6E,171
|
|
206
|
+
machineconfig/scripts/python/__pycache__/devops.cpython-313.pyc,sha256=YYhD3mAAgmuTzFPQSqlhrsxmSXT3Ou9x1futZv-jyRM,11555
|
|
207
|
+
machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-313.pyc,sha256=vfTHoOoAgNaGDna6MW5De9opJHictly6E9MEAE3_q_s,8616
|
|
208
|
+
machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-313.pyc,sha256=0uDZbL7JxKuZ9y1r82LvJWAuf9z_hux7MUmzrG7FjFk,12175
|
|
209
|
+
machineconfig/scripts/python/__pycache__/fire_agents.cpython-313.pyc,sha256=XsvsbYKZNux9qalKHdCH7tUWZjqeM2ZbxhmaL6URM3c,11767
|
|
210
|
+
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
+
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
212
|
+
machineconfig/scripts/python/ai/mcinit.py,sha256=IuUclOpQ0-5YJ4AghbPCglyMi6DPtP0zqIOhB-28wmQ,5251
|
|
232
213
|
machineconfig/scripts/python/ai/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
233
214
|
machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
234
215
|
machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
235
216
|
machineconfig/scripts/python/ai/configs/.gemini/settings.json,sha256=hv0POw6ySh8vukLd2Zebt7CH4Aiw1W26ge-Tl1fxgoQ,2301
|
|
236
|
-
machineconfig/scripts/python/ai/instructions/python/dev.instructions.md,sha256=
|
|
217
|
+
machineconfig/scripts/python/ai/instructions/python/dev.instructions.md,sha256=eKgTj1Nv11DHvvjUKqSi-DhyLwpVTfWl1x__d256baw,4481
|
|
237
218
|
machineconfig/scripts/python/ai/prompts/allLintersAndTypeCheckers.prompt.md,sha256=0YO5BvqKMxoB6Xs4MR4dv3g7iLgviUc_JoqXdvfxXqY,46
|
|
238
219
|
machineconfig/scripts/python/ai/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
239
|
-
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=
|
|
220
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=W6UAn5dGA7Bn4wsTicT84KKOYqF6WI5jrWhBWo8FbsI,1953
|
|
240
221
|
machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39JEZjCdvDrXYUMVvZNY,1163
|
|
241
|
-
machineconfig/scripts/python/archive/tmate_conn.py,sha256=
|
|
242
|
-
machineconfig/scripts/python/archive/tmate_start.py,sha256=
|
|
222
|
+
machineconfig/scripts/python/archive/tmate_conn.py,sha256=BiZQmYabl4K4-mbOpcb_R1JzYfEwxuAnk5FOciqGHFo,1231
|
|
223
|
+
machineconfig/scripts/python/archive/tmate_start.py,sha256=Hp7xv32u-fRuCG_f-Cy6qg0VemoaPOP-Pxs_gsFYcyg,1518
|
|
243
224
|
machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
-
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=
|
|
245
|
-
machineconfig/scripts/python/helpers/helpers2.py,sha256=
|
|
246
|
-
machineconfig/scripts/python/helpers/helpers4.py,sha256=
|
|
247
|
-
machineconfig/scripts/python/helpers/helpers5.py,sha256=
|
|
248
|
-
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=
|
|
249
|
-
machineconfig/scripts/
|
|
250
|
-
machineconfig/scripts/
|
|
251
|
-
machineconfig/scripts/
|
|
252
|
-
machineconfig/scripts/
|
|
253
|
-
machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc,sha256=6gGHh54TrVnkji13RLLqnu9G9JSKU6jU8cJRlPCLVlM,10641
|
|
254
|
-
machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc,sha256=NobOXSsARSrWN6xRikdCy-Kv4gokkOovrH09ha3HZ-I,11043
|
|
255
|
-
machineconfig/scripts/python/helpers/__pycache__/repo_sync_helpers.cpython-311.pyc,sha256=U0HPSMRmaDkysn6N8heE4fMM5017CtK4hJQVJUJmBT0,7758
|
|
256
|
-
machineconfig/scripts/windows/activate_ve.ps1,sha256=1YDd90eIhJ680a-tPHeBesnIVLHWqLn1DU66B-2oA7E,1875
|
|
257
|
-
machineconfig/scripts/windows/checkout_version.ps1,sha256=l6U-qSroHFd_fDa6Z0uSJ5Yxfr0D3nW5uotJRQ7zpI8,148
|
|
258
|
-
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=9_lPcTMuZhaxi860o5lyQWujzMRqm3ATgeGbboECtfI,367
|
|
259
|
-
machineconfig/scripts/windows/cloud_copy.ps1,sha256=ubLWKzpF6RMU35BLqSRHtVqTLEwActuegWMPmuJHWbg,495
|
|
260
|
-
machineconfig/scripts/windows/cloud_manager.ps1,sha256=ndmz60_AEGiNjSROL8s27BHLINipY1BTfq4wFVUaaNA,262
|
|
225
|
+
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=R8xFPcgsdRHn4ta9QjQUjch3P5Bwnv8oiY-UpFE982U,4966
|
|
226
|
+
machineconfig/scripts/python/helpers/helpers2.py,sha256=TU1sA0GKNXHXT1_0y8piBLT_BeXfk0uBmkmUeyVYj58,7295
|
|
227
|
+
machineconfig/scripts/python/helpers/helpers4.py,sha256=HA8-888DIoQawyaOkf0vtPD5SyDt_cKLrNKChhTjLd0,7709
|
|
228
|
+
machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
229
|
+
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=c4IkoVQMGkO-D00-q2YE6Jvte39jDHsOBr2sr0c7y5Q,5331
|
|
230
|
+
machineconfig/scripts/windows/checkout_version.ps1,sha256=5bwjbKoBeyFJ6DEGgQiWWHp-VahrtvfU0w_g69zP3CM,131
|
|
231
|
+
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=qDRHCeglCm3n_ooaq3Wlzc-WLpnX9Ez7KL31j2b_wlo,316
|
|
232
|
+
machineconfig/scripts/windows/cloud_copy.ps1,sha256=B1s0tRXvqg-evUf1YzGaCdJNAa-MMc7gY3JUgkztZGA,417
|
|
233
|
+
machineconfig/scripts/windows/cloud_manager.ps1,sha256=fsjk23GJ_kX7jHiPvlK7FAfqm8dUz-wVe8x9QmpdNbI,281
|
|
261
234
|
machineconfig/scripts/windows/cloud_mount.ps1,sha256=y927i24HzcUEG1uT-BIWRH0hij7iYmN19H1HWvWLPLc,718
|
|
262
|
-
machineconfig/scripts/windows/cloud_repo_sync.ps1,sha256=
|
|
263
|
-
machineconfig/scripts/windows/cloud_sync.ps1,sha256=
|
|
264
|
-
machineconfig/scripts/windows/croshell.ps1,sha256=
|
|
265
|
-
machineconfig/scripts/windows/devops.ps1,sha256=
|
|
266
|
-
machineconfig/scripts/windows/dotfile.ps1,sha256=
|
|
267
|
-
machineconfig/scripts/windows/fire.ps1,sha256=
|
|
268
|
-
machineconfig/scripts/windows/ftpx.ps1,sha256=
|
|
235
|
+
machineconfig/scripts/windows/cloud_repo_sync.ps1,sha256=gp0CJOYCKeY_GLJMvtH4C3IWn8aib8FXjIMa3gWMNn8,219
|
|
236
|
+
machineconfig/scripts/windows/cloud_sync.ps1,sha256=aujgVLNilqK7pBpu8mqenXcYtCh8BZTrsOWsTh_BQvQ,497
|
|
237
|
+
machineconfig/scripts/windows/croshell.ps1,sha256=5pe-lr5YvJrVrcd76Jppu2qeBD76M82NpiI5uQXk44M,1318
|
|
238
|
+
machineconfig/scripts/windows/devops.ps1,sha256=UksrFjKnAd69TxpOc1qkvgpNvaqZnjRtzSIn03n_yM4,780
|
|
239
|
+
machineconfig/scripts/windows/dotfile.ps1,sha256=ku3ugbR21XMZ3QL2s681wcqQTdzvugcupK0MsRGsl20,203
|
|
240
|
+
machineconfig/scripts/windows/fire.ps1,sha256=eMPeFtTwVoHZepD814GLlcVjNxGq1N0UKP0p6u7Aigc,1226
|
|
241
|
+
machineconfig/scripts/windows/ftpx.ps1,sha256=of-mOeNb5xQYzmJB3RW9oaSHFEEKWPE5cN6hdsci99k,192
|
|
269
242
|
machineconfig/scripts/windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
|
|
270
243
|
machineconfig/scripts/windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
|
|
271
244
|
machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
|
|
272
|
-
machineconfig/scripts/windows/gpt.ps1,sha256=
|
|
245
|
+
machineconfig/scripts/windows/gpt.ps1,sha256=U2EBC1vKBXqTIlzJJfd5iQ9NAk7z_i9NEbteUO1GrwY,382
|
|
273
246
|
machineconfig/scripts/windows/grep.ps1,sha256=sUP_cXtqPEWLQ8_TdGJX7_-CO6CQYTP4pA-ZmkdPLdY,49
|
|
274
|
-
machineconfig/scripts/windows/kill_process.ps1,sha256=
|
|
275
|
-
machineconfig/scripts/windows/mcinit.ps1,sha256=
|
|
276
|
-
machineconfig/scripts/windows/mount_nfs.ps1,sha256=
|
|
247
|
+
machineconfig/scripts/windows/kill_process.ps1,sha256=LAcWToitWLcoOHk9yu9It8W5l9XrsAm2_c42XJrlae4,172
|
|
248
|
+
machineconfig/scripts/windows/mcinit.ps1,sha256=hNhvQO4UyxEy2x3OatEbH-q9hD3dOyGzAkxj6PdYIX0,153
|
|
249
|
+
machineconfig/scripts/windows/mount_nfs.ps1,sha256=mTR-KcOYJaljWzymKTbzj3jrl5EMgS33mHizU-uO7yo,2089
|
|
277
250
|
machineconfig/scripts/windows/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
278
251
|
machineconfig/scripts/windows/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
279
|
-
machineconfig/scripts/windows/mount_ssh.ps1,sha256=
|
|
252
|
+
machineconfig/scripts/windows/mount_ssh.ps1,sha256=occ_cFU02ZifsjJ7VwwBsYcOCFE12LJwcgd64cSY0tM,396
|
|
280
253
|
machineconfig/scripts/windows/nano.ps1,sha256=H1PNN1x3UnOCGwijgMij-K2ZM2E20sfsLTEEap-W5dQ,50
|
|
281
254
|
machineconfig/scripts/windows/neofetch.ps1,sha256=U2bcNNMv_IHz9cUZPTxC2-TetOFOsKAIi-Q9ryIgZqM,150
|
|
282
|
-
machineconfig/scripts/windows/pomodoro.ps1,sha256=
|
|
283
|
-
machineconfig/scripts/windows/py2exe.ps1,sha256=
|
|
255
|
+
machineconfig/scripts/windows/pomodoro.ps1,sha256=39FpFG4ytX1sl478eHioUKpMhif2Smeuf-Xjfz026tk,270
|
|
256
|
+
machineconfig/scripts/windows/py2exe.ps1,sha256=1UE_7f4bHpx3PTKxEHlhH-HXlTbPm046fvi8nJhQv3U,285
|
|
284
257
|
machineconfig/scripts/windows/reload_path.ps1,sha256=81hQY18LFApVZWFiUfgMzzPH2pJ1WD1fHInfmicBZFA,217
|
|
285
|
-
machineconfig/scripts/windows/repos.ps1,sha256=
|
|
286
|
-
machineconfig/scripts/windows/scheduler.ps1,sha256=
|
|
258
|
+
machineconfig/scripts/windows/repos.ps1,sha256=ZxOsMBUBpqNBqd8A9e_djSQf6JoMA4c1GYR5uyrMmwk,864
|
|
259
|
+
machineconfig/scripts/windows/scheduler.ps1,sha256=s8CSYC2i-DwdF29MsDLDOt040nzApXTUEhNES5ZZnVo,155
|
|
287
260
|
machineconfig/scripts/windows/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
288
261
|
machineconfig/scripts/windows/share_nfs.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
262
|
machineconfig/scripts/windows/share_smb.ps1,sha256=_iJLdgm4pK6Qhz9MpgJlDKHOul38pT8F_VQXqPNBZDE,543
|
|
290
|
-
machineconfig/scripts/windows/snapshot.ps1,sha256=
|
|
291
|
-
machineconfig/scripts/windows/start_slidev.ps1,sha256=
|
|
292
|
-
machineconfig/scripts/windows/start_terminals.ps1,sha256=
|
|
263
|
+
machineconfig/scripts/windows/snapshot.ps1,sha256=lkTikgiM4CweAKyrSyaPj73UQ3KBTuR7tLgxwb5rCzg,148
|
|
264
|
+
machineconfig/scripts/windows/start_slidev.ps1,sha256=Y41Vi749kUPNHGta3MIUnWtmuMyrVWCuW5xnIR6I8jI,457
|
|
265
|
+
machineconfig/scripts/windows/start_terminals.ps1,sha256=5s1OWgZ3q-8lyxSUeT4jFCrBMCWU0Uq3f79o5uNSA5M,401
|
|
293
266
|
machineconfig/scripts/windows/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
294
|
-
machineconfig/scripts/windows/wifi_conn.ps1,sha256=
|
|
267
|
+
machineconfig/scripts/windows/wifi_conn.ps1,sha256=ebS0-hPSOlt1bHl_ZA4V6Wi0VlvIG76L6e3Jr_VFFUs,210
|
|
295
268
|
machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1,sha256=dGKAoP8WsQzHiAZjD8WT1Ne8RRQU8xf9HdH9bDkihh4,1720
|
|
296
269
|
machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1,sha256=dr6t49UCnMHAhA0AR4gHluN0HvS5wzyygCNmjORfknU,2715
|
|
297
|
-
machineconfig/scripts/windows/wsl_windows_transfer.ps1,sha256=
|
|
270
|
+
machineconfig/scripts/windows/wsl_windows_transfer.ps1,sha256=BfjjuRS_UOKtXSSN1lYl014gSy_p2BhTuFPp8dezQng,165
|
|
298
271
|
machineconfig/scripts/windows/archive/gource2vid.ps1,sha256=tkMdMJkvguoKhzRb2yCJr4l8W54bdIt2yHl0oPPWKxE,484
|
|
299
272
|
machineconfig/scripts/windows/archive/im2text.ps1,sha256=yf9yVPiuQoagpOc0mzFaWNmoCLckey_GmSByqk3diHQ,784
|
|
300
273
|
machineconfig/scripts/windows/archive/secure_pull.ps1,sha256=7VR6EvLmWXIqUZDQcd5nb-OYkKBOkOcCJDFJr4rhf9A,1606
|
|
@@ -315,7 +288,7 @@ machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42Wq
|
|
|
315
288
|
machineconfig/settings/keyboard/kanata/kanata.kbd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
316
289
|
machineconfig/settings/lf/linux/colors,sha256=uSW9O3CkiVomxK8-JN8hQRcM71yADuOSjichbfBFTpg,4148
|
|
317
290
|
machineconfig/settings/lf/linux/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
318
|
-
machineconfig/settings/lf/linux/lfrc,sha256
|
|
291
|
+
machineconfig/settings/lf/linux/lfrc,sha256=dUz7-wfAsXXzegmFsFJ8_jpBWa8ll5nnqlkUQBls_Qg,5418
|
|
319
292
|
machineconfig/settings/lf/linux/autocall/delete.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
293
|
machineconfig/settings/lf/linux/autocall/on-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
294
|
machineconfig/settings/lf/linux/autocall/on-quit.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -353,9 +326,11 @@ machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJu
|
|
|
353
326
|
machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
|
|
354
327
|
machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
|
|
355
328
|
machineconfig/settings/linters/.ruff.toml,sha256=CiLFhFLJzQc1UvJF2ecRjO4hjmC_xx9j0JCKHKi-po8,1655
|
|
329
|
+
machineconfig/settings/linters/.ruff_cache/.gitignore,sha256=njpg8ebsSuYCFcEdVLFxOSdF7CXp3e1DPVvZITY68xY,35
|
|
330
|
+
machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG,sha256=WVMVbX4MVkpCclExbq8m-IcOZIOuIZf5FrYw5Pk-Ma4,43
|
|
356
331
|
machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
332
|
machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=
|
|
333
|
+
machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=zj-VDn-Av4IomJ3EqM1gf_6VsZ9ieG815O9QK1slyPI,792
|
|
359
334
|
machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
|
|
360
335
|
machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=qn_bPy8eSWMAlhA9PLVO_vxqlSlzzrQ1CldFjSKpLD4,864
|
|
361
336
|
machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
|
|
@@ -383,8 +358,8 @@ machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJ
|
|
|
383
358
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
384
359
|
machineconfig/settings/shells/wt/settings.json,sha256=XRqyjphS5EckkHkdYkw6b5btBgnaoic-vn5oCPaPVvI,10135
|
|
385
360
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
386
|
-
machineconfig/settings/svim/linux/init.toml,sha256=
|
|
387
|
-
machineconfig/settings/svim/windows/init.toml,sha256=
|
|
361
|
+
machineconfig/settings/svim/linux/init.toml,sha256=hQjQvkljszqy_hGJi6KFajfhERJPxicz5k06MfWD5-Q,1464
|
|
362
|
+
machineconfig/settings/svim/windows/init.toml,sha256=IEZj2KRRvjSa1l3qjDjAK9DPc493Zl24RVgbQNLzKNQ,1452
|
|
388
363
|
machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
|
|
389
364
|
machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
|
|
390
365
|
machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
|
|
@@ -406,51 +381,51 @@ machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWD
|
|
|
406
381
|
machineconfig/setup_linux/nix/cli_installation.sh,sha256=AQ_wRmldeD1tPqCmU7qgz9ZrZFly4OYwBJDGRpb9IJ0,5470
|
|
407
382
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
408
383
|
machineconfig/setup_linux/others/openssh-server_add_pub_key.sh,sha256=UiJcD1o4UekKKtp5YJKRq135PpqdTLXy7M6HvQ-Qum4,1993
|
|
409
|
-
machineconfig/setup_linux/web_shortcuts/
|
|
384
|
+
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
410
385
|
machineconfig/setup_linux/web_shortcuts/ascii_art.sh,sha256=RWcxH_Db7WHH37PclYmc92o6zAS557wGZxcYTuyTUZ0,3550
|
|
411
|
-
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=
|
|
412
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
413
|
-
machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=
|
|
414
|
-
machineconfig/setup_linux/web_shortcuts/tmp.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
415
|
-
machineconfig/setup_linux/web_shortcuts/update_system.sh,sha256=xQ1RxpsRhPFGpoDv01XTrB-BsqnbWiw7LMAh7Fc0uWs,1926
|
|
386
|
+
machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=LpA7JCfrIe677_GcFeP5OT1fPKXcmQVNcPykq1DnFAs,284
|
|
387
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=g8cbhmpAugD-LIikNDX4_L59CBmoYbrH7GprtMXII8Q,7758
|
|
388
|
+
machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=k6BAY-zAWsi1beOMiZODxw4VOjZCTABZu__gxSET1eU,1924
|
|
416
389
|
machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
390
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
418
391
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
419
|
-
machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=
|
|
420
|
-
machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=
|
|
421
|
-
machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=
|
|
422
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
392
|
+
machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=L03JJ4Jua_bzgtF3kuDOkuQ-Nqaj_ZcV3CFEkCHD1WI,908
|
|
393
|
+
machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=pUVTtgKHOdgaK3hxz7JoMZzTyQ7vm2RfE_OJgB7e4cw,1270
|
|
394
|
+
machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=cTQnegGLGYhuFY3YuuAj2ortN__adA2dznk2E737h4A,644
|
|
395
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=jRTeWqHtS6FjB-CxlSSo66HsJddrARWd-9AZFyyucAA,7645
|
|
423
396
|
machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
|
|
424
397
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
425
|
-
machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=
|
|
426
|
-
machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=
|
|
427
|
-
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256
|
|
398
|
+
machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
|
|
399
|
+
machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=JgJZMP93xPQwr_6tsRmimOMllu-vsXn6ZgW-4ZEfRt0,4538
|
|
400
|
+
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=-XLcrpWv_iPPNTFjp5cUEGsvLrkLNMq93b0KhGX7tPw,9217
|
|
428
401
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
|
-
machineconfig/utils/code.py,sha256=
|
|
430
|
-
machineconfig/utils/installer.py,sha256=
|
|
402
|
+
machineconfig/utils/code.py,sha256=kYPN8I0fauSF0UYCNbOKbctS4M6sAdZbU2ML9_4GXko,4536
|
|
403
|
+
machineconfig/utils/installer.py,sha256=725N-0gmMbrWWh6_9sn-2w9aXrfjIPrnuu9o13T4N4o,10941
|
|
431
404
|
machineconfig/utils/io_save.py,sha256=iC1YTH0MOlBS8bWUB8Xhdl4CG_bEKQ3OVwMohdCOazI,3145
|
|
432
|
-
machineconfig/utils/links.py,sha256=
|
|
433
|
-
machineconfig/utils/
|
|
434
|
-
machineconfig/utils/
|
|
435
|
-
machineconfig/utils/
|
|
436
|
-
machineconfig/utils/
|
|
437
|
-
machineconfig/utils/
|
|
438
|
-
machineconfig/utils/
|
|
439
|
-
machineconfig/utils/
|
|
440
|
-
machineconfig/utils/
|
|
441
|
-
machineconfig/utils/
|
|
442
|
-
machineconfig/utils/
|
|
443
|
-
machineconfig/utils/
|
|
405
|
+
machineconfig/utils/links.py,sha256=Lkzp1yZFyMe0ikbVsnWBektZy-9_Km69zt7hJ33MHp0,10309
|
|
406
|
+
machineconfig/utils/notifications.py,sha256=7OQmcOMhJIOQ2Rhgm9HDeyhXtjUkC4Ldl1Rrgnv311g,8423
|
|
407
|
+
machineconfig/utils/options.py,sha256=MHO2j1yNFLaTAZGNGBzNNb0O4t9kkCpLulKK3rdurAI,8027
|
|
408
|
+
machineconfig/utils/path.py,sha256=OjZmCprrl462bqTvTdZ8hL7Suh8OGAapBwvAn745x7Y,8008
|
|
409
|
+
machineconfig/utils/path_reduced.py,sha256=x90Uf95a2GMMiWr2NVVkvJnLAFOETMFb3q1yZTPab40,52468
|
|
410
|
+
machineconfig/utils/procs.py,sha256=6uB8lvmipNviMExjgFpZ3nGInatLf7GFTMmDNcI7paU,10828
|
|
411
|
+
machineconfig/utils/scheduling.py,sha256=4RRrrtjzOxk02IZENhIw6aGj5eMaWr0Tb73R68lhbGY,11271
|
|
412
|
+
machineconfig/utils/source_of_truth.py,sha256=QUxJ4eyY-O2cAFGknLY9Xz2E12w3cAJWuDFiIjERVWY,952
|
|
413
|
+
machineconfig/utils/ssh.py,sha256=AED-k9lwqN5uxYPU4T6D7cGZMsja6n0ApEL-aD9XJFk,20108
|
|
414
|
+
machineconfig/utils/terminal.py,sha256=k3xoMwJPGvmaeL9CxEIwrcQjRNN6EnJItoIIxXrUY8c,12258
|
|
415
|
+
machineconfig/utils/upgrade_packages.py,sha256=hkEDA5vDFca2N05QBZHPEq1PieI54ASLo5Hr6QEUYic,3373
|
|
416
|
+
machineconfig/utils/utils2.py,sha256=Y9bX4gaaPih7gbOeTcfPhQ3CcMFKGXgVCEQhVhljH4Q,2526
|
|
417
|
+
machineconfig/utils/utils5.py,sha256=s2NFUBcm4Jeuet8sUC7WKGSrYT4BnqTog39bsynXLik,15166
|
|
418
|
+
machineconfig/utils/ve.py,sha256=2-XzS2LV1c-iW3SZ3elELrCeAisXLNLqQU4Ayieq6Ho,2763
|
|
444
419
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
420
|
machineconfig/utils/ai/browser_user_wrapper.py,sha256=DVs1aje6Rm6ZIuRXeNm4rj7ytoui1djh5yvJ97D_mCQ,2120
|
|
446
|
-
machineconfig/utils/ai/generate_file_checklist.py,sha256=
|
|
447
|
-
machineconfig/utils/ai/url2md.py,sha256=
|
|
448
|
-
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=
|
|
449
|
-
machineconfig/utils/cloud/onedrive/transaction.py,sha256=
|
|
421
|
+
machineconfig/utils/ai/generate_file_checklist.py,sha256=HVPSKM5ko17e_x1rHZ8XATaUKUVo4gtlSYGKbGd7Mh0,2834
|
|
422
|
+
machineconfig/utils/ai/url2md.py,sha256=vuFRHFhke6rqhiazk_p_c8T8BES9blxX7kmVNveH2qs,3020
|
|
423
|
+
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
424
|
+
machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
|
|
450
425
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
|
-
machineconfig/utils/installer_utils/installer_abc.py,sha256=
|
|
452
|
-
machineconfig/utils/installer_utils/installer_class.py,sha256=
|
|
453
|
-
machineconfig-2.
|
|
454
|
-
machineconfig-2.
|
|
455
|
-
machineconfig-2.
|
|
456
|
-
machineconfig-2.
|
|
426
|
+
machineconfig/utils/installer_utils/installer_abc.py,sha256=NPuvs8mzMbZVq-KpG85iKtfMcaFzjvDE5QMw82kh92M,5320
|
|
427
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=l0UM-u6ZfWx-uLvAk_mmojbppj4sxDrHX3wmVwQv12w,20366
|
|
428
|
+
machineconfig-2.2.dist-info/METADATA,sha256=hI4oi4LCUQ6c5_wcFnSpfHc1nmOiBmkjL3ydHsPAugI,7165
|
|
429
|
+
machineconfig-2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
430
|
+
machineconfig-2.2.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
431
|
+
machineconfig-2.2.dist-info/RECORD,,
|