machineconfig 7.53__py3-none-any.whl → 7.69__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.

Files changed (90) hide show
  1. machineconfig/cluster/sessions_managers/utils/maker.py +21 -9
  2. machineconfig/jobs/installer/custom/boxes.py +2 -2
  3. machineconfig/jobs/installer/custom/hx.py +15 -12
  4. machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
  5. machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +1 -1
  6. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +1 -1
  7. machineconfig/jobs/installer/custom_dev/sysabc.py +39 -34
  8. machineconfig/jobs/installer/custom_dev/wezterm.py +0 -4
  9. machineconfig/jobs/installer/installer_data.json +103 -35
  10. machineconfig/jobs/installer/package_groups.py +28 -13
  11. machineconfig/scripts/__init__.py +0 -4
  12. machineconfig/scripts/linux/wrap_mcfg +1 -1
  13. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +3 -0
  14. machineconfig/scripts/python/croshell.py +22 -17
  15. machineconfig/scripts/python/devops.py +3 -4
  16. machineconfig/scripts/python/devops_navigator.py +0 -4
  17. machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
  18. machineconfig/scripts/python/fire_jobs.py +17 -15
  19. machineconfig/scripts/python/ftpx.py +13 -11
  20. machineconfig/scripts/python/helpers/ast_search.py +74 -0
  21. machineconfig/scripts/python/helpers/repo_rag.py +325 -0
  22. machineconfig/scripts/python/helpers/symantic_search.py +25 -0
  23. machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
  24. machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
  25. machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
  26. machineconfig/scripts/python/helpers_croshell/crosh.py +2 -2
  27. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +22 -13
  28. machineconfig/scripts/python/helpers_devops/cli_self.py +7 -6
  29. machineconfig/scripts/python/helpers_devops/cli_share_file.py +2 -2
  30. machineconfig/scripts/python/helpers_devops/cli_share_server.py +1 -1
  31. machineconfig/scripts/python/helpers_devops/cli_terminal.py +1 -1
  32. machineconfig/scripts/python/helpers_devops/cli_utils.py +2 -73
  33. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
  34. machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +2 -3
  35. machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +3 -4
  36. machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
  37. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +13 -5
  38. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
  39. machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
  40. machineconfig/scripts/python/helpers_repos/record.py +2 -1
  41. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +5 -5
  42. machineconfig/scripts/python/helpers_utils/download.py +152 -0
  43. machineconfig/scripts/python/helpers_utils/path.py +4 -2
  44. machineconfig/scripts/python/interactive.py +11 -14
  45. machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -0
  46. machineconfig/scripts/python/msearch.py +21 -2
  47. machineconfig/scripts/python/nw/devops_add_ssh_key.py +21 -5
  48. machineconfig/scripts/python/nw/ssh_debug_linux.py +7 -7
  49. machineconfig/scripts/python/nw/ssh_debug_windows.py +4 -4
  50. machineconfig/scripts/python/nw/wsl_windows_transfer.py +3 -2
  51. machineconfig/scripts/python/sessions.py +35 -20
  52. machineconfig/scripts/python/terminal.py +2 -2
  53. machineconfig/scripts/python/utils.py +12 -10
  54. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  55. machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
  56. machineconfig/settings/shells/pwsh/init.ps1 +1 -0
  57. machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
  58. machineconfig/settings/shells/zsh/init.sh +0 -7
  59. machineconfig/settings/yazi/shell/yazi_cd.ps1 +29 -5
  60. machineconfig/setup_linux/web_shortcuts/interactive.sh +12 -11
  61. machineconfig/setup_windows/uv.ps1 +8 -1
  62. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +12 -11
  63. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +4 -2
  64. machineconfig/utils/accessories.py +7 -4
  65. machineconfig/utils/code.py +6 -4
  66. machineconfig/utils/files/headers.py +2 -2
  67. machineconfig/utils/installer_utils/install_from_url.py +180 -0
  68. machineconfig/utils/installer_utils/installer_class.py +56 -46
  69. machineconfig/utils/installer_utils/{installer.py → installer_cli.py} +71 -65
  70. machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +1 -25
  71. machineconfig/utils/meta.py +28 -15
  72. machineconfig/utils/options.py +4 -4
  73. machineconfig/utils/path_extended.py +40 -19
  74. machineconfig/utils/path_helper.py +33 -31
  75. machineconfig/utils/schemas/layouts/layout_types.py +1 -1
  76. machineconfig/utils/ssh.py +330 -99
  77. machineconfig/utils/ve.py +11 -4
  78. machineconfig-7.69.dist-info/METADATA +124 -0
  79. {machineconfig-7.53.dist-info → machineconfig-7.69.dist-info}/RECORD +85 -83
  80. {machineconfig-7.53.dist-info → machineconfig-7.69.dist-info}/entry_points.txt +2 -2
  81. machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
  82. machineconfig/scripts/python/explore.py +0 -49
  83. machineconfig/scripts/python/nw/add_ssh_key.py +0 -148
  84. machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
  85. machineconfig-7.53.dist-info/METADATA +0 -94
  86. /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
  87. /machineconfig/scripts/{Restore-ThunderbirdProfile.ps1 → windows/mounts/Restore-ThunderbirdProfile.ps1} +0 -0
  88. /machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +0 -0
  89. {machineconfig-7.53.dist-info → machineconfig-7.69.dist-info}/WHEEL +0 -0
  90. {machineconfig-7.53.dist-info → machineconfig-7.69.dist-info}/top_level.txt +0 -0
machineconfig/utils/ve.py CHANGED
@@ -1,14 +1,15 @@
1
- from machineconfig.utils.io import read_ini
2
- import platform
1
+
3
2
  from typing import Optional
4
- from pathlib import Path
5
3
 
6
4
 
7
- def get_ve_path_and_ipython_profile(init_path: Path) -> tuple[Optional[str], Optional[str]]:
5
+ def get_ve_path_and_ipython_profile(init_path: "Path") -> tuple[Optional[str], Optional[str]]:
8
6
  """Works with .ve.ini .venv and .ve_path"""
9
7
  ve_path: Optional[str] = None
10
8
  ipy_profile: Optional[str] = None
11
9
  tmp = init_path
10
+
11
+ from machineconfig.utils.io import read_ini
12
+
12
13
  for _ in init_path.parents:
13
14
  if tmp.joinpath(".ve.ini").exists():
14
15
  ini = read_ini(tmp.joinpath(".ve.ini"))
@@ -39,6 +40,8 @@ def get_ve_path_and_ipython_profile(init_path: Path) -> tuple[Optional[str], Opt
39
40
 
40
41
 
41
42
  def get_ve_activate_line(ve_root: str):
43
+ import platform
44
+ from pathlib import Path
42
45
  if platform.system() == "Windows":
43
46
  q = Path(ve_root).expanduser().relative_to(Path.home()).as_posix()
44
47
  activate_ve_line = f". $HOME/{q}/Scripts/activate.ps1"
@@ -47,3 +50,7 @@ def get_ve_activate_line(ve_root: str):
47
50
  else:
48
51
  raise NotImplementedError(f"Platform {platform.system()} not supported.")
49
52
  return activate_ve_line
53
+
54
+
55
+ if __name__ == "__main__":
56
+ from pathlib import Path
@@ -0,0 +1,124 @@
1
+ Metadata-Version: 2.4
2
+ Name: machineconfig
3
+ Version: 7.69
4
+ Summary: Dotfiles management package
5
+ Author-email: Alex Al-Saffar <programmer@usa.com>
6
+ License: Apache 2.0
7
+ Project-URL: Homepage, https://github.com/thisismygitrepo/machineconfig
8
+ Project-URL: Bug Tracker, https://github.com/thisismygitrepo/machineconfig/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.13
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: cryptography>=44.0.2
15
+ Requires-Dist: fire>=0.7.0
16
+ Requires-Dist: joblib>=1.5.2
17
+ Requires-Dist: paramiko>=3.5.1
18
+ Requires-Dist: randomname>=0.2.1
19
+ Requires-Dist: requests>=2.32.5
20
+ Requires-Dist: rich>=14.0.0
21
+ Requires-Dist: tenacity>=9.1.2
22
+ Requires-Dist: psutil>=7.0.0
23
+ Requires-Dist: gitpython>=3.1.44
24
+ Requires-Dist: pyfzf>=0.3.1
25
+ Requires-Dist: rclone-python>=0.1.23
26
+ Requires-Dist: questionary>=2.1.1
27
+ Requires-Dist: typer-slim>=0.19.2
28
+ Requires-Dist: typer>=0.19.2
29
+ Provides-Extra: windows
30
+ Requires-Dist: pywin32; extra == "windows"
31
+ Provides-Extra: plot
32
+ Requires-Dist: sqlalchemy>=2.0.43; extra == "plot"
33
+ Requires-Dist: ipykernel>=6.30.1; extra == "plot"
34
+ Requires-Dist: ipython>=9.5.0; extra == "plot"
35
+ Requires-Dist: jupyterlab>=4.4.9; extra == "plot"
36
+ Requires-Dist: kaleido>=1.1.0; extra == "plot"
37
+ Requires-Dist: matplotlib>=3.10.6; extra == "plot"
38
+ Requires-Dist: nbformat>=5.10.4; extra == "plot"
39
+ Requires-Dist: numpy>=2.3.3; extra == "plot"
40
+ Requires-Dist: plotly>=6.3.0; extra == "plot"
41
+ Requires-Dist: polars>=1.33.1; extra == "plot"
42
+ Requires-Dist: python-magic>=0.4.27; extra == "plot"
43
+
44
+
45
+ <p align="center">
46
+
47
+ <a href="https://github.com/thisismygitrepo/machineconfig/commits">
48
+ <img src="https://img.shields.io/github/commit-activity/m/thisismygitrepo/machineconfig" />
49
+ </a>
50
+
51
+ </p>
52
+
53
+
54
+ # 🧠 Welcome to **Machineconfig**
55
+
56
+ **Machineconfig** is a cli-based **Digital Life Manager** — It's called so because no existing category of software fully captures its scope. At the same time, it is a *Package Manager*, *Configuration Manager*, *Automation Tool*, *Dotfiles Manager*, *Data Solution*, and *Code Manager*, among other functionalities covered, all rolled into one seamless experience.
57
+
58
+
59
+ ## 💡 Motivation
60
+
61
+ But why do we need such a tool to combine all those functionalities?? Because you need one tool to manager your stack and dev-environment, put it together and maintain it.
62
+ Consider this concrete scenario: When setting up a new machine, VM, or Docker container, you often face dependency chains like this:
63
+
64
+ ```mermaid
65
+ flowchart TD
66
+ A["Need to setup my [dev] environment"] --> B["need my tool x, e.g.: yadm"]
67
+ B --> C["Requires git"]
68
+ C --> D["Requires package manager, e.g. brew"]
69
+ D --> E["Requires curl"]
70
+ E --> F["Requires network setup / system update"]
71
+ F --> G["Requires system configuration access"]
72
+ G --> H["Finally ready to start setup the tool x."]
73
+ ```
74
+
75
+ Machineconfig builds on shoulder of giants. A suite of best-in-class stack of projects on github are used, the most starred, active and written in Rust tools are used when possible. The goal is to provide a seamless experience that abstracts away the complexity of setting up and maintaining your digital environment. The goal of machineconfig is to replicate your setup, config, code, data and secrets on any machine, any os, in 5 minutes, using minimal user input. Then, from that point, machineconfig will help you maintain, update, backup and sync your digital life across all your devices, automatically.
76
+
77
+
78
+ ## ⚙️ Functional Overview
79
+
80
+ | Category | Comparable Tools | Description |
81
+ |------------------------|----------------------------------------------|-----------------------------------------------------------|
82
+ | **Package Manager** | `winget`, `apt`, `brew`, `nix` | Installs and manages software packages across systems. |
83
+ | **Configuration Manager** | `Ansible`, `Chef`, `Puppet` | Configures and maintains system‐level preferences. |
84
+ | **Automation Tool** | `Airflow`, `Prefect`, `Dagster`, `Celery` | Automates repetitive tasks, pipelines, orchestration. |
85
+ | **Dotfiles Manager** | `chezmoi`, `yadm`, `rcm`, `GNU Stow` | Synchronises dotfiles & personal configs across systems. |
86
+ | **Data Solution** | `rclone`, `rsync` | Handles backups, mirroring and secure file sync. |
87
+ | **Code Manager** | `strong‐box`, `Vault` | Manages and protects code snippets, secrets and creds. |
88
+
89
+ ---
90
+
91
+
92
+ # Install On Windows:
93
+
94
+ ```powershell
95
+ # install tool the tool only:
96
+ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # Skip if UV is already installed
97
+ uv tool install --upgrade --python 3.14 machineconfig
98
+ # interactive install of machineconfig and following on to run it and make basic machine configuration (RECOMMENDED):
99
+ iex (iwr bit.ly/cfgwindows).Content # Or, if UV is installed: iex (uvx machineconfig define)
100
+ # Quick install and configure (optionals are accepted by default):
101
+ iex (iwr bit.ly/cfgwq).Content
102
+ ```
103
+
104
+
105
+ # Install On Linux and MacOS
106
+
107
+ ```bash
108
+ # install the tool only:
109
+ curl -LsSf https://astral.sh/uv/install.sh | sh # Skip if UV is already installed
110
+ uv tool install --upgrade --python 3.14 machineconfig
111
+ # interactive install of machineconfig and following on to run it and make basic machine configuration (RECOMMENDED):
112
+ . <(curl -L bit.ly/cfglinux) # Or, if UV is installed: . <(uvx machineconfig define)
113
+ ```
114
+
115
+
116
+ # Author
117
+ Alex Al-Saffar. [email](mailto:programmer@usa.com)
118
+
119
+ # Contributor
120
+ Ruby Chan. [email](mailto:ruby.chan@sa.gov.au)
121
+
122
+
123
+ [![Alex's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=thisismygitrepo)](https://github.com/ashutosh00710/github-readme-activity-graph)
124
+
@@ -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=QBzzTGK9_KcfxvXd2IdUZANtejBeypcWUl6w-jtUDCM,2657
28
+ machineconfig/cluster/sessions_managers/utils/maker.py,sha256=uNuBNnVQjTIbPgvGHDNVUNtSdldDMkotXA-ywgFNkaI,3470
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=luCTMa15H3FIWO9cSc5Z2VTVud5lzV6wnk6oJKLPVm4,110054
55
- machineconfig/jobs/installer/package_groups.py,sha256=QZ9Baup-CjWOc29uBGL-fFfXMzUTy_Gyy-pQit-ST7k,4642
56
- machineconfig/jobs/installer/custom/boxes.py,sha256=ws8QRbDn48oKhbQntr54I0nSfkwINbprjTy0HOpuX40,1974
54
+ machineconfig/jobs/installer/installer_data.json,sha256=x9UD_QJVEQw0lMIN3k0MFJuLOyvCjMFq3DNQxnxpCSw,112545
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=8Vy7NNCiXsyG_xl78TAYPYpiISNCDFiVJJRSZceq1Fk,8729
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=okeKEVhgijS_iG-53StyzUJkPcSfIuI7HddJ0u4flds,829
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=bVUPigzov1v87tgKY-lWz3HDEHMI8dSTNDgB7--0o80,5620
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=XbktwRZjIb0lNEuVoxiCUprMnHTKJZgmCWydxwZYRSk,6458
73
- machineconfig/jobs/installer/custom_dev/wezterm.py,sha256=GWVz4xJ419T2yT_uK7eH1lQjfu1db3CDKrD0Pd1ExYc,3190
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
@@ -100,9 +100,8 @@ 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/Restore-ThunderbirdProfile.ps1,sha256=HYIT48vW_E86QJq7RqfWAV06ZAMqjiZS8EDSET11Y04,3605
104
- machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
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
@@ -111,19 +110,18 @@ machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l
111
110
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
111
  machineconfig/scripts/python/agents.py,sha256=aVbLQDgpngXZm4taHcED4sAxyHvV2_Dz5VW3apPcQcY,10651
113
112
  machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
114
- machineconfig/scripts/python/croshell.py,sha256=waWzSXV9L7ZKnup-QUb-NNoNAt6MOmOCFwOS7sksUsU,7132
113
+ machineconfig/scripts/python/croshell.py,sha256=7lzqeqIF0Wc6BlDA58d7tsUylVV2By9ru0ZvYd_ypPE,7570
115
114
  machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
116
- machineconfig/scripts/python/devops.py,sha256=x7CnxOnZPSrCwjflnJ6sht1M7g0nzY2SxyPtmNputSA,2212
117
- machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
118
- machineconfig/scripts/python/explore.py,sha256=3kNglM1KYp57U8yrbWeHEslN458-xieRuFYsJAhrpIs,1247
119
- machineconfig/scripts/python/fire_jobs.py,sha256=zLLgPfqCSpXBeU5kC4XEcojscZFy-K0K3dbbGqkTczU,13135
120
- machineconfig/scripts/python/ftpx.py,sha256=8tmhKBZgSuhFZZYaT4JAIgeXMKmxJhxg5aJQFbbdtDg,9857
121
- machineconfig/scripts/python/interactive.py,sha256=2ETE45Ww9HHc6rudG-L9I2-N_mdOv9qMEdJ_05mhCz4,11268
122
- machineconfig/scripts/python/machineconfig.py,sha256=l211lxHRcQ6BH7x3FwQHSJCYbYs6RJL5e0POjyWAW9A,3048
123
- machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
124
- machineconfig/scripts/python/sessions.py,sha256=Mex8Y2NM0Z3JiO7-qEKew9lA29FfUDo_tB3-1jJ79bs,9532
125
- machineconfig/scripts/python/terminal.py,sha256=PQ2C2flC2UngfeTNYhHLBiwj__kmE12gxZu2ivtr4Kg,5978
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=uyZe-azk3ghyObGkxCgT2pdn0alnSfN3C0PQIge2No8,13548
118
+ machineconfig/scripts/python/ftpx.py,sha256=R8BwotZdImFofRxTlVsJjNHJOAtOyopzmg4tuUqxe5w,9876
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=heoUNQ55Uwbs0rO-gAuydkdc9Fld9Ip8zxAl7d7f_jA,4488
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,10 @@ 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=lDVvv5QRP8i456iaFLQ1T2JSkO05d-YgdJtDRoSwyRw,6932
157
+ machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=qZsVUJkT18fHHZhgnkYvBRMsy4mZ3imhEdFKGUvEqv0,6932
158
+ machineconfig/scripts/python/helpers/ast_search.py,sha256=-BFLZfJpYyj2CjUVrRigWf6xdfdorBfScJ33S2j9O2I,2515
159
+ machineconfig/scripts/python/helpers/repo_rag.py,sha256=WxSLC99SBpnbUyIQjKiuraGgFk0qGzQ1dC9zSUc88hc,13702
160
+ machineconfig/scripts/python/helpers/symantic_search.py,sha256=X5yrk5u59kMlXPEShRyowUo3nUQGyQ39do3D342dzoo,672
160
161
  machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
162
  machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
162
163
  machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
@@ -172,14 +173,14 @@ machineconfig/scripts/python/helpers_agents/templates/prompt.txt,sha256=sX7Fh_hx
172
173
  machineconfig/scripts/python/helpers_agents/templates/template.ps1,sha256=9F7h9NMIJisunMIii2wETpgonQmiGLHLHfWg9k_QWKo,859
173
174
  machineconfig/scripts/python/helpers_agents/templates/template.sh,sha256=RJRw5xZv0-NGJkKeuOiEeXFiaZ07RJJUlttJfs7il90,986
174
175
  machineconfig/scripts/python/helpers_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=OV1w3ajFVFs6FJytjIPOntYB_aW2ywGohKi73V4Dm2Y,8691
176
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAsPT-Xl3RG9-yBed71a2tu9Pig,4914
176
+ machineconfig/scripts/python/helpers_cloud/cloud_copy.py,sha256=rBP1Eoh-ohhlNSv1PSytjbyeYHg-_8c0bglnzYtaPEk,8748
177
+ machineconfig/scripts/python/helpers_cloud/cloud_helpers.py,sha256=Hs79GTnTokI92dprztSyGF_KQL9ju-XST6haR1W91eA,4914
177
178
  machineconfig/scripts/python/helpers_cloud/cloud_mount.py,sha256=DEZHwOgFcAVoI-NrBflFLbAjijOYZYq_D5M8xJQdtSQ,6487
178
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=ThfI4rvKG6IPzAo3KrkKtf6CQJmBDt-9OXkFGxg1sn8,3481
179
+ machineconfig/scripts/python/helpers_cloud/cloud_sync.py,sha256=tCZpQaIh7IDJXSDAZ8sSNz14bcoTUZwzGBUUubHey1w,3506
179
180
  machineconfig/scripts/python/helpers_cloud/helpers2.py,sha256=3fXDiDlz5EDk_04YtPd-bjZcjUjmGTpgiQ1YMaGbD8g,7310
180
181
  machineconfig/scripts/python/helpers_cloud/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
181
182
  machineconfig/scripts/python/helpers_croshell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
- machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=enw3JpKQyYS7AzT6Ovap_7BLfNum9E_MKCGXK3AvUyQ,1643
183
+ machineconfig/scripts/python/helpers_croshell/crosh.py,sha256=J0Wle1nyxcaOV2TArsHx8DUkVbKH1fartTXr_Nztcys,1601
183
184
  machineconfig/scripts/python/helpers_croshell/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
184
185
  machineconfig/scripts/python/helpers_croshell/scheduler.py,sha256=rKhssuxkD697EY6qaV6CSdNhxpAQLDWO4fE8GMCQ9FA,3061
185
186
  machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPhwcbAvCyJyTBd2iumJB5wmPdcTXz_Yvh8,4897
@@ -187,16 +188,16 @@ machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgM
187
188
  machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
188
189
  machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
190
  machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=VLR7tH1SdR3ftWSNjyt0LHc1gRssYJXYvkLjtydxVOM,5007
190
- machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=SL6P3Ioib3P9OWG1GmULb5-l4ySYZ1RuuIDCHY4lCyU,3502
191
+ machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=KFIBpAaBtRn-nP1ILXZmyGlgCi4olKRohoF-HdHORaQ,4034
191
192
  machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
192
193
  machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=u_2l5Cc3dFnh0seKrbH9j-Z0bUCrgy45MOM6HCjgkQg,7562
193
194
  machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
194
- machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=-h8cTOMaWB0aaELne0_K_Q6iZV2FaaqzomeJNqX0kwc,6993
195
- machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=AL04784ncdP9ue5bKyqJfXrMksxjFKtuv_w353kQQsI,6298
196
- machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=S2xQ7sDVvfvGKcJNlquXj9Gc0ofk2EXnfvpRx2AWVD8,6278
197
- machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
198
- machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=711D0xntW9zKJne1YIIwjpuk_6mM90wfvBGlsxxVG44,8020
199
- machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Dn8luB6QJzxKiiFSC-NMqiYddWZoca3A8eOjMYZDzTc,5598
195
+ machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=sH_9er8LMVHqzYM9K70D4Fy7hxRb9ySOnPgvWuqbeCM,7061
196
+ machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=LBQKUCA-3pJlV65vE-6F9uiYF_mwU7G1oF6-hqBS8EQ,6306
197
+ machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=4vUp6dMGACwLYAR3LaROac9aYvzJRQI4_g5bMWOC3rI,6282
198
+ machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=AxGAenzrw-8_hQoMhWnE87ivdJ-h9WJ4bij6nBWVP5A,6023
199
+ machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=RHYuEJn_xUMj8jMDx0Gi0Xr1yjA_7BLnStGU4N1qV7M,5003
200
+ machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Tyfz5S1QfY_nOhg-ROTp9eILNqYx_i1ootth34frbv0,5540
200
201
  machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
201
202
  machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
202
203
  machineconfig/scripts/python/helpers_devops/themes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -206,9 +207,9 @@ machineconfig/scripts/python/helpers_devops/themes/choose_starship_theme.ps1,sha
206
207
  machineconfig/scripts/python/helpers_devops/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
207
208
  machineconfig/scripts/python/helpers_fire_command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
209
  machineconfig/scripts/python/helpers_fire_command/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
209
- machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=wiUtzjNzxChYNqwiYnR8lixxpYG72q21VxT0MocqJNY,6305
210
+ machineconfig/scripts/python/helpers_fire_command/file_wrangler.py,sha256=yJVFrdrH9iVkKxY0z6JXfJRuRZ22M2cc6bArt0l9F3w,6230
210
211
  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=0aqH_ShEvmrzMC2oyWDds-CwtUqJNniNjp39-0wTpvQ,5391
212
+ machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=qSpr0sXMYvwTTSrT4LzLXYZfKDcOvaxEIBdk_dC1R4I,5345
212
213
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
214
  machineconfig/scripts/python/helpers_msearch/__init__.py,sha256=eZSLmDDBtML_JRn1BjU8IyzXEqjZ9-u3TYY6_hYsEKA,183
214
215
  machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag,sha256=u3EYNQ_WT8jP11V0DPXWWXmFj1rzgNBnRokVBdVZpmc,677
@@ -221,28 +222,28 @@ machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat,sha256=r
221
222
  machineconfig/scripts/python/helpers_navigator/__init__.py,sha256=5qPsu5ztoj0gkrioY0Yg0GTZ9JAn6SG2gAk-6DpuQ00,764
222
223
  machineconfig/scripts/python/helpers_navigator/command_builder.py,sha256=59ipLYdkWvj_l1xqrC6rz2E2GNCP91BVBsX8vqTRnjQ,4618
223
224
  machineconfig/scripts/python/helpers_navigator/command_detail.py,sha256=9cL2wVqa_vzgsSIYg-eVjeuac9f3aQJvrTl0T-SRAOU,1693
224
- machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=Kw673rk7QbRBL1lCvCDC5HsoQemzh2mEw5aJSQPbgtk,24421
225
+ machineconfig/scripts/python/helpers_navigator/command_tree.py,sha256=yPt47Bk7w2fQPit8nyAm1Rt8VYUe7-n5CsYETRQfAzo,25672
225
226
  machineconfig/scripts/python/helpers_navigator/data_models.py,sha256=62CIZ01rfCD2mKX_ihEVuhNzZ8FDnRSEIIQuyKOtmOg,533
226
227
  machineconfig/scripts/python/helpers_navigator/main_app.py,sha256=R1vOBMUKaiFHOg0D4SzTcu48Wsc8lO0LKAzrZxCsCtg,8849
227
228
  machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wdm7YpDBtfhwcPnSqDPFrV2LqbcSBWMT4,414
228
229
  machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
229
230
  machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
230
231
  machineconfig/scripts/python/helpers_repos/clone.py,sha256=9RZgs2OD2RUH6UiZKCuUvRyweDBomAm2lDG2qJmhry0,5436
231
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=YhvFMhs0lU40iGsx0tM_K3Ro0nunScnp4-87R39Au_g,11271
232
+ machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=sjrikP6jby6fBzVJAPbdEYKi_dEpGSVJ3g9z95FOzaU,11577
232
233
  machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
233
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=LYsQdW45aj6xF8kY2PZTgr1sTl7-IEPgqqIjKuBxCBY,607
234
- machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
234
+ machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=4qrFUcSt5tg5xQNMTJqiGneVajqL0DmrgsOQc4Q5GJU,607
235
+ machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=eAM-7trZCPTeep0iTU3_HNqCkF0pYKqMMXNq3vLBsP8,2898
235
236
  machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
236
- machineconfig/scripts/python/helpers_repos/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
237
+ machineconfig/scripts/python/helpers_repos/record.py,sha256=1PycYcW7VA-9n9iv1TJXub7qNIQ6I6Z9dEnvbdDm4TU,11099
237
238
  machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
238
239
  machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
239
240
  machineconfig/scripts/python/helpers_sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
- machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=F6D-e0v405UFy-aj_pNWudxZkstPvjYR0UXLx-PR8Ms,3136
241
- machineconfig/scripts/python/helpers_utils/path.py,sha256=HQS9d7acowaN2MH8EFxVSH20lGWJsXnGgpXxEMOALPA,3982
241
+ machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py,sha256=wCQPpsOeuNz0V7_SopHWLRgYQcQryDdQSDabikVS3AE,3054
242
+ machineconfig/scripts/python/helpers_utils/download.py,sha256=kGSk17oOPd1soN1JCxYRdnNId0Yux1HNhExwClrPAYk,6654
243
+ machineconfig/scripts/python/helpers_utils/path.py,sha256=_lvbAIJ7eE8_XPm1qkzf1kaLwvoteuFWFUMZgRk3wK4,4044
242
244
  machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdCR90LwY6_9P7gKQzEE,9373
244
245
  machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
245
- machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
246
+ machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=hPmrJb6Q8dbvZBkj00va4najYDKziQ9A7CfZ3TZPccI,9560
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
@@ -251,15 +252,16 @@ machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lD
251
252
  machineconfig/scripts/python/nw/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
252
253
  machineconfig/scripts/python/nw/mount_ssh.py,sha256=qt0P4T4pheszexBxaDeLVrGdLIVRoOc-UdfYv5r0OLY,2587
253
254
  machineconfig/scripts/python/nw/onetimeshare.py,sha256=xRd8by6qUm-od2Umty2MYsXyJwzXw-CBTd7VellNaKY,2498
254
- machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=VSFhyzYQeLIoSwsUFJFW1Wc89DinrpZ_YxyYB2Ndy-4,30966
255
- machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=2prJs3PMsoAUu5LlZhHIKGVgqj7h6OviGEjAMJLJ7LI,29986
255
+ machineconfig/scripts/python/nw/ssh_debug_linux.py,sha256=0tjKgf5bElHqSgwUEFVY7iKOxax93Lxy-nJ8krqjUZ0,30868
256
+ machineconfig/scripts/python/nw/ssh_debug_windows.py,sha256=0IjOHX7OUs1512teldJhSzsDIvYoyqQMVzzSNgXz11A,29920
256
257
  machineconfig/scripts/python/nw/wifi_conn.py,sha256=wnSs16kHwhELS7wX3UtRVXgR_5En-x4nD27_JpJIflw,13590
257
- machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=jHJyFTuks_Kw4cgE8xuGDVjO_71JgICrsV9ZQt53meY,3524
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=oIw4jEALYu5u1gevCph8N41y5Vq1Jllnc81NNuXJvWs,322
264
+ machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=Ls3gRo-c6LdANLzwfntvXS4C7k3UBgoxGbXZMEGubXg,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
@@ -287,7 +289,6 @@ machineconfig/settings/lf/linux/autocall/paste.sh,sha256=47DEQpj8HBSa-_TImW-5JCe
287
289
  machineconfig/settings/lf/linux/autocall/pre-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
290
  machineconfig/settings/lf/linux/autocall/rename.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
291
  machineconfig/settings/lf/linux/exe/cleaner.sh,sha256=NKK30rUcrHXnwy8srylyaWL-XJdDWJIjF4a3mfbdEsA,209
290
- machineconfig/settings/lf/linux/exe/fzf_nano.sh,sha256=aqYZ2mb-gLu4C6Ct-Tntfb9Xz6LcIYu3hVjQ_EmTXoI,599
291
292
  machineconfig/settings/lf/linux/exe/leftpane_previewer.sh,sha256=KXMq81hIvU9uzOuanluVcxVgJmEOYy-5sUbzcuc9b6U,200
292
293
  machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=qU2AtGR22UWR3Isw5UkJ4OZdxW2VFR3FOaIEJDVjYTg,771
293
294
  machineconfig/settings/lf/linux/exe/previewer.sh,sha256=sjiU6S_P8ExSmCPGz-Uwmrrn075rBmj_-3H4Cvr-ROI,1259
@@ -299,7 +300,7 @@ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8D
299
300
  machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=TUpOoG2WpnKbjpgECT2_yPsGdhu_5JxWfl4KpY9yS0A,365
300
301
  machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
301
302
  machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
302
- machineconfig/settings/lf/windows/lfcd.ps1,sha256=9mka24wTS2fwu9xUiveCEoodpniAuboZcvbsusQ708E,971
303
+ machineconfig/settings/lf/windows/lfcd.ps1,sha256=NnfM8B6TeSUEtPPxRbX0Y8-O-AFHdNfTFajcVrJfrSM,990
303
304
  machineconfig/settings/lf/windows/lfrc,sha256=7xpBHyvvbvrrk3IkfUzRrnuHx9zfAm_Dpx9rbGncTik,3267
304
305
  machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
305
306
  machineconfig/settings/lf/windows/mkfile.ps1,sha256=yehhWVXOvhJEJhrKWcchRuh2nptCd6NbP-j4rroOGXo,52
@@ -341,13 +342,13 @@ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmg
341
342
  machineconfig/settings/shells/nushell/config.nu,sha256=5eN9S7BL9MbznZEwqk2bxcYXzWlaF_g-9JL4tw0pp4E,78
342
343
  machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
343
344
  machineconfig/settings/shells/nushell/init.nu,sha256=D-X3qvpCStAZtloZzjVF796ug99SgXpm0aljqyWrYv0,4566
344
- machineconfig/settings/shells/pwsh/init.ps1,sha256=T0Zw9mfQa8rgDTxRk40UbzBq-7gkMgINAC7Or5W4HIY,2926
345
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=7Cvjm5J0kvPgRceNbsxKC-Tjpb9vfh6bxXKqjlv9KSE,2950
345
346
  machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
347
  machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
347
348
  machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
348
- machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
349
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=_ERpROSN3XNtbZJgL1jkAb8DhwGjUjOYuAW6p43CA00,6296
349
350
  machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
350
- machineconfig/settings/shells/zsh/init.sh,sha256=LcT8AOecHoCtmmkXkSlAROJy-xD1re6wvPEIEzgPN5U,3054
351
+ machineconfig/settings/shells/zsh/init.sh,sha256=46-PVbbuv4h86k6lkSzALCkW7i_qZukfQm5ZFRwAEhs,2821
351
352
  machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
352
353
  machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
353
354
  machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
@@ -361,7 +362,7 @@ machineconfig/settings/yazi/keymap_linux.toml,sha256=DFLc_KcyaskQT26Y5eNsvUOPbQe
361
362
  machineconfig/settings/yazi/keymap_windows.toml,sha256=i8tWQwpvA7XE2DAKbjKaaUigsT5hmNqK9OipcgIOZDo,2023
362
363
  machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
364
  machineconfig/settings/yazi/yazi.toml,sha256=KRGbjMkCmbCdTRxEXJXd5gI1kTEQK7VtDGm1MXsOJDw,234
364
- machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=gvXZyD2Csil8KjaMtrx5ZkF9AqRt0LaVfTL724vxMCE,312
365
+ machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=-H6tPmalGlUEmYybFgk51d_MfA3Q01Emf8lVXzKQsi0,1604
365
366
  machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
366
367
  machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
367
368
  machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
@@ -382,13 +383,13 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
382
383
  machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
383
384
  machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
384
385
  machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
385
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=kIB8ljsaY5VgppD74MbljiXAj0kKswo7vPB_z78tp6M,1593
386
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=khylpFU4TyS54TOC0NuAH6fYxlAWXNqyIDN2lRWthNg,1606
386
387
  machineconfig/setup_mac/__init__.py,sha256=PfdhwY4Ss-rfP7b4-9fvKwxCDtNAd-u1JdhFYnE7CwI,518
387
388
  machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
388
389
  machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
389
390
  machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
390
391
  machineconfig/setup_windows/__init__.py,sha256=vBFYK6J3-N7tmbB5wqnJoHK7uMnCtI3Ln3BFHygxK9w,334
391
- machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
392
+ machineconfig/setup_windows/uv.ps1,sha256=6IwoBSyvyeRBvpBRdzfuNNS5uNsVqYJEVlza-hyuxDc,761
392
393
  machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
393
394
  machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
394
395
  machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
@@ -397,37 +398,36 @@ machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdW
397
398
  machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
398
399
  machineconfig/setup_windows/ssh/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
399
400
  machineconfig/setup_windows/ssh/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
400
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=Kggucxn-yH6K2mfDR8_qvJvGlRCqlppsO0x1l0zyXfY,1926
401
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=8a5O6sFHkPxNpQxYn8hTqyS5otUZXDWLuMB0AJhJSgA,628
401
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=2MnUMQ40Jfc3t9feuagElqSEqjXNPzTtX3l84GLRDZY,1939
402
+ machineconfig/setup_windows/web_shortcuts/quick_init.ps1,sha256=bcRWU6QIFv5U4ibXy7jKqO7YfxpI3KvvesZ88aQD49E,652
402
403
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
404
  machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
404
405
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- machineconfig/utils/accessories.py,sha256=Rs8R0GUb2Ub6YimkgXHnI02CShS5BKlrZdCigVxfPlk,4339
406
- machineconfig/utils/code.py,sha256=oI5x0lZFj7MoGc32v-POhs1h20PGZnyCS5KUWRzYQZI,7825
407
- machineconfig/utils/installer.py,sha256=cXR0AWVuhAl1th37GlS7qBmEdKIqAaCIXAEiBYUu2as,9476
406
+ machineconfig/utils/accessories.py,sha256=4nkK6pjir5zV-t_DZiqaQVK7JrTdC6EkEYiMdz_NPcU,4407
407
+ machineconfig/utils/code.py,sha256=2XO_5ppbn9gzNHTbmp_xy6YH0gtwnf3SBPzsqLt8YWY,7883
408
408
  machineconfig/utils/io.py,sha256=6kXNd3t6FCHxZzmPOIKTCdXDRnSdHoy4IqcthwBbYGY,6456
409
409
  machineconfig/utils/links.py,sha256=m5-MfendBa8YiPPyS-lWiuu6Ru1-jU3hg3BYQgIaWg8,25012
410
- machineconfig/utils/meta.py,sha256=4ocYH3Zi6bVN6FVgXoGIfoasV6oxi67I9rQ8hvyYinc,9892
410
+ machineconfig/utils/meta.py,sha256=7uE2ve90nv0AaFaC8Sx05Mp6sjDTD39JcUeWnvusV7s,10520
411
411
  machineconfig/utils/notifications.py,sha256=tuXIudcip0tEioG-bm8BbLr3FMDve4f6BktlznBhKxM,9013
412
- machineconfig/utils/options.py,sha256=VWYx3EKJxIp-CJ8gDGYdjclKSc1tMUhyrC8v3seeneo,7447
413
- machineconfig/utils/path_extended.py,sha256=F9xjmuJ4JMqI6Ap2Hypvfz81BlBe-VsN0CfBaHWGEnQ,49293
414
- machineconfig/utils/path_helper.py,sha256=VnsWxAKSniw-GZ5zUie56463vTjaFDyoMnH2Xf88HO8,10557
412
+ machineconfig/utils/options.py,sha256=aXQ9q3Ri8IAiFVLNVs2VD7t_qVrCHx601UktHvDFOOs,7457
413
+ machineconfig/utils/path_extended.py,sha256=fqneBrU8TirDw3J8bUH-HW99aIEf7rePycanfxudVTc,50693
414
+ machineconfig/utils/path_helper.py,sha256=9F6maZpQ2Ad_6SlkqXFraXbPcwj2W2o8dWEv08taEpA,10370
415
415
  machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,10957
416
416
  machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
417
417
  machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
418
418
  machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
419
- machineconfig/utils/ssh.py,sha256=af9xHcYql72FnlPYY7xdVTh7iUaI6uzcs38zlEMjvVc,39262
419
+ machineconfig/utils/ssh.py,sha256=Nr9qD2VoabJfSsbCiLkUcyDZcI1AMwJFtjDcO8XZIJs,41559
420
420
  machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
421
421
  machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
422
422
  machineconfig/utils/upgrade_packages.py,sha256=e4iJn_9vL2zCJxAR2dhKJjM0__ALKgI5yB1uBRxSjhQ,6994
423
- machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
423
+ machineconfig/utils/ve.py,sha256=JUPl39BXk5SShzgqhdMKYRIOgoFVaSFZnkcqdXhaMy0,2489
424
424
  machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
425
425
  machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
426
426
  machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
427
427
  machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqjZxU_3nXx2CA-qKbQgP3I,26232
428
428
  machineconfig/utils/files/ascii_art.py,sha256=SQkayd2r_PkvLCNRjNnq5JzYz8t_dOMHquiJ3E6-9Ck,5216
429
429
  machineconfig/utils/files/dbms.py,sha256=B7Mns8g774kfeXZwcuGWUpRnSgiOtS6khn8faRH5rQs,11390
430
- machineconfig/utils/files/headers.py,sha256=B8Gs1IhLBc5q2kDZYxwf8u7m6XHpqvCXX1UO8_l0wt4,3490
430
+ machineconfig/utils/files/headers.py,sha256=nZVdTKCt-n600huiX5qVZO22aArjn4CPsFcjRWrEIBY,3523
431
431
  machineconfig/utils/files/read.py,sha256=QDxLEIYi0NcgAys97IVB6IUl4S9CiFP6TKGxUxRBJOM,4330
432
432
  machineconfig/utils/files/art/fat_croco.txt,sha256=Gz-qK0YZT4pnPA16hlsCVZN3HrBAPW_1hEv3IZTy01Q,637
433
433
  machineconfig/utils/files/art/halfwit_croco.txt,sha256=To3-lWfcnonx2Ap71lVYyJ6PTK04G78L3uCM10-hCRk,437
@@ -437,16 +437,18 @@ machineconfig/utils/files/ouch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
437
437
  machineconfig/utils/files/ouch/decompress.py,sha256=7qPaEkMerBBXzeZyFn8hLODHZJv1aty-yGgwBxLgVys,1413
438
438
  machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
439
  machineconfig/utils/installer_utils/github_release_bulk.py,sha256=WJf_qZlF02SmIc6C7o1h4Gy4gAaJAfeAS8O9s2Itj-k,6535
440
- machineconfig/utils/installer_utils/installer.py,sha256=2xhzgAyifm5sHsb0y6d94UMWwRpGWMmsCCalsrnRHKA,9023
441
- machineconfig/utils/installer_utils/installer_abc.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
442
- machineconfig/utils/installer_utils/installer_class.py,sha256=t9OlHF3br7zuYuLuO75voedRPrDmo9YOXSDxRNXe3Jk,17188
440
+ machineconfig/utils/installer_utils/install_from_url.py,sha256=18eOJNIfLsiUv9FAvdvGu92rwgb0wu89YrYT3VC8UNk,8548
441
+ machineconfig/utils/installer_utils/installer_class.py,sha256=82ZzlOK3ryS1AOKcrYBzDZZp_kKQUCoF8UJ4VJMqXPE,18152
442
+ machineconfig/utils/installer_utils/installer_cli.py,sha256=EkVRZLDeb4aEMatSTx8Nnx8XeWkTDQqwOut2dF3IERg,9680
443
+ machineconfig/utils/installer_utils/installer_locator_utils.py,sha256=_QihkKgi7-IGrQQoy8muD0iL_n65ebvqDgiv43sCudI,8984
444
+ machineconfig/utils/installer_utils/installer_runner.py,sha256=yHaW2_5XM7NTfS7kWDEhb7MJZAr4GMzs1aR6pOFYBBo,8047
443
445
  machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=d3pwhmE-EuHPxaIoTTZeUdDUEK9QqtimV8zO3vV-7N4,2052
444
446
  machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
445
- machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
447
+ machineconfig/utils/schemas/layouts/layout_types.py,sha256=IV45Z_ZTw8S4V-wiZ_lpAVsUX6rSSfDCG7qm5Dk4Oog,1977
446
448
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
447
449
  machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
448
- machineconfig-7.53.dist-info/METADATA,sha256=uCv760DWGE5f7PscWiuQSWdigpY84ZxH6Zpnf4hUcSs,3466
449
- machineconfig-7.53.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
450
- machineconfig-7.53.dist-info/entry_points.txt,sha256=_JNgkzaa_gVAWyZ6UwPwXXQqURRSvAGhrVQ1RiU2sHc,746
451
- machineconfig-7.53.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
452
- machineconfig-7.53.dist-info/RECORD,,
450
+ machineconfig-7.69.dist-info/METADATA,sha256=Prg5x4v0bYUxbJVr6mUGibibNPrjFvoj-jJPoWUCYlI,5939
451
+ machineconfig-7.69.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
452
+ machineconfig-7.69.dist-info/entry_points.txt,sha256=nZv_eHgIxktijrRlv1O4AMwbXXN-pnEUwQF7qZC9lcI,740
453
+ machineconfig-7.69.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
454
+ machineconfig-7.69.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.machineconfig:main
11
- mcfg = machineconfig.scripts.python.machineconfig:main
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
-