machineconfig 7.64__py3-none-any.whl → 7.83__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 +4 -2
- machineconfig/jobs/installer/custom/yazi.py +120 -0
- machineconfig/jobs/installer/custom_dev/nerdfont.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +26 -12
- machineconfig/jobs/installer/custom_dev/sysabc.py +26 -5
- machineconfig/jobs/installer/installer_data.json +232 -96
- machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
- machineconfig/profile/create_helper.py +0 -12
- machineconfig/profile/create_links_export.py +2 -2
- machineconfig/profile/mapper.toml +2 -2
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/python/agents.py +22 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +4 -0
- machineconfig/scripts/python/croshell.py +22 -17
- machineconfig/scripts/python/devops.py +1 -1
- machineconfig/scripts/python/devops_navigator.py +0 -4
- machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/fire_jobs.py +13 -13
- 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/start_slidev.py +6 -7
- machineconfig/scripts/python/helpers_devops/cli_config.py +10 -0
- machineconfig/scripts/python/helpers_devops/cli_nw.py +90 -10
- machineconfig/scripts/python/helpers_devops/cli_self.py +8 -7
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +7 -7
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +12 -11
- machineconfig/scripts/python/helpers_devops/cli_terminal.py +8 -10
- machineconfig/scripts/python/helpers_devops/cli_utils.py +2 -1
- machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +20 -9
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +2 -2
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +58 -1
- machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +5 -3
- machineconfig/scripts/python/helpers_repos/count_lines.py +40 -11
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_utils/download.py +4 -3
- machineconfig/scripts/python/helpers_utils/path.py +87 -34
- machineconfig/scripts/python/interactive.py +1 -1
- machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -0
- machineconfig/scripts/python/msearch.py +55 -6
- machineconfig/scripts/python/nw/address.py +132 -0
- machineconfig/scripts/python/nw/devops_add_ssh_key.py +8 -5
- machineconfig/scripts/python/terminal.py +2 -2
- machineconfig/scripts/python/utils.py +12 -11
- 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/yazi/init.lua +4 -0
- machineconfig/settings/yazi/keymap_linux.toml +11 -4
- machineconfig/settings/yazi/theme.toml +4 -0
- machineconfig/settings/yazi/yazi_linux.toml +84 -0
- machineconfig/settings/yazi/yazi_windows.toml +58 -0
- 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 +4 -2
- machineconfig/utils/installer_utils/github_release_bulk.py +104 -62
- machineconfig/utils/installer_utils/install_from_url.py +200 -0
- machineconfig/utils/installer_utils/installer_class.py +25 -74
- machineconfig/utils/installer_utils/installer_cli.py +40 -50
- machineconfig/utils/installer_utils/installer_helper.py +100 -0
- machineconfig/utils/installer_utils/installer_runner.py +5 -8
- machineconfig/utils/links.py +2 -2
- machineconfig/utils/meta.py +2 -2
- machineconfig/utils/options.py +3 -3
- machineconfig/utils/path_extended.py +1 -1
- machineconfig/utils/path_helper.py +0 -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 +210 -0
- machineconfig/utils/upgrade_packages.py +2 -1
- machineconfig/utils/ve.py +11 -4
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/METADATA +2 -2
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/RECORD +96 -89
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/entry_points.txt +2 -2
- machineconfig/scripts/python/explore.py +0 -49
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag +0 -17
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga +0 -21
- machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg +0 -4
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1 +0 -3
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat +0 -20
- machineconfig/settings/yazi/yazi.toml +0 -17
- machineconfig/setup_linux/others/cli_installation.sh +0 -137
- /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-7.64.dist-info → machineconfig-7.83.dist-info}/WHEEL +0 -0
- {machineconfig-7.64.dist-info → machineconfig-7.83.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,11 +51,12 @@ 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=
|
|
54
|
+
machineconfig/jobs/installer/installer_data.json,sha256=XxDM-PfzyaOiKExqystdDy1_pJtetSCTj46MleSPwP0,117456
|
|
55
55
|
machineconfig/jobs/installer/package_groups.py,sha256=AE1sPeEI6i7uLE_rMavA2m1skb27aYZIfjH0ukeGDYc,4938
|
|
56
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
58
|
machineconfig/jobs/installer/custom/hx.py,sha256=nI8g49zsmksx5ZZOcvcaM_gqWesOjobcG8wTzhrIA64,9021
|
|
59
|
+
machineconfig/jobs/installer/custom/yazi.py,sha256=CP--J6mQWCssbUFo633Uoar5_tdY6orM1U0g5miAXJM,4201
|
|
59
60
|
machineconfig/jobs/installer/custom_dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
61
|
machineconfig/jobs/installer/custom_dev/alacritty.py,sha256=STXertp5pE6VVhcjAfZSKBxAC94S2HAzas646jwd4ow,2754
|
|
61
62
|
machineconfig/jobs/installer/custom_dev/brave.py,sha256=1WTUgEHlpzA9POK6hMeL4-ZxDs_PvLm9q_l19edI_K8,2887
|
|
@@ -67,10 +68,10 @@ machineconfig/jobs/installer/custom_dev/dubdb_adbc.py,sha256=FsE0q9Vx1M2BFtLNiKg
|
|
|
67
68
|
machineconfig/jobs/installer/custom_dev/espanso.py,sha256=H1rZb4xnjs72lL0_mB0M4d7NrDyVv1sAG3NOkOrCB64,4137
|
|
68
69
|
machineconfig/jobs/installer/custom_dev/goes.py,sha256=SIRkpzkCeWMof0BnPuoEJy3KHNkVZs8J5DnoZJXb9TY,2130
|
|
69
70
|
machineconfig/jobs/installer/custom_dev/lvim.py,sha256=2-wbh_IClTFcFkSYk9EsRiv88-isSNIVX6dNZ1L5m8Q,2985
|
|
70
|
-
machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=
|
|
71
|
-
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=
|
|
71
|
+
machineconfig/jobs/installer/custom_dev/nerdfont.py,sha256=FdBM2jhfx0Lktdppt-7wBeERfgFXMlTAieTHIh5XKxA,4174
|
|
72
|
+
machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py,sha256=EQrooSjtqw3YvOfD9z8JaVrQShZbzGh3QPLiHPrKSEs,6017
|
|
72
73
|
machineconfig/jobs/installer/custom_dev/redis.py,sha256=bReDLsgy37eJyTU4TXE7FQpKFi-_usQC7bwhfXvZuBU,3259
|
|
73
|
-
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=
|
|
74
|
+
machineconfig/jobs/installer/custom_dev/sysabc.py,sha256=EPZEfCPj1s5cfjQ4lulw1_5YFtsv7q932WXsXoeN0TQ,5976
|
|
74
75
|
machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=yQqRpnaj7I_2q-Ge9HX0leK5-ntUCWpkqgH09cgmh-Q,3063
|
|
75
76
|
machineconfig/jobs/installer/custom_dev/winget.py,sha256=gLdwM20jKMf2bMV3BAcOg4MkuzwF09CU5OhXvLkPoHo,5738
|
|
76
77
|
machineconfig/jobs/installer/linux_scripts/brave.sh,sha256=_al_D5iZSwtlDRTeqjjK37nEWai8mrHFk-cZeVws9MY,1389
|
|
@@ -86,22 +87,21 @@ machineconfig/jobs/installer/linux_scripts/q.sh,sha256=lPSHBeZm4z6xv5K3cYPiOkK0A
|
|
|
86
87
|
machineconfig/jobs/installer/linux_scripts/redis.sh,sha256=-Ur541bMwjq6TKrmvy-S5c_qoR8GlRpE6923USDylm8,2097
|
|
87
88
|
machineconfig/jobs/installer/linux_scripts/vscode.sh,sha256=fI6lNCWUjlstNE319Y-rUtimvLLb9GcNh3z9t1KRaaE,4541
|
|
88
89
|
machineconfig/jobs/installer/linux_scripts/wezterm.sh,sha256=hZBS0CopWr-VrGhFSVjoWATFzHqCt6V41_N8bImAQRc,1294
|
|
89
|
-
machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=
|
|
90
|
+
machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1,sha256=Y7uof8naGBNv79heNXJ4KyH5sXDjDm0KwCKnshpprR4,6494
|
|
90
91
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
92
|
machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623RtfQQ,766
|
|
92
93
|
machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
|
|
93
|
-
machineconfig/profile/create_helper.py,sha256=
|
|
94
|
+
machineconfig/profile/create_helper.py,sha256=Y67lB_KBBKoI8aLvJyW7JiI4hFMeDxSGtqclT7jdzGA,2497
|
|
94
95
|
machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
|
|
95
|
-
machineconfig/profile/create_links_export.py,sha256=
|
|
96
|
+
machineconfig/profile/create_links_export.py,sha256=WfswDxxp7yXkAIDC-7wwc0skdivrCQNRJUS3rqUZMq8,5251
|
|
96
97
|
machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
|
|
97
|
-
machineconfig/profile/mapper.toml,sha256=
|
|
98
|
+
machineconfig/profile/mapper.toml,sha256=tW2DPZ4sH-W9DSJ29AqBxR1WvubHY6BVyr9orQ_EboE,12715
|
|
98
99
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
99
100
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
100
101
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
101
102
|
machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
|
|
102
103
|
machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
|
|
103
|
-
machineconfig/scripts/
|
|
104
|
-
machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
|
|
104
|
+
machineconfig/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
105
|
machineconfig/scripts/linux/wrap_mcfg,sha256=EfqgsFfYLPK21MBpquwaeWUyldUWjTmU69z06-LZTnA,1402
|
|
106
106
|
machineconfig/scripts/linux/other/share_cloud.sh,sha256=lIZrXiaOT11kzu4NFNTXvANhc2bMdSPDYD1-7XUO_C0,2027
|
|
107
107
|
machineconfig/scripts/linux/other/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
|
|
@@ -109,21 +109,20 @@ machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4I
|
|
|
109
109
|
machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
110
110
|
machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l7Gs51u-E,1799
|
|
111
111
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
machineconfig/scripts/python/agents.py,sha256=
|
|
112
|
+
machineconfig/scripts/python/agents.py,sha256=lW0Cx8xB84qqon5G4LUFPxqMnXu6rkDVqYjhzVhkq8M,10858
|
|
113
113
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
114
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
114
|
+
machineconfig/scripts/python/croshell.py,sha256=tufNeedizT_U4h8KsuXsSR7uWhOiDoDFcU-VKl9N90s,7570
|
|
115
115
|
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/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
|
|
116
|
+
machineconfig/scripts/python/devops.py,sha256=O7o44lUcdAs5R3th2d3xjLPSjJk7sOTLOJUyBF-yHtQ,2213
|
|
117
|
+
machineconfig/scripts/python/devops_navigator.py,sha256=UeqkY9_c22Ce9b1ksFGq-lNwaGCMMHL1LikPhP-QDt8,154
|
|
118
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=7S5tn6Y_Dov94ZRha6mqJMRAsf3en2O1DJfxRkSdPIQ,13561
|
|
119
|
+
machineconfig/scripts/python/ftpx.py,sha256=ncFvM4p-ohBB0Pez-0zSI6NQBN1T_tfltN-dB09yPzQ,11087
|
|
120
|
+
machineconfig/scripts/python/interactive.py,sha256=cD9wYKPKtbVZfYuDQh6GDTd7fqgVtEs8B2kNM_WavyA,11546
|
|
121
|
+
machineconfig/scripts/python/mcfg_entry.py,sha256=FKVnSR1mlZutQfmHu7fz2in0m-QntiIJE2L_bDVJ7BY,3088
|
|
122
|
+
machineconfig/scripts/python/msearch.py,sha256=3Xr0cOTcSu3YjmQslreggHOMs5nwTsIxsCbgWOjrVt8,3523
|
|
124
123
|
machineconfig/scripts/python/sessions.py,sha256=uypWqdBpzYtyCzPPXQJdQgZlgyplHtQPDh69rV1DFBQ,10270
|
|
125
|
-
machineconfig/scripts/python/terminal.py,sha256=
|
|
126
|
-
machineconfig/scripts/python/utils.py,sha256=
|
|
124
|
+
machineconfig/scripts/python/terminal.py,sha256=3333ZxOwPhAOPj9KmKO24NrK7afVTD7Hb5bTf35dcfc,5928
|
|
125
|
+
machineconfig/scripts/python/utils.py,sha256=m2OBshQ1v6Ehf1eXGkCQB-MH0c1dQQ7IiZNEuqVTtiw,3595
|
|
127
126
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
127
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
129
128
|
machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
|
|
@@ -142,7 +141,7 @@ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeG
|
|
|
142
141
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
143
142
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
144
143
|
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=
|
|
144
|
+
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=Evz3iDmrJQxl5CBO6CLdmO-Xc6HpzCsVBcZAMI95TnY,4635
|
|
146
145
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
|
|
147
146
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
148
147
|
machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
|
|
@@ -155,8 +154,13 @@ machineconfig/scripts/python/ai/solutions/kilocode/privacy.md,sha256=oKOXnfFOdUu
|
|
|
155
154
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1dNzkUCS_vCX_fy2TisRtfg8DXH-D4N1iUVU,99
|
|
156
155
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
157
156
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
157
|
+
machineconfig/scripts/python/env_manager/env_manager_tui.py,sha256=yrIQ6WDFtQgqFH3_IA1mzaAz_mCjXI8BDqmSpll-u6E,7055
|
|
158
158
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
159
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
159
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=O-4QOm72VPADP0kMKcHaC94SKz8uLzv68RyLMPuCfXY,6932
|
|
160
|
+
machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
|
|
161
|
+
machineconfig/scripts/python/helpers/qr_code.py,sha256=DLZwRI9j8g6qV6XngHEoiStqVYKmXhPjuA_sSTgvf88,5150
|
|
162
|
+
machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
|
|
163
|
+
machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
|
|
160
164
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
165
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
162
166
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -172,32 +176,32 @@ machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hx
|
|
|
172
176
|
machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
|
|
173
177
|
machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
|
|
174
178
|
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=
|
|
179
|
+
machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
|
|
180
|
+
machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
|
|
181
|
+
machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=0CF6VN26a0j7E7PcIGEX_vFBKPXOx7U7sRDkfrE_A1I,6618
|
|
182
|
+
machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
|
|
179
183
|
machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
|
|
180
184
|
machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
181
185
|
machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
186
|
machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
|
|
183
187
|
machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
184
188
|
machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
|
|
185
|
-
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=
|
|
189
|
+
machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=hpLSRENN8zBdiKUA67z9oiXZw59dfrQU1tM80-Agz7o,4874
|
|
186
190
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
187
191
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
188
192
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
193
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=dMvN99_iXjotmUYd9JuejEhLrxsmmiV5HNSGLuN_Pc4,5512
|
|
190
194
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
|
|
191
195
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
192
|
-
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=V88k38wdOFaR401jCZfY7eCp3rcRQ5Mmd2kwqq07p3s,10795
|
|
193
197
|
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=
|
|
198
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=fsnVAn3T6GSvIcj2tvWYh17G3dLHPvrQwiAnXCXLUFY,7064
|
|
199
|
+
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=BPHC-M4OjILY130iL4QcRcjBZNbYwzuSc7clSpr9oUo,6404
|
|
200
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=IDed7qI-LM9kCd4XI-5El_xFtqGZCqDyF8chQJKLdsg,6493
|
|
201
|
+
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=e9eSqy0e70YlUDkCM3KdbfGn1Gv0oR_TQEzLm5p3f-s,6148
|
|
202
|
+
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
|
|
199
203
|
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
|
|
200
|
-
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=
|
|
204
|
+
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=IKDd0fD8qINFoxC3Ajk0GtXiDfXgiL6shrUMubx_yx4,20312
|
|
201
205
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
202
206
|
machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
207
|
machineconfig/scripts/python/helpers_devops/themes/choose_pwsh_theme.ps1,sha256=58gFOeynADHLTdk8zqEnndBtyNGrln0jvpo76O0UWTw,3136
|
|
@@ -206,31 +210,27 @@ machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha
|
|
|
206
210
|
machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
|
|
207
211
|
machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
212
|
machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
213
|
+
machineconfig/scripts/python/helpers_fire_command/f.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
214
|
machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=yJVFrdrH9iVkKxY0z6JXfJRuRZ22M2cc6bArt0l9F3w,6230
|
|
210
215
|
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=
|
|
216
|
+
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=hj81yaj5NBWkxfpZeym99pXfiP_YP_0DRJFbjd7CeRY,5926
|
|
212
217
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
218
|
machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
|
|
214
|
-
machineconfig/scripts/python/helpers_msearch/scripts_linux/
|
|
215
|
-
machineconfig/scripts/python/helpers_msearch/
|
|
216
|
-
machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga,sha256=9K84gLZbxar19FE2bjbgdTztmyFyyCH7lELr6S9PwyA,454
|
|
217
|
-
machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg,sha256=JgQJGwxaChr148bDnpTB0rrqZMe2o2zGSDA9x_oUhWM,133
|
|
218
|
-
machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
|
|
219
|
-
machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
|
|
220
|
-
machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
|
|
219
|
+
machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg,sha256=1WPQn8nudfOLdpyya4THQgAzTH7LOSnk-YH0e9e8KRE,1201
|
|
220
|
+
machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1,sha256=CJbrvZVAAUxDxMFhgPKjq07mtn6V29tBrpodCvCDGT4,1918
|
|
221
221
|
machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
|
|
222
222
|
machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
|
|
223
223
|
machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
|
|
224
|
-
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=
|
|
224
|
+
machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
|
|
225
225
|
machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
|
|
226
226
|
machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
|
|
227
227
|
machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
|
|
228
228
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
229
229
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
230
230
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
|
|
231
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
232
|
-
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=
|
|
233
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
231
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=MuB97xFBdCR2OqgS2KvE9_dJUXGzr33g26ncFbjwLWE,11689
|
|
232
|
+
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=PTHI5WZd1wsCJLomcq2ON0wqIQ2Q2JFYAwjvddlwhVo,17455
|
|
233
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=JHbUxvc99xLdkqBu2EfNVCM_bveYJSecCKuOY6SZNSs,607
|
|
234
234
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
|
|
235
235
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
236
236
|
machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
|
|
@@ -238,11 +238,12 @@ machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPw
|
|
|
238
238
|
machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
239
239
|
machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
240
|
machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=wCQPpsOeuNz0V7_SopHWLRgYQcQryDdQSDabikVS3AE,3054
|
|
241
|
-
machineconfig/scripts/python/helpers_utils/download.py,sha256=
|
|
242
|
-
machineconfig/scripts/python/helpers_utils/path.py,sha256=
|
|
241
|
+
machineconfig/scripts/python/helpers_utils/download.py,sha256=kGSk17oOPd1soN1JCxYRdnNId0Yux1HNhExwClrPAYk,6654
|
|
242
|
+
machineconfig/scripts/python/helpers_utils/path.py,sha256=wPhd5dVWOEigz30Ji01_iORGGpMrtpFIs8IAdsHjUvE,7402
|
|
243
243
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
+
machineconfig/scripts/python/nw/address.py,sha256=pKawu1OqoVsLtridVAdwrW7JnXy2jxRA8qKLJekjj2g,4626
|
|
244
245
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
245
|
-
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=
|
|
246
|
+
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=Tx1LPEelSU7Oo-wA7LiSgH0KWWbZ03GBRxIGajZy6jk,9734
|
|
246
247
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
247
248
|
machineconfig/scripts/python/nw/mount_nfs,sha256=Dri4hGiM2GxpqqxpdBPbf7dRHrr7P1HzZy6xtrHYQfU,1855
|
|
248
249
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
@@ -256,10 +257,11 @@ machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJh
|
|
|
256
257
|
machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
|
|
257
258
|
machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=bxdh2rGV4GABcjwzj3Y_eJIO5p5-w6LGY9XF9XZLBwU,3604
|
|
258
259
|
machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFTbhwFchYUu8zsjM,2117
|
|
260
|
+
machineconfig/scripts/windows/mounts/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
|
|
259
261
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
260
262
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
261
263
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
262
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
264
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=iXtOOKE5M4ajtp59GSmw0JutMNk3J4SQGjxFc_EWbl0,322
|
|
263
265
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
264
266
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
265
267
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -298,7 +300,7 @@ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8D
|
|
|
298
300
|
machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=TUpOoG2WpnKbjpgECT2_yPsGdhu_5JxWfl4KpY9yS0A,365
|
|
299
301
|
machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
|
|
300
302
|
machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
|
|
301
|
-
machineconfig/settings/lf/windows/lfcd.ps1,sha256=
|
|
303
|
+
machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
|
|
302
304
|
machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
|
|
303
305
|
machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
|
|
304
306
|
machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
|
|
@@ -337,11 +339,10 @@ machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HB
|
|
|
337
339
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
340
|
machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=OJ3NJlhjjNW60tpvMgUYAqO4fKtJ5MsAnlf0CefcLO4,3520
|
|
339
341
|
machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
|
|
340
|
-
machineconfig/settings/shells/nushell/config.nu,sha256=
|
|
341
|
-
machineconfig/settings/shells/nushell/env.nu,sha256=
|
|
342
|
-
machineconfig/settings/shells/nushell/init.nu,sha256=
|
|
343
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
344
|
-
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
+
machineconfig/settings/shells/nushell/config.nu,sha256=_8fPc2vIoKIquK0EFJ2lrkzJdb3ZMQnMF70LIbt9Czo,108
|
|
343
|
+
machineconfig/settings/shells/nushell/env.nu,sha256=YmFVuUToLG8YHH5B1UQ0y9kvgxhGzIjHbBjdtFM3e-U,1039
|
|
344
|
+
machineconfig/settings/shells/nushell/init.nu,sha256=_VpH1S6iX_27L7gUPkyVowdQu3CJWE5XgOUrVn3tiTk,7252
|
|
345
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
|
|
345
346
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
346
347
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
347
348
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
|
|
@@ -355,11 +356,12 @@ machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RT
|
|
|
355
356
|
machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
|
|
356
357
|
machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
|
|
357
358
|
machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
|
|
358
|
-
machineconfig/settings/yazi/init.lua,sha256=
|
|
359
|
-
machineconfig/settings/yazi/keymap_linux.toml,sha256=
|
|
359
|
+
machineconfig/settings/yazi/init.lua,sha256=5ihDgbs9I1wxLpSUBJMBs4ecZ39P-MvMj25jWPbI0sY,1609
|
|
360
|
+
machineconfig/settings/yazi/keymap_linux.toml,sha256=xnjwPxZ4V_VHuiqJ2RJZRuYlkotT9xTEk7OD7INELVk,2240
|
|
360
361
|
machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
|
|
361
|
-
machineconfig/settings/yazi/theme.toml,sha256=
|
|
362
|
-
machineconfig/settings/yazi/
|
|
362
|
+
machineconfig/settings/yazi/theme.toml,sha256=YIzoyrdGQA-srv41M0z-O1avoQMM5_Mw9lwUCDagFio,56
|
|
363
|
+
machineconfig/settings/yazi/yazi_linux.toml,sha256=vjQUmL8sn6AFaZUMZG1MULXEP7l1e6l4yhI_DkBbTUQ,2589
|
|
364
|
+
machineconfig/settings/yazi/yazi_windows.toml,sha256=kiNr_lFyMLAa9CGeTW3hKcGCttqG76dOGvkK4tzQCLc,1535
|
|
363
365
|
machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
|
|
364
366
|
machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
|
|
365
367
|
machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
|
|
@@ -377,17 +379,16 @@ machineconfig/setup_linux/apps_desktop.sh,sha256=L2b_pcw3GiQdoAaoMO7J4bVvUoG5Pnu
|
|
|
377
379
|
machineconfig/setup_linux/apps_gui.sh,sha256=lFPYq7H2bRogPwW6QoEuSr9GnTjHS-jRM_eYg2rjOmM,2301
|
|
378
380
|
machineconfig/setup_linux/uv.sh,sha256=cyegPmMMB7B3OnVx9KxZiU1JQU3Z_oqboUgwzmW2W40,487
|
|
379
381
|
machineconfig/setup_linux/others/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
380
|
-
machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE31BXDP0Fmeta4--gpr-zJZlY,4010
|
|
381
382
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
382
383
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
383
384
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
384
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256
|
|
385
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=DY1aT6mH9Id-7jzntixwDpkuldLcY4-yDqXQkjkHLoY,1606
|
|
385
386
|
machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
|
|
386
387
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
387
388
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
388
389
|
machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
|
|
389
390
|
machineconfig/setup_windows/__init__.py,sha256=vBFYK6J3-N7tmbB5wqnJoHK7uMnCtI3Ln3BFHygxK9w,334
|
|
390
|
-
machineconfig/setup_windows/uv.ps1,sha256=
|
|
391
|
+
machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
|
|
391
392
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
392
393
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
393
394
|
machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
|
|
@@ -396,29 +397,29 @@ machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdW
|
|
|
396
397
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
397
398
|
machineconfig/setup_windows/ssh/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
|
|
398
399
|
machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
|
|
399
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
400
|
-
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=
|
|
400
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=vLx69x4B5Yh2Yn4NeKOHRCGnUjeMYgXn2cLAeF8GtCQ,1939
|
|
401
|
+
machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=bcRWU6QIFv5U4ibXy7jKqO7YfxpI3KvvesZ88aQD49E,652
|
|
401
402
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
403
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
403
404
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
|
-
machineconfig/utils/accessories.py,sha256=
|
|
405
|
-
machineconfig/utils/code.py,sha256=
|
|
405
|
+
machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
|
|
406
|
+
machineconfig/utils/code.py,sha256=gNy-Fl-Lqu3gEg07anlPlNVXrB7mv0x2jTBBJSL-ht8,7927
|
|
406
407
|
machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
|
|
407
|
-
machineconfig/utils/links.py,sha256=
|
|
408
|
-
machineconfig/utils/meta.py,sha256=
|
|
408
|
+
machineconfig/utils/links.py,sha256=hmPi5Nfi_8mrLy5dVcRnJGQsqQTuuPtlwB-hrPK7tk0,25044
|
|
409
|
+
machineconfig/utils/meta.py,sha256=CLkBibpumQGQXJvOhsCeUQSU9-BVdapntTMLlV6RGx0,10528
|
|
409
410
|
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=
|
|
411
|
+
machineconfig/utils/options.py,sha256=aXQ9q3Ri8IAiFVLNVs2VD7t_qVrCHx601UktHvDFOOs,7457
|
|
412
|
+
machineconfig/utils/path_extended.py,sha256=fqneBrU8TirDw3J8bUH-HW99aIEf7rePycanfxudVTc,50693
|
|
413
|
+
machineconfig/utils/path_helper.py,sha256=9F6maZpQ2Ad_6SlkqXFraXbPcwj2W2o8dWEv08taEpA,10370
|
|
413
414
|
machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
|
|
414
415
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
415
416
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
416
417
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
417
|
-
machineconfig/utils/ssh.py,sha256=
|
|
418
|
+
machineconfig/utils/ssh.py,sha256=P4iR2TX7wP7093JAAOfjJTeOGU8hCO8YKU_w7BS45Rk,17232
|
|
418
419
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
419
420
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
420
|
-
machineconfig/utils/upgrade_packages.py,sha256=
|
|
421
|
-
machineconfig/utils/ve.py,sha256=
|
|
421
|
+
machineconfig/utils/upgrade_packages.py,sha256=enETosTdh90PVU2GghR7cdzoKDvn93vaTgLYeSLKDCg,7116
|
|
422
|
+
machineconfig/utils/ve.py,sha256=JUPl39BXk5SShzgqhdMKYRIOgoFVaSFZnkcqdXhaMy0,2489
|
|
422
423
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
424
|
machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
|
|
424
425
|
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
@@ -434,18 +435,24 @@ machineconfig/utils/files/art/water_croco.txt,sha256=5SPK6W3TQe6mO9eFbDIZ4n1rNAj
|
|
|
434
435
|
machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
435
436
|
machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
|
|
436
437
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
|
-
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=
|
|
438
|
-
machineconfig/utils/installer_utils/
|
|
439
|
-
machineconfig/utils/installer_utils/
|
|
438
|
+
machineconfig/utils/installer_utils/github_release_bulk.py,sha256=0lbZDOfm0WDcQQutEKiHd7eOzmKWb6pgbUpGDSgcnYo,8198
|
|
439
|
+
machineconfig/utils/installer_utils/install_from_url.py,sha256=qaAdlxSjF9EpNoDaY71m4MRztMHpSalujy979EqLZbI,9402
|
|
440
|
+
machineconfig/utils/installer_utils/installer_class.py,sha256=p54_4bTBAH3DSmO5ftdmOWNrmD6Fcf2djQTNv-tA2YU,15510
|
|
441
|
+
machineconfig/utils/installer_utils/installer_cli.py,sha256=XD7Jn0C3ooriXHGt2ewpwopL0AhAq453BCGBwPyYbPo,8474
|
|
442
|
+
machineconfig/utils/installer_utils/installer_helper.py,sha256=-Tkq2K0-123sgxKDGjzraEHjBSUIWAEoV9IaSRPVD0U,4726
|
|
440
443
|
machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
|
|
441
|
-
machineconfig/utils/installer_utils/installer_runner.py,sha256=
|
|
444
|
+
machineconfig/utils/installer_utils/installer_runner.py,sha256=aISG0kaXV49PvRWz_wBaKJ9-SQ2rp_lMZjmeBZ1si78,7920
|
|
442
445
|
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
|
|
443
446
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
444
447
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
|
|
445
448
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
446
|
-
machineconfig/utils/ssh_utils/
|
|
447
|
-
machineconfig
|
|
448
|
-
machineconfig
|
|
449
|
-
machineconfig
|
|
450
|
-
machineconfig
|
|
451
|
-
machineconfig-7.
|
|
449
|
+
machineconfig/utils/ssh_utils/abc.py,sha256=WM06yGPx5DbiUgiJPn0IrnOPc5er80yDrpcjPcQ8N08,251
|
|
450
|
+
machineconfig/utils/ssh_utils/copy_from_here.py,sha256=-iQdk2d5S9xDIhU2hsdAWWRmRYjPZX33SxvBSrpKjdY,5322
|
|
451
|
+
machineconfig/utils/ssh_utils/copy_to_here.py,sha256=yM-U7knnOA7IwgXmXEdoeJ4SChsd4aMAyxkeBTkkcYU,13844
|
|
452
|
+
machineconfig/utils/ssh_utils/utils.py,sha256=C5Ht13WlKdXEwaSbs9SE8v09Sw_8Dn0ei4_bAwXQpLE,6198
|
|
453
|
+
machineconfig/utils/ssh_utils/wsl.py,sha256=nSzZnZ7M4d3mfW2z-57OQIwfVpa114bJVOf9tDLheLE,7865
|
|
454
|
+
machineconfig-7.83.dist-info/METADATA,sha256=owkrIN83BTswAk_FGMJn8Mf9DApMVCe2fc5R4BWCwws,5879
|
|
455
|
+
machineconfig-7.83.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
456
|
+
machineconfig-7.83.dist-info/entry_points.txt,sha256=nZv_eHgIxktijrRlv1O4AMwbXXN-pnEUwQF7qZC9lcI,740
|
|
457
|
+
machineconfig-7.83.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
458
|
+
machineconfig-7.83.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,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()
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
# uses fzf as filter After ripgrep (secondary filter)
|
|
4
|
-
# from https://github.com/junegunn/fzf/blob/master/ADVANCED.md#ripgrep-integration
|
|
5
|
-
# 1. Search for text in files using Ripgrep
|
|
6
|
-
# 2. Interactively narrow down the list using fzf
|
|
7
|
-
# 3. Open the file in Vim
|
|
8
|
-
IFS=: read -ra selected < <(
|
|
9
|
-
rg --color=always --line-number --no-heading --smart-case "${*:-}" |
|
|
10
|
-
fzf --ansi \
|
|
11
|
-
--color "hl:-1:underline,hl+:-1:underline:reverse" \
|
|
12
|
-
--delimiter : \
|
|
13
|
-
--preview 'batcat --color=always {1} --highlight-line {2}' \
|
|
14
|
-
--preview-window 'up,60%,border-bottom,+{2}+3/3,~3'
|
|
15
|
-
)
|
|
16
|
-
[ -n "${selected[0]}" ] && hx "${selected[0]}" "+${selected[1]}"
|
|
17
|
-
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
# From https://github.com/phiresky/ripgrep-all/wiki/fzf-Integration
|
|
4
|
-
|
|
5
|
-
rga-fzf() {
|
|
6
|
-
RG_PREFIX="rga --files-with-matches"
|
|
7
|
-
local file
|
|
8
|
-
file="$(
|
|
9
|
-
FZF_DEFAULT_COMMAND="$RG_PREFIX '$1'" \
|
|
10
|
-
fzf --sort --preview="[[ ! -z {} ]] && rga --pretty --context 5 {q} {}" \
|
|
11
|
-
--phony -q "$1" \
|
|
12
|
-
--bind "change:reload:$RG_PREFIX {q}" \
|
|
13
|
-
--preview-window="70%:wrap"
|
|
14
|
-
)" &&
|
|
15
|
-
echo "opening $file" &&
|
|
16
|
-
hx "$file"
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
# run the function
|
|
21
|
-
rga-fzf
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
REM adopted from https://github.com/phiresky/ripgrep-all/wiki/fzf-Integration
|
|
3
|
-
|
|
4
|
-
@echo off
|
|
5
|
-
setlocal
|
|
6
|
-
|
|
7
|
-
set RG_PREFIX=rga --files-with-matches
|
|
8
|
-
set FZF_DEFAULT_COMMAND=%RG_PREFIX% %1
|
|
9
|
-
for /f "delims=" %%i in ('fzf --sort --preview "rga --pretty --context 5 {q} {}" --phony -q %1 --bind "change:reload:%RG_PREFIX% {q}" --preview-window="70%:wrap"') do (
|
|
10
|
-
set FILE=%%i
|
|
11
|
-
)
|
|
12
|
-
|
|
13
|
-
if not "%FILE%" == "" (
|
|
14
|
-
echo Opening %FILE%
|
|
15
|
-
start "" "%FILE%"
|
|
16
|
-
) else (
|
|
17
|
-
echo No file selected.
|
|
18
|
-
)
|
|
19
|
-
|
|
20
|
-
endlocal
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
[mgr]
|
|
3
|
-
show_hidden = true
|
|
4
|
-
ratio = [1, 3, 5]
|
|
5
|
-
|
|
6
|
-
[plugin]
|
|
7
|
-
dir = "~/.config/yazi/plugins"
|
|
8
|
-
|
|
9
|
-
[[plugin.load]]
|
|
10
|
-
name = "toggle-pane"
|
|
11
|
-
path = "toggle-pane.yazi"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
[preview]
|
|
15
|
-
# Change them to your desired values
|
|
16
|
-
max_width = 1000
|
|
17
|
-
max_height = 1000
|