machineconfig 7.57__py3-none-any.whl → 7.79__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of machineconfig might be problematic. Click here for more details.
- machineconfig/cluster/sessions_managers/utils/maker.py +21 -9
- machineconfig/jobs/installer/custom/boxes.py +2 -2
- machineconfig/jobs/installer/custom/hx.py +3 -3
- machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
- machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +1 -1
- machineconfig/jobs/installer/custom_dev/sysabc.py +36 -28
- machineconfig/jobs/installer/custom_dev/wezterm.py +0 -4
- machineconfig/jobs/installer/installer_data.json +127 -25
- machineconfig/jobs/installer/package_groups.py +20 -13
- machineconfig/profile/create_links_export.py +2 -2
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/linux/wrap_mcfg +1 -1
- machineconfig/scripts/python/agents.py +22 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +3 -0
- machineconfig/scripts/python/croshell.py +22 -17
- machineconfig/scripts/python/devops.py +3 -4
- machineconfig/scripts/python/devops_navigator.py +0 -4
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/fire_jobs.py +19 -18
- machineconfig/scripts/python/ftpx.py +36 -12
- machineconfig/scripts/python/helpers/ast_search.py +74 -0
- machineconfig/scripts/python/helpers/qr_code.py +166 -0
- machineconfig/scripts/python/helpers/repo_rag.py +325 -0
- machineconfig/scripts/python/helpers/symantic_search.py +25 -0
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py +19 -17
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
- machineconfig/scripts/python/helpers_croshell/crosh.py +2 -2
- machineconfig/scripts/python/helpers_croshell/start_slidev.py +6 -7
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +4 -5
- machineconfig/scripts/python/helpers_devops/cli_nw.py +88 -7
- machineconfig/scripts/python/helpers_devops/cli_self.py +7 -6
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +9 -9
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +13 -12
- machineconfig/scripts/python/helpers_devops/cli_terminal.py +7 -6
- machineconfig/scripts/python/helpers_devops/cli_utils.py +2 -73
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
- machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
- machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +2 -3
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +23 -13
- machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +7 -4
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
- machineconfig/scripts/python/helpers_repos/record.py +2 -1
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +5 -5
- machineconfig/scripts/python/helpers_utils/download.py +152 -0
- machineconfig/scripts/python/helpers_utils/path.py +81 -31
- machineconfig/scripts/python/interactive.py +2 -2
- machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -0
- machineconfig/scripts/python/msearch.py +21 -2
- machineconfig/scripts/python/nw/address.py +132 -0
- machineconfig/scripts/python/nw/devops_add_ssh_key.py +8 -5
- machineconfig/scripts/python/nw/ssh_debug_linux.py +7 -7
- machineconfig/scripts/python/nw/ssh_debug_windows.py +4 -4
- machineconfig/scripts/python/nw/wsl_windows_transfer.py +3 -2
- machineconfig/scripts/python/sessions.py +35 -20
- machineconfig/scripts/python/terminal.py +2 -2
- machineconfig/scripts/python/utils.py +12 -10
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
- machineconfig/settings/shells/nushell/config.nu +2 -2
- machineconfig/settings/shells/nushell/env.nu +45 -6
- machineconfig/settings/shells/nushell/init.nu +282 -95
- machineconfig/settings/shells/pwsh/init.ps1 +1 -0
- machineconfig/settings/shells/zsh/init.sh +0 -7
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/uv.ps1 +8 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +3 -2
- machineconfig/utils/accessories.py +7 -4
- machineconfig/utils/code.py +6 -4
- machineconfig/utils/files/headers.py +2 -2
- machineconfig/utils/installer_utils/install_from_url.py +180 -0
- machineconfig/utils/installer_utils/installer_class.py +53 -47
- machineconfig/utils/installer_utils/{installer.py → installer_cli.py} +71 -65
- machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +1 -25
- machineconfig/utils/links.py +2 -2
- machineconfig/utils/meta.py +30 -16
- machineconfig/utils/options.py +4 -4
- machineconfig/utils/path_extended.py +3 -3
- machineconfig/utils/path_helper.py +33 -31
- machineconfig/utils/schemas/layouts/layout_types.py +1 -1
- machineconfig/utils/ssh.py +143 -409
- machineconfig/utils/ssh_utils/abc.py +8 -0
- machineconfig/utils/ssh_utils/copy_from_here.py +110 -0
- machineconfig/utils/ssh_utils/copy_to_here.py +302 -0
- machineconfig/utils/ssh_utils/utils.py +141 -0
- machineconfig/utils/ssh_utils/wsl.py +168 -0
- machineconfig/utils/upgrade_packages.py +2 -1
- machineconfig/utils/ve.py +11 -4
- {machineconfig-7.57.dist-info → machineconfig-7.79.dist-info}/METADATA +1 -1
- {machineconfig-7.57.dist-info → machineconfig-7.79.dist-info}/RECORD +102 -92
- {machineconfig-7.57.dist-info → machineconfig-7.79.dist-info}/entry_points.txt +2 -2
- machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
- machineconfig/scripts/python/explore.py +0 -49
- /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
- /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py} +0 -0
- /machineconfig/scripts/{Restore-ThunderbirdProfile.ps1 → windows/mounts/Restore-ThunderbirdProfile.ps1} +0 -0
- /machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +0 -0
- {machineconfig-7.57.dist-info → machineconfig-7.79.dist-info}/WHEEL +0 -0
- {machineconfig-7.57.dist-info → machineconfig-7.79.dist-info}/top_level.txt +0 -0
|
@@ -25,7 +25,7 @@ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_
|
|
|
25
25
|
machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=YULt8r3zotkotjdmWRrUq3yGySZW-5e_rQSIZ-IMvjk,5410
|
|
26
26
|
machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
27
27
|
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
|
|
28
|
-
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=
|
|
28
|
+
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=ZcxDalj2IAC_HHtuy104GSp5JaecfdGedHlcuXl939Y,3462
|
|
29
29
|
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
30
30
|
machineconfig/cluster/sessions_managers/wt_utils/manager_persistence.py,sha256=LWgK-886QMERLRJwQ4rH2Nr2RGlyKu6P7JYoBMVWMGc,1604
|
|
31
31
|
machineconfig/cluster/sessions_managers/wt_utils/monitoring_helpers.py,sha256=e75rdp0G8cDfF9SfkJ7LX3TAJ8R3JWR5v-C_SDkDa14,1627
|
|
@@ -51,28 +51,30 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
51
51
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
|
|
54
|
-
machineconfig/jobs/installer/installer_data.json,sha256=
|
|
55
|
-
machineconfig/jobs/installer/package_groups.py,sha256=
|
|
56
|
-
machineconfig/jobs/installer/custom/boxes.py,sha256=
|
|
54
|
+
machineconfig/jobs/installer/installer_data.json,sha256=Py1006iS1omzxqfAb9CjetSS-8EIcU6TayXEWgu--BY,113629
|
|
55
|
+
machineconfig/jobs/installer/package_groups.py,sha256=AE1sPeEI6i7uLE_rMavA2m1skb27aYZIfjH0ukeGDYc,4938
|
|
56
|
+
machineconfig/jobs/installer/custom/boxes.py,sha256=C6R5T1INjBUKwaYPOnpx13N1VrNxHsbJ-j-llujuujY,1991
|
|
57
57
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
58
|
-
machineconfig/jobs/installer/custom/hx.py,sha256=
|
|
58
|
+
machineconfig/jobs/installer/custom/hx.py,sha256=nI8g49zsmksx5ZZOcvcaM_gqWesOjobcG8wTzhrIA64,9021
|
|
59
59
|
machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
machineconfig/jobs/installer/custom_dev/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
|
|
61
61
|
machineconfig/jobs/installer/custom_dev/brave.py,sha256=1WTUgEHlpzA9POK6hMeL4-ZxDs_PvLm9q_l19edI_K8,2887
|
|
62
62
|
machineconfig/jobs/installer/custom_dev/bypass_paywall.py,sha256=ZF8yF2srljLChe1tOw_fEsalOkts4RpNwlzX9GtWh2g,1888
|
|
63
|
+
machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py,sha256=tcKmph3J_JQApjIMfGswLiHCbt7uQ6v9S9aixN_rnqg,914
|
|
63
64
|
machineconfig/jobs/installer/custom_dev/code.py,sha256=YSmLCh4nxK9CHqeE5mOBAVkNRDRZVT8FAWggraHsiPA,2483
|
|
64
65
|
machineconfig/jobs/installer/custom_dev/cursor.py,sha256=3xoFAYFdZqurSHXeEG-vbG0KU1TNQpBMaMgL1eW6X4k,4326
|
|
65
|
-
machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=
|
|
66
|
+
machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKgnlhzS7PCoo39BSiux-3_DtBM,852
|
|
66
67
|
machineconfig/jobs/installer/custom_dev/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
|
|
67
68
|
machineconfig/jobs/installer/custom_dev/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
|
|
68
69
|
machineconfig/jobs/installer/custom_dev/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
|
|
69
70
|
machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=dsPmiqP9AJCack7mNeJ8Qzo4dSOwC0bsupH0Hn3gqSg,4149
|
|
70
|
-
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=
|
|
71
|
+
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=NbmRNNq3Mc-x-UgQxYDy5-cBngMAAax7nEnnvbhbq4Q,5627
|
|
71
72
|
machineconfig/jobs/installer/custom_dev/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
|
|
72
|
-
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=
|
|
73
|
-
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=
|
|
73
|
+
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=G-MVn49KriYHOX1Tk84quJh6XQzXC5kSN21enGofBgA,6275
|
|
74
|
+
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=yQqRpnaj7I_2q-Ge9HX0leK5-ntUCWpkqgH09cgmh-Q,3063
|
|
74
75
|
machineconfig/jobs/installer/custom_dev/winget.py,sha256=gLdwM20jKMf2bMV3BAcOg4MkuzwF09CU5OhXvLkPoHo,5738
|
|
75
76
|
machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
|
|
77
|
+
machineconfig/jobs/installer/linux_scripts/cloudflare_warp_cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
|
|
76
78
|
machineconfig/jobs/installer/linux_scripts/docker.sh,sha256=4NYWXCdvh6qlggVVH7FGe6jWkYuWoaJoDwLJvI4oRNQ,4471
|
|
77
79
|
machineconfig/jobs/installer/linux_scripts/docker_start.sh,sha256=8L2fLex6PU8nCpBii7yT8w4CvULZ9_JcDvxdCGJQ6cU,894
|
|
78
80
|
machineconfig/jobs/installer/linux_scripts/edge.sh,sha256=f1UI2Z2s0ToZ-QGlzkS1ThcRsTz5tMHOjxSFqfHK9SQ,1319
|
|
@@ -80,11 +82,9 @@ machineconfig/jobs/installer/linux_scripts/lid.sh,sha256=nUw870lc5p8GA8KT3JI29ob
|
|
|
80
82
|
machineconfig/jobs/installer/linux_scripts/nerdfont.sh,sha256=ute9wl4BcqHUqavVHWJlnMcmugdb50LbnUVlU0cUVso,1475
|
|
81
83
|
machineconfig/jobs/installer/linux_scripts/network.sh,sha256=j3kRV2mFEZK05XL2UdR9ssW2hkLH5rOYM7LU539UUEE,1358
|
|
82
84
|
machineconfig/jobs/installer/linux_scripts/ngrok.sh,sha256=K-t62nhnAHxhppTmqjubIJRHozkNHfBxXGbn1Oz3w-A,287
|
|
83
|
-
machineconfig/jobs/installer/linux_scripts/pgsql.sh,sha256=FbIteF6RVCcDdHl8seFFO7FuAX9siZpkwr9WVeKn5NA,1655
|
|
84
85
|
machineconfig/jobs/installer/linux_scripts/q.sh,sha256=lPSHBeZm4z6xv5K3cYPiOkK0A-LaNSNJN2ysVb1Qa9Y,261
|
|
85
86
|
machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=-Ur541bMwjq6TKrmvy-S5c_qoR8GlRpE6923USDylm8,2097
|
|
86
87
|
machineconfig/jobs/installer/linux_scripts/vscode.sh,sha256=fI6lNCWUjlstNE319Y-rUtimvLLb9GcNh3z9t1KRaaE,4541
|
|
87
|
-
machineconfig/jobs/installer/linux_scripts/warp-cli.sh,sha256=dnMHZjyyYARwKFa1XZbIonLntIHTRGROyr2v4Eodd6s,2157
|
|
88
88
|
machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVjoWATFzHqCt6V41_N8bImAQRc,1294
|
|
89
89
|
machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
|
|
90
90
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -92,7 +92,7 @@ machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623R
|
|
|
92
92
|
machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
|
|
93
93
|
machineconfig/profile/create_helper.py,sha256=jBwgf2r6Wid9LNXw_O8JpVmm7Vk5sZJWlN0qeIkQhjE,2986
|
|
94
94
|
machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
|
|
95
|
-
machineconfig/profile/create_links_export.py,sha256=
|
|
95
|
+
machineconfig/profile/create_links_export.py,sha256=WfswDxxp7yXkAIDC-7wwc0skdivrCQNRJUS3rqUZMq8,5251
|
|
96
96
|
machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
|
|
97
97
|
machineconfig/profile/mapper.toml,sha256=9SOHwHbFCI6J9nGVk72RZZhSPBI2OWtfyTXcGz3cSaA,12701
|
|
98
98
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
@@ -100,30 +100,28 @@ machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalK
|
|
|
100
100
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
101
101
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
102
102
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
103
|
-
machineconfig/scripts/
|
|
104
|
-
machineconfig/scripts/
|
|
105
|
-
machineconfig/scripts/linux/wrap_mcfg,sha256=ZmOoVoSfNOzPxNPnCxrYDwkFvaKEVcDj-WNkx_-68L4,1405
|
|
103
|
+
machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
machineconfig/scripts/linux/wrap_mcfg,sha256=EfqgsFfYLPK21MBpquwaeWUyldUWjTmU69z06-LZTnA,1402
|
|
106
105
|
machineconfig/scripts/linux/other/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
|
|
107
106
|
machineconfig/scripts/linux/other/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
|
|
108
107
|
machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
|
|
109
108
|
machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
110
109
|
machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
|
|
111
110
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
machineconfig/scripts/python/agents.py,sha256=
|
|
111
|
+
machineconfig/scripts/python/agents.py,sha256=lW0Cx8xB84qqon5G4LUFPxqMnXu6rkDVqYjhzVhkq8M,10858
|
|
113
112
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
114
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
113
|
+
machineconfig/scripts/python/croshell.py,sha256=R0v-1L9SpP3SFO8wYleougO51FHrSVhZdoIpwET6In8,7570
|
|
115
114
|
machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
|
|
116
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
117
|
-
machineconfig/scripts/python/devops_navigator.py,sha256=
|
|
118
|
-
machineconfig/scripts/python/
|
|
119
|
-
machineconfig/scripts/python/
|
|
120
|
-
machineconfig/scripts/python/
|
|
121
|
-
machineconfig/scripts/python/
|
|
122
|
-
machineconfig/scripts/python/
|
|
123
|
-
machineconfig/scripts/python/
|
|
124
|
-
machineconfig/scripts/python/
|
|
125
|
-
machineconfig/scripts/python/
|
|
126
|
-
machineconfig/scripts/python/utils.py,sha256=9_-hCbLDrWMSCIfpHWcywG3lwN-hQeoa_OGOr5x_1WQ,3460
|
|
115
|
+
machineconfig/scripts/python/devops.py,sha256=O7o44lUcdAs5R3th2d3xjLPSjJk7sOTLOJUyBF-yHtQ,2213
|
|
116
|
+
machineconfig/scripts/python/devops_navigator.py,sha256=UeqkY9_c22Ce9b1ksFGq-lNwaGCMMHL1LikPhP-QDt8,154
|
|
117
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=7S5tn6Y_Dov94ZRha6mqJMRAsf3en2O1DJfxRkSdPIQ,13561
|
|
118
|
+
machineconfig/scripts/python/ftpx.py,sha256=ncFvM4p-ohBB0Pez-0zSI6NQBN1T_tfltN-dB09yPzQ,11087
|
|
119
|
+
machineconfig/scripts/python/interactive.py,sha256=cD9wYKPKtbVZfYuDQh6GDTd7fqgVtEs8B2kNM_WavyA,11546
|
|
120
|
+
machineconfig/scripts/python/mcfg_entry.py,sha256=FKVnSR1mlZutQfmHu7fz2in0m-QntiIJE2L_bDVJ7BY,3088
|
|
121
|
+
machineconfig/scripts/python/msearch.py,sha256=J64epdk-bL_WkrUUHlXUR0Tuys1okdEzLbXjVqB9hSE,1646
|
|
122
|
+
machineconfig/scripts/python/sessions.py,sha256=uypWqdBpzYtyCzPPXQJdQgZlgyplHtQPDh69rV1DFBQ,10270
|
|
123
|
+
machineconfig/scripts/python/terminal.py,sha256=3333ZxOwPhAOPj9KmKO24NrK7afVTD7Hb5bTf35dcfc,5928
|
|
124
|
+
machineconfig/scripts/python/utils.py,sha256=vqzWMM9MTBSZfjOr8vM3TPPdKXzGckicQUTWIAlbOXc,3571
|
|
127
125
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
126
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
129
127
|
machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
|
|
@@ -142,7 +140,7 @@ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeG
|
|
|
142
140
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
143
141
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
144
142
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
145
|
-
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=
|
|
143
|
+
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=4OPNxuHWXSdOOmMrsOyHTTue8n_ImTCDMjpOuV_0T6s,4576
|
|
146
144
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
|
|
147
145
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
148
146
|
machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
|
|
@@ -156,7 +154,11 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
156
154
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
157
155
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
158
156
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
159
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
157
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=EblLRBhXOwbLFOty64emm7DPH1Hu13uWBhZMvIU4yVY,6932
|
|
158
|
+
machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
|
|
159
|
+
machineconfig/scripts/python/helpers/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
|
|
160
|
+
machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
|
|
161
|
+
machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
|
|
160
162
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
163
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
162
164
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -172,32 +174,32 @@ machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hx
|
|
|
172
174
|
machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
|
|
173
175
|
machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
|
|
174
176
|
machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=
|
|
176
|
-
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=
|
|
177
|
-
machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=
|
|
178
|
-
machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=
|
|
177
|
+
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
|
|
178
|
+
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
|
|
179
|
+
machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=0CF6VN26a0j7E7PcIGEX_vFBKPXOx7U7sRDkfrE_A1I,6618
|
|
180
|
+
machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
|
|
179
181
|
machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
|
|
180
182
|
machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
181
183
|
machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=
|
|
184
|
+
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
|
|
183
185
|
machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
184
186
|
machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
|
|
185
|
-
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=
|
|
187
|
+
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=hpLSRENN8zBdiKUA67z9oiXZw59dfrQU1tM80-Agz7o,4874
|
|
186
188
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
187
189
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
188
190
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
191
|
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=VLR7tH1SdR3ftWSNjyt0LHc1gRssYJXYvkLjtydxVOM,5007
|
|
190
|
-
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=
|
|
192
|
+
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
|
|
191
193
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
192
|
-
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=
|
|
194
|
+
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=YnGfjnz2KkWXc_x66Sddq3Pem0rgNWgAXHWZkhSdNjs,10998
|
|
193
195
|
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
|
|
194
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=
|
|
196
|
-
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=
|
|
197
|
-
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=
|
|
198
|
-
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=
|
|
199
|
-
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=
|
|
200
|
-
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=cUSlbyYdXMEBuD_3hFN-xp1yrjP5Si3E070rtYhIA98,7061
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=BPHC-M4OjILY130iL4QcRcjBZNbYwzuSc7clSpr9oUo,6404
|
|
198
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=IDed7qI-LM9kCd4XI-5El_xFtqGZCqDyF8chQJKLdsg,6493
|
|
199
|
+
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=KjBlYW3W96RL26zmiWKeQ46AFEQ21OqHEffAvD9eKYU,6139
|
|
200
|
+
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
|
|
201
|
+
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
|
|
202
|
+
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=IKDd0fD8qINFoxC3Ajk0GtXiDfXgiL6shrUMubx_yx4,20312
|
|
201
203
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
202
204
|
machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
205
|
machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
|
|
@@ -206,9 +208,10 @@ machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha
|
|
|
206
208
|
machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
|
|
207
209
|
machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
210
|
machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
209
|
-
machineconfig/scripts/python/helpers_fire_command/
|
|
211
|
+
machineconfig/scripts/python/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
|
+
machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=yJVFrdrH9iVkKxY0z6JXfJRuRZ22M2cc6bArt0l9F3w,6230
|
|
210
213
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha256=teioVhLI-skNpbYOJGo7WJEnz_FHzyidHff174CZSg8,4359
|
|
211
|
-
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=
|
|
214
|
+
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=hj81yaj5NBWkxfpZeym99pXfiP_YP_0DRJFbjd7CeRY,5926
|
|
212
215
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
216
|
machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
|
|
214
217
|
machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag,sha256=u3EYNQ_WT8jP11V0DPXWWXmFj1rzgNBnRokVBdVZpmc,677
|
|
@@ -221,27 +224,29 @@ machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat,sha256=r
|
|
|
221
224
|
machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
|
|
222
225
|
machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
|
|
223
226
|
machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
|
|
224
|
-
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=
|
|
227
|
+
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
|
|
225
228
|
machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
|
|
226
229
|
machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
|
|
227
230
|
machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
|
|
228
231
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
229
232
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
230
233
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
|
|
231
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
234
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=MyKtPoCGTLqv-AARorI57XjZwE9v_ZpfvIFuZ8RCJrg,11689
|
|
232
235
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
233
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
234
|
-
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=
|
|
236
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=Uoc2e9gZiuR1egX2hTPEn1iTbj069jQ8FlqzdUi7r38,607
|
|
237
|
+
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
|
|
235
238
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
236
|
-
machineconfig/scripts/python/helpers_repos/record.py,sha256=
|
|
239
|
+
machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
|
|
237
240
|
machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
|
|
238
241
|
machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
239
242
|
machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=
|
|
241
|
-
machineconfig/scripts/python/helpers_utils/
|
|
243
|
+
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=wCQPpsOeuNz0V7_SopHWLRgYQcQryDdQSDabikVS3AE,3054
|
|
244
|
+
machineconfig/scripts/python/helpers_utils/download.py,sha256=kGSk17oOPd1soN1JCxYRdnNId0Yux1HNhExwClrPAYk,6654
|
|
245
|
+
machineconfig/scripts/python/helpers_utils/path.py,sha256=cni9iBM1BbnfJt38gWOPQfcmmMx0CcAeiE1V7pH10k0,7101
|
|
242
246
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
+
machineconfig/scripts/python/nw/address.py,sha256=pKawu1OqoVsLtridVAdwrW7JnXy2jxRA8qKLJekjj2g,4626
|
|
243
248
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
244
|
-
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=
|
|
249
|
+
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=Tx1LPEelSU7Oo-wA7LiSgH0KWWbZ03GBRxIGajZy6jk,9734
|
|
245
250
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
246
251
|
machineconfig/scripts/python/nw/mount_nfs,sha256=Dri4hGiM2GxpqqxpdBPbf7dRHrr7P1HzZy6xtrHYQfU,1855
|
|
247
252
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
@@ -250,15 +255,16 @@ machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lD
|
|
|
250
255
|
machineconfig/scripts/python/nw/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
|
|
251
256
|
machineconfig/scripts/python/nw/mount_ssh.py,sha256=qt0P4T4pheszexBxaDeLVrGdLIVRoOc-UdfYv5r0OLY,2587
|
|
252
257
|
machineconfig/scripts/python/nw/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
|
|
253
|
-
machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=
|
|
254
|
-
machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=
|
|
258
|
+
machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=0tjKgf5bElHqSgwUEFVY7iKOxax93Lxy-nJ8krqjUZ0,30868
|
|
259
|
+
machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJhSzsDIvYoyqQMVzzSNgXz11A,29920
|
|
255
260
|
machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
|
|
256
|
-
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=
|
|
261
|
+
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=bxdh2rGV4GABcjwzj3Y_eJIO5p5-w6LGY9XF9XZLBwU,3604
|
|
257
262
|
machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFTbhwFchYUu8zsjM,2117
|
|
263
|
+
machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
|
|
258
264
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
259
265
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
260
266
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
261
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
267
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=nWdaS3OrLUaivEwRe-4T1Mw5OkSGNWQVb8wUowHgXRo,322
|
|
262
268
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
263
269
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
264
270
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -297,7 +303,7 @@ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8D
|
|
|
297
303
|
machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=TUpOoG2WpnKbjpgECT2_yPsGdhu_5JxWfl4KpY9yS0A,365
|
|
298
304
|
machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
299
305
|
machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
|
|
300
|
-
machineconfig/settings/lf/windows/lfcd.ps1,sha256=
|
|
306
|
+
machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
|
|
301
307
|
machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
|
|
302
308
|
machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
|
|
303
309
|
machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
|
|
@@ -336,16 +342,15 @@ machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HB
|
|
|
336
342
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
343
|
machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3NJlhjjNW60tpvMgUYAqO4fKtJ5MsAnlf0CefcLO4,3520
|
|
338
344
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
339
|
-
machineconfig/settings/shells/nushell/config.nu,sha256=
|
|
340
|
-
machineconfig/settings/shells/nushell/env.nu,sha256=
|
|
341
|
-
machineconfig/settings/shells/nushell/init.nu,sha256=
|
|
342
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
343
|
-
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
|
+
machineconfig/settings/shells/nushell/config.nu,sha256=_8fPc2vIoKIquK0EFJ2lrkzJdb3ZMQnMF70LIbt9Czo,108
|
|
346
|
+
machineconfig/settings/shells/nushell/env.nu,sha256=YmFVuUToLG8YHH5B1UQ0y9kvgxhGzIjHbBjdtFM3e-U,1039
|
|
347
|
+
machineconfig/settings/shells/nushell/init.nu,sha256=_VpH1S6iX_27L7gUPkyVowdQu3CJWE5XgOUrVn3tiTk,7252
|
|
348
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
|
|
344
349
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
345
350
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
346
351
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
|
|
347
352
|
machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
|
|
348
|
-
machineconfig/settings/shells/zsh/init.sh,sha256=
|
|
353
|
+
machineconfig/settings/shells/zsh/init.sh,sha256=46-PVbbuv4h86k6lkSzALCkW7i_qZukfQm5ZFRwAEhs,2821
|
|
349
354
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
350
355
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
351
356
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -380,13 +385,13 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
380
385
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
381
386
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
382
387
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
383
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
388
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=K0el74YyHJmmzNwrMeG9Ckg1ii82sQMFRGKH9lEgSDQ,1606
|
|
384
389
|
machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
|
|
385
390
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
386
391
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
387
392
|
machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
|
|
388
393
|
machineconfig/setup_windows/__init__.py,sha256=vBFYK6J3-N7tmbB5wqnJoHK7uMnCtI3Ln3BFHygxK9w,334
|
|
389
|
-
machineconfig/setup_windows/uv.ps1,sha256=
|
|
394
|
+
machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
|
|
390
395
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
391
396
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
392
397
|
machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
|
|
@@ -395,37 +400,36 @@ machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdW
|
|
|
395
400
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
396
401
|
machineconfig/setup_windows/ssh/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
397
402
|
machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
398
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
399
|
-
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=
|
|
403
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=rKtO0-_j3NS8E1EdORfSbsFv6FycYiDGjS8PajurkUc,1939
|
|
404
|
+
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=bcRWU6QIFv5U4ibXy7jKqO7YfxpI3KvvesZ88aQD49E,652
|
|
400
405
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
406
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
402
407
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
|
-
machineconfig/utils/accessories.py,sha256=
|
|
404
|
-
machineconfig/utils/code.py,sha256=
|
|
405
|
-
machineconfig/utils/installer.py,sha256=cXR0AWVuhAl1th37GlS7qBmEdKIqAaCIXAEiBYUu2as,9476
|
|
408
|
+
machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
|
|
409
|
+
machineconfig/utils/code.py,sha256=gNy-Fl-Lqu3gEg07anlPlNVXrB7mv0x2jTBBJSL-ht8,7927
|
|
406
410
|
machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
|
|
407
|
-
machineconfig/utils/links.py,sha256=
|
|
408
|
-
machineconfig/utils/meta.py,sha256=
|
|
411
|
+
machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
|
|
412
|
+
machineconfig/utils/meta.py,sha256=CLkBibpumQGQXJvOhsCeUQSU9-BVdapntTMLlV6RGx0,10528
|
|
409
413
|
machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
|
|
410
|
-
machineconfig/utils/options.py,sha256=
|
|
411
|
-
machineconfig/utils/path_extended.py,sha256
|
|
412
|
-
machineconfig/utils/path_helper.py,sha256=
|
|
414
|
+
machineconfig/utils/options.py,sha256=aXQ9q3Ri8IAiFVLNVs2VD7t_qVrCHx601UktHvDFOOs,7457
|
|
415
|
+
machineconfig/utils/path_extended.py,sha256=fqneBrU8TirDw3J8bUH-HW99aIEf7rePycanfxudVTc,50693
|
|
416
|
+
machineconfig/utils/path_helper.py,sha256=9F6maZpQ2Ad_6SlkqXFraXbPcwj2W2o8dWEv08taEpA,10370
|
|
413
417
|
machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
|
|
414
418
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
415
419
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
416
420
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
417
|
-
machineconfig/utils/ssh.py,sha256=
|
|
421
|
+
machineconfig/utils/ssh.py,sha256=P4iR2TX7wP7093JAAOfjJTeOGU8hCO8YKU_w7BS45Rk,17232
|
|
418
422
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
419
423
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
420
|
-
machineconfig/utils/upgrade_packages.py,sha256=
|
|
421
|
-
machineconfig/utils/ve.py,sha256=
|
|
424
|
+
machineconfig/utils/upgrade_packages.py,sha256=enETosTdh90PVU2GghR7cdzoKDvn93vaTgLYeSLKDCg,7116
|
|
425
|
+
machineconfig/utils/ve.py,sha256=JUPl39BXk5SShzgqhdMKYRIOgoFVaSFZnkcqdXhaMy0,2489
|
|
422
426
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
427
|
machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
|
|
424
428
|
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
425
429
|
machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
|
|
426
430
|
machineconfig/utils/files/ascii_art.py,sha256=SQkayd2r_PkvLCNRjNnq5JzYz8t_dOMHquiJ3E6-9Ck,5216
|
|
427
431
|
machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
|
|
428
|
-
machineconfig/utils/files/headers.py,sha256=
|
|
432
|
+
machineconfig/utils/files/headers.py,sha256=nZVdTKCt-n600huiX5qVZO22aArjn4CPsFcjRWrEIBY,3523
|
|
429
433
|
machineconfig/utils/files/read.py,sha256=QDxLEIYi0NcgAys97IVB6IUl4S9CiFP6TKGxUxRBJOM,4330
|
|
430
434
|
machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
|
|
431
435
|
machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
|
|
@@ -435,16 +439,22 @@ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
435
439
|
machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
|
|
436
440
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
441
|
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
|
|
438
|
-
machineconfig/utils/installer_utils/
|
|
439
|
-
machineconfig/utils/installer_utils/
|
|
440
|
-
machineconfig/utils/installer_utils/
|
|
442
|
+
machineconfig/utils/installer_utils/install_from_url.py,sha256=18eOJNIfLsiUv9FAvdvGu92rwgb0wu89YrYT3VC8UNk,8548
|
|
443
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=82ZzlOK3ryS1AOKcrYBzDZZp_kKQUCoF8UJ4VJMqXPE,18152
|
|
444
|
+
machineconfig/utils/installer_utils/installer_cli.py,sha256=EkVRZLDeb4aEMatSTx8Nnx8XeWkTDQqwOut2dF3IERg,9680
|
|
445
|
+
machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
|
|
446
|
+
machineconfig/utils/installer_utils/installer_runner.py,sha256=yHaW2_5XM7NTfS7kWDEhb7MJZAr4GMzs1aR6pOFYBBo,8047
|
|
441
447
|
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
|
|
442
448
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
443
|
-
machineconfig/utils/schemas/layouts/layout_types.py,sha256=
|
|
449
|
+
machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
|
|
444
450
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
445
|
-
machineconfig/utils/ssh_utils/
|
|
446
|
-
machineconfig
|
|
447
|
-
machineconfig
|
|
448
|
-
machineconfig
|
|
449
|
-
machineconfig
|
|
450
|
-
machineconfig-7.
|
|
451
|
+
machineconfig/utils/ssh_utils/abc.py,sha256=SxBUsm4cHsIrUZhUxN-PimKE7It1oOHWrxShLn9dE0U,243
|
|
452
|
+
machineconfig/utils/ssh_utils/copy_from_here.py,sha256=-iQdk2d5S9xDIhU2hsdAWWRmRYjPZX33SxvBSrpKjdY,5322
|
|
453
|
+
machineconfig/utils/ssh_utils/copy_to_here.py,sha256=yM-U7knnOA7IwgXmXEdoeJ4SChsd4aMAyxkeBTkkcYU,13844
|
|
454
|
+
machineconfig/utils/ssh_utils/utils.py,sha256=C5Ht13WlKdXEwaSbs9SE8v09Sw_8Dn0ei4_bAwXQpLE,6198
|
|
455
|
+
machineconfig/utils/ssh_utils/wsl.py,sha256=qp0pIG7L6gBhv7KiFP_LxYkiJ7Ji5gDcxa0kILwu9Do,6371
|
|
456
|
+
machineconfig-7.79.dist-info/METADATA,sha256=pBjVSp93FPKuuJTKItkzppJ8bDgAqxjD4cqfcM1GPX0,5939
|
|
457
|
+
machineconfig-7.79.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
458
|
+
machineconfig-7.79.dist-info/entry_points.txt,sha256=nZv_eHgIxktijrRlv1O4AMwbXXN-pnEUwQF7qZC9lcI,740
|
|
459
|
+
machineconfig-7.79.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
460
|
+
machineconfig-7.79.dist-info/RECORD,,
|
|
@@ -7,8 +7,8 @@ devops = machineconfig.scripts.python.devops:main
|
|
|
7
7
|
explore = machineconfig.scripts.python.explore:main
|
|
8
8
|
fire = machineconfig.scripts.python.fire_jobs:main
|
|
9
9
|
ftpx = machineconfig.scripts.python.ftpx:main
|
|
10
|
-
machineconfig = machineconfig.scripts.python.
|
|
11
|
-
mcfg = machineconfig.scripts.python.
|
|
10
|
+
machineconfig = machineconfig.scripts.python.mcfg_entry:main
|
|
11
|
+
mcfg = machineconfig.scripts.python.mcfg_entry:main
|
|
12
12
|
msearch = machineconfig.scripts.python.msearch:main
|
|
13
13
|
sessions = machineconfig.scripts.python.sessions:main
|
|
14
14
|
terminal = machineconfig.scripts.python.terminal:main
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# 🐘 POSTGRESQL INSTALLATION SCRIPT 🐘
|
|
3
|
-
# This script installs PostgreSQL database on Ubuntu/Debian systems
|
|
4
|
-
# Reference: https://www.postgresql.org/download/linux/ubuntu/
|
|
5
|
-
|
|
6
|
-
echo """🚀 STARTING POSTGRESQL INSTALLATION | Setting up PostgreSQL database
|
|
7
|
-
"""
|
|
8
|
-
|
|
9
|
-
# Install PostgreSQL common package
|
|
10
|
-
echo "📥 Installing PostgreSQL common package..."
|
|
11
|
-
sudo nala install postgresql-common -y
|
|
12
|
-
|
|
13
|
-
# Run the PostgreSQL repository setup script
|
|
14
|
-
echo "🔧 Setting up PostgreSQL repository..."
|
|
15
|
-
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
|
|
16
|
-
|
|
17
|
-
# Install PostgreSQL 17
|
|
18
|
-
echo """📦 INSTALLING POSTGRESQL | Installing PostgreSQL 17
|
|
19
|
-
"""
|
|
20
|
-
sudo nala install postgresql-17 -y
|
|
21
|
-
# Alternative: sudo nala install postgresql -y
|
|
22
|
-
|
|
23
|
-
echo """✅ INSTALLATION COMPLETE | PostgreSQL has been installed successfully
|
|
24
|
-
"""
|
|
25
|
-
echo "ℹ️ PostgreSQL service should be running automatically"
|
|
26
|
-
echo "💡 Connect to default 'postgres' database with: sudo -u postgres psql"
|
|
27
|
-
echo "🔄 To check service status: sudo systemctl status postgresql"
|
|
28
|
-
|
|
29
|
-
# REMOVAL INSTRUCTIONS:
|
|
30
|
-
echo """#-----------------------------------------------------------------------
|
|
31
|
-
📝 NOTES | For future reference
|
|
32
|
-
#-----------------------------------------------------------------------
|
|
33
|
-
To remove PostgreSQL completely:
|
|
34
|
-
sudo apt-get --purge remove postgresql postgresql-*
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
|
-
# Alternative installation method (commented out):
|
|
38
|
-
# sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $ubuntu_version-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
39
|
-
# curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
|
40
|
-
# sudo nala update
|
|
41
|
-
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import typer
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
def machineconfig_lf():
|
|
6
|
-
# from machineconfig.scripts.python.helpers_msearch import FZFG_LINUX_PATH, FZFG_WINDOWS_PATH
|
|
7
|
-
import platform
|
|
8
|
-
if platform.system() == "Linux":
|
|
9
|
-
script = """
|
|
10
|
-
tmp="$(mktemp)"
|
|
11
|
-
lf -last-dir-path="$tmp" "$@"
|
|
12
|
-
if [ -f "$tmp" ]; then
|
|
13
|
-
dir="$(cat "$tmp")"
|
|
14
|
-
rm -f "$tmp"
|
|
15
|
-
if [ -d "$dir" ]; then
|
|
16
|
-
if [ "$dir" != "$(pwd)" ]; then
|
|
17
|
-
cd "$dir"
|
|
18
|
-
fi
|
|
19
|
-
fi
|
|
20
|
-
fi
|
|
21
|
-
"""
|
|
22
|
-
elif platform.system() == "Windows":
|
|
23
|
-
script = r"""
|
|
24
|
-
$tmp = [System.IO.Path]::GetTempFileName()
|
|
25
|
-
~\AppData\Local\Microsoft\WindowsApps\lf.exe -last-dir-path="$tmp" $args
|
|
26
|
-
if (Test-Path -PathType Leaf "$tmp")
|
|
27
|
-
{
|
|
28
|
-
$dir = Get-Content "$tmp"
|
|
29
|
-
Remove-Item -Force "$tmp"
|
|
30
|
-
if (Test-Path -PathType Container "$dir")
|
|
31
|
-
{
|
|
32
|
-
if ("$dir" -ne "$pwd")
|
|
33
|
-
{
|
|
34
|
-
Set-Location "$dir"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
"""
|
|
39
|
-
else:
|
|
40
|
-
raise RuntimeError("Unsupported platform")
|
|
41
|
-
|
|
42
|
-
from machineconfig.utils.code import exit_then_run_shell_script
|
|
43
|
-
exit_then_run_shell_script(script=script, strict=False)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
def main():
|
|
47
|
-
app = typer.Typer(add_completion=False, no_args_is_help=True)
|
|
48
|
-
app.command(name="lf", help="machineconfig lf wrapper.", no_args_is_help=False)(machineconfig_lf)
|
|
49
|
-
app()
|
|
File without changes
|
/machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|