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

@@ -193,7 +193,7 @@ APP_SUMMARY_PATH = LIBRARY_ROOT.joinpath(f"profile/records/{platform.system().lo
193
193
  # else: return None
194
194
 
195
195
 
196
- # class PrecheckedCloudInstaller:
196
+ # class precheckedPackages:
197
197
  # def __init__(self):
198
198
  # # Read CSV using standard library
199
199
  # self.data = []
@@ -214,7 +214,7 @@ APP_SUMMARY_PATH = LIBRARY_ROOT.joinpath(f"profile/records/{platform.system().lo
214
214
  # @staticmethod
215
215
  # def install_cli_apps(app_url: str):
216
216
  # try:
217
- # exe = PrecheckedCloudInstaller.download_google_links(app_url)
217
+ # exe = precheckedPackages.download_google_links(app_url)
218
218
  # except Exception as ex: # type: ignore
219
219
  # print(f"❌ ERROR | Failed downloading {app_url}: {ex}")
220
220
  # return None
@@ -225,7 +225,7 @@ APP_SUMMARY_PATH = LIBRARY_ROOT.joinpath(f"profile/records/{platform.system().lo
225
225
  # exe.move(folder=PathExtended.home().joinpath("AppData/Local/Microsoft/WindowsApps"), overwrite=True)
226
226
  # return True
227
227
 
228
- # def download_safe_apps(self, name: str="AllEssentials"):
228
+ # def download_safe_apps(self, name: str="essentials"):
229
229
  # # if platform.system().lower() == "windows":
230
230
  # # from machineconfig.jobs.python.python_windows_installers_all import get_cli_py_installers
231
231
  # # cli_installers = get_cli_py_installers()
@@ -234,7 +234,7 @@ APP_SUMMARY_PATH = LIBRARY_ROOT.joinpath(f"profile/records/{platform.system().lo
234
234
  # # cli_installers = get_cli_py_installers()
235
235
  # # else: raise NotImplementedError(f"Platform {platform.system().lower()} is not supported yet.")
236
236
 
237
- # if name == "AllEssentials":
237
+ # if name == "essentials":
238
238
  # print(f"""
239
239
  # {'=' * 150}
240
240
  # 📥 DOWNLOAD | Downloading {len(self.data)} apps...
@@ -244,13 +244,13 @@ APP_SUMMARY_PATH = LIBRARY_ROOT.joinpath(f"profile/records/{platform.system().lo
244
244
  # app_urls = [item['app_url'] for item in self.data]
245
245
  # from concurrent.futures import ThreadPoolExecutor
246
246
  # with ThreadPoolExecutor(max_workers=20) as executor:
247
- # _res = list(executor.map(PrecheckedCloudInstaller.install_cli_apps, app_urls))
247
+ # _res = list(executor.map(precheckedPackages.install_cli_apps, app_urls))
248
248
  # else:
249
249
  # app_items = [item for item in self.data if item['app_name'] == name]
250
250
  # if not app_items:
251
251
  # raise ValueError(f"App '{name}' not found in data")
252
252
  # app_url = app_items[0]['app_url']
253
- # _res = PrecheckedCloudInstaller.install_cli_apps(app_url=app_url)
253
+ # _res = precheckedPackages.install_cli_apps(app_url=app_url)
254
254
 
255
255
  # # print("\n" * 3)
256
256
  # # for item_flag, item_name in zip(res, self.df["app_name"]):
@@ -28,7 +28,7 @@
28
28
  "linux": "pistol-static-linux-x86_64"
29
29
  },
30
30
  "arm64": {
31
- "linux": "pistol-static-linux-aarch64"please
31
+ "linux": "pistol-static-linux-aarch64"
32
32
  }
33
33
  },
34
34
  "stripVersion": true,
@@ -147,17 +147,14 @@ def apply_mapper(choice: Optional[str] = None):
147
147
  """)
148
148
 
149
149
 
150
- def main(choice: Optional[str] = None):
150
+ def main():
151
151
  console = Console()
152
152
  print("\n")
153
-
154
153
  console.rule("[bold blue]🔗 CREATING SYMLINKS 🔗")
155
- apply_mapper(choice=choice)
156
-
154
+ apply_mapper(choice=None)
157
155
  print("\n")
158
156
  console.rule("[bold green]🐚 CREATING SHELL PROFILE 🐚")
159
157
  create_default_shell_profile()
160
-
161
158
  print(f"""
162
159
  {"=" * 80}
163
160
  ✨ Configuration setup complete! ✨
@@ -98,7 +98,7 @@ echo "🚀 Activating Python virtual environment..."
98
98
 
99
99
  # Install all essential development applications
100
100
  echo "📥 Installing essential development applications..."
101
- python -m fire machineconfig.scripts.python.devops_devapps_install main --which=AllEssentials
101
+ python -m fire machineconfig.scripts.python.devops_devapps_install main --which=essentials
102
102
 
103
103
  # Reload shell configuration
104
104
  echo "🔄 Reloading shell configuration..."
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env -S uv run --project
1
+ #!/usr/bin/env -S uv run --no-dev --project
2
2
 
3
3
  """
4
4
  croshell
@@ -9,7 +9,7 @@ from machineconfig.utils.installer import get_installers, install_all
9
9
  from platform import system
10
10
  from typing import Any, Optional, Literal, TypeAlias, get_args, Annotated
11
11
 
12
- WHICH_CAT: TypeAlias = Literal["AllEssentials", "EssentialsAndOthers", "SystemInstallers", "PrecheckedCloudInstaller"]
12
+ WHICH_CAT: TypeAlias = Literal["essentials", "essentialsPlus", "systymPackages", "precheckedPackages"]
13
13
 
14
14
 
15
15
  def main_with_parser():
@@ -66,7 +66,7 @@ def main(which: Annotated[Optional[str], typer.Argument(help=f"Choose a category
66
66
 
67
67
  options += list(get_args(WHICH_CAT))
68
68
  # print("s"*1000)
69
- program_names = choose_from_options(multi=True, msg="", options=options, header="🚀 CHOOSE DEV APP", default="AllEssentials", fzf=True)
69
+ program_names = choose_from_options(multi=True, msg="", options=options, header="🚀 CHOOSE DEV APP", default="essentials", fzf=True)
70
70
 
71
71
  total_commands = ""
72
72
  installation_messages: list[str] = []
@@ -103,14 +103,14 @@ def get_programs_by_category(program_name: WHICH_CAT):
103
103
  ┃ 📦 Installing Category: {program_name}
104
104
  ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━""")
105
105
  match program_name:
106
- case "AllEssentials" | "EssentialsAndOthers":
106
+ case "essentials" | "essentialsPlus":
107
107
  installers_ = get_installers(dev=False, system=system())
108
- if program_name == "EssentialsAndOthers":
108
+ if program_name == "essentialsPlus":
109
109
  installers_ += get_installers(dev=True, system=system())
110
110
  install_all(installers=installers_)
111
111
  program = ""
112
112
 
113
- case "SystemInstallers":
113
+ case "systymPackages":
114
114
  if system() == "Windows":
115
115
  options_system = parse_apps_installer_windows(LIBRARY_ROOT.joinpath("setup_windows/apps.ps1").read_text(encoding="utf-8"))
116
116
  elif system() == "Linux":
@@ -149,12 +149,12 @@ def get_programs_by_category(program_name: WHICH_CAT):
149
149
  # print(f"Installing {name}")
150
150
  # sub_program = installers[idx].install_robust(version=None) # finish the task
151
151
 
152
- case "PrecheckedCloudInstaller":
153
- # from machineconfig.jobs.python.check_installations import PrecheckedCloudInstaller
154
- # ci = PrecheckedCloudInstaller()
155
- # ci.download_safe_apps(name="AllEssentials")
152
+ case "precheckedPackages":
153
+ # from machineconfig.jobs.python.check_installations import precheckedPackages
154
+ # ci = precheckedPackages()
155
+ # ci.download_safe_apps(name="essentials")
156
156
  # program = ""
157
- raise NotImplementedError("PrecheckedCloudInstaller is not implemented yet.")
157
+ raise NotImplementedError("precheckedPackages is not implemented yet.")
158
158
  return program
159
159
 
160
160
 
@@ -105,7 +105,7 @@ def main(): # noqa: C901 - (complexity acceptable for CLI glue)
105
105
 
106
106
  regenerate_py_code = f"""
107
107
  #!/usr/bin/env uv run --python 3.13 --with machineconfig
108
- #!/usr/bin/env uv run --project $HOME/code/machineconfig
108
+ #!/usr/bin/env uv run --no-dev --project $HOME/code/machineconfig
109
109
 
110
110
  from machineconfig.scripts.python.fire_agents import *
111
111
 
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env -S uv run --project /home/alex/code/machineconfig --script
1
+ #!/usr/bin/env -S uv run --no-dev --project /home/alex/code/machineconfig --script
2
2
  """Sx & Rx
3
3
 
4
4
  TODO: add support for cases in which source or target has non 22 default port number and is defineda as user@host:port:path which makes 2 colons in the string.
@@ -1,4 +1,4 @@
1
1
 
2
- [manager]
2
+ [mgr]
3
3
  show_hidden = true
4
4
  ratio = [1, 3, 5]
@@ -118,7 +118,7 @@ choice=${choice:-y}
118
118
  if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
119
119
  echo """ 🔧 Installing CLI applications...
120
120
  """
121
- uv run --python 3.13 --with machineconfig python -m fire machineconfig.scripts.python.devops_devapps_install main --which=AllEssentials
121
+ uv run --python 3.13 --with machineconfig python -m fire machineconfig.scripts.python.devops_devapps_install main --which=essentials
122
122
  . $HOME/.bashrc
123
123
  else
124
124
  echo """ ⏭️ Skipping CLI apps installation
@@ -120,7 +120,7 @@ if (-not $yesAll) {
120
120
  }
121
121
 
122
122
  } else {
123
- uv run --python 3.13 --with machineconfig python -m fire machineconfig.scripts.python.devops_devapps_install main --which=AllEssentials
123
+ uv run --python 3.13 --with machineconfig python -m fire machineconfig.scripts.python.devops_devapps_install main --which=essentials
124
124
  }
125
125
 
126
126
 
machineconfig/utils/io.py CHANGED
@@ -77,7 +77,6 @@ def read_ini(path: "Path", encoding: Optional[str] = None):
77
77
 
78
78
  def read_json(path: "Path", r: bool = False, **kwargs: Any) -> Any: # return could be list or dict etc
79
79
  import json
80
-
81
80
  try:
82
81
  mydict = json.loads(Path(path).read_text(encoding="utf-8"), **kwargs)
83
82
  except Exception:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 3.89
3
+ Version: 3.91
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -43,7 +43,7 @@ machineconfig/jobs/linux/msc/cli_agents.sh,sha256=o4DGuavYPfRuvS28r9nyvS2_xk-Ibq
43
43
  machineconfig/jobs/linux/msc/lid.sh,sha256=09LeoSaXCGjCn7YxPcIFQpHroYdglJlEtFU2agarh3I,1302
44
44
  machineconfig/jobs/linux/msc/network.sh,sha256=dmISsh0hioDheinqee3qHfo2k7ClFx6G_GfGDxuflmc,1796
45
45
  machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- machineconfig/jobs/python/check_installations.py,sha256=o0mrZ-ivdED_7Od1tdtwJ4XSQRfiY6d_HciXLh1PXtY,11126
46
+ machineconfig/jobs/python/check_installations.py,sha256=ksuENfJg0NAo1mWLRnsj1MpZw7Ee7eKw1nWyUQeO7fg,11096
47
47
  machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
48
48
  machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
49
49
  machineconfig/jobs/python/python_ve_symlink.py,sha256=SgLPZGtnhZ8L5ms2zEohQkJAzPeBkI3mB4DBHjAmzN0,850
@@ -89,7 +89,7 @@ machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO
89
89
  machineconfig/jobs/python_generic_installers/dev/config.json,sha256=ItwFXaLlIGwBS2SfmYwsqYU86fAKQmCfLD7vaneZgPA,26928
90
90
  machineconfig/jobs/python_generic_installers/dev/config.json.bak,sha256=dKzCQNuQigcuTGw1uvhHkhG-kvp2UPHpv0X6XOTYtBE,29760
91
91
  machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- machineconfig/jobs/python_linux_installers/config.json,sha256=N0kk9WSUzIbKiLl5a4qRoR0LB4qGGjzLXIlWYMcm8mY,4658
92
+ machineconfig/jobs/python_linux_installers/config.json,sha256=ieu42FP2ZNT9uWDCG8wwbfXRdKqi_fF5SpHclP3eRCY,4652
93
93
  machineconfig/jobs/python_linux_installers/config.json.bak,sha256=rn2mss51IgiAKKmhPdQ0nmTC_aPFm-6rIfHdCBlEFBE,5324
94
94
  machineconfig/jobs/python_linux_installers/archive/config.json,sha256=bpfrVl1Zcmb6FwrIh413bV_o2_e4NVA8RESZil10wZk,370
95
95
  machineconfig/jobs/python_linux_installers/archive/config.json.bak,sha256=haf6H05bW2AC-CptfZBeNeMoQK60w8iWmCZ2aDiL4O0,302
@@ -112,7 +112,7 @@ machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYi
112
112
  machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- machineconfig/profile/create.py,sha256=X0hk-G8TCC1U8qGQSdc-ktQYb9caO2pEjvihFxoH1Hk,6475
115
+ machineconfig/profile/create.py,sha256=Vn-0C1FslpHOYS2N9jmuYl00l34Ah2VnFE36pRHznuE,6442
116
116
  machineconfig/profile/shell.py,sha256=rseM8irNSv8xAUj8pDucjCuuqJZoNtpSgKt9JOntoM0,9215
117
117
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
118
118
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
@@ -120,7 +120,7 @@ machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0
120
120
  machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
121
121
  machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
122
122
  machineconfig/scripts/__init__.py,sha256=v0cMjnaIo39C3ltLiTf1S0fCTMAqWtEU7zrVenUj4PQ,71
123
- machineconfig/scripts/cloud/init.sh,sha256=yNsseCLMceO50Eg72ra6_NIJCxkGZmpmos1EXe-mvzY,4649
123
+ machineconfig/scripts/cloud/init.sh,sha256=zPn3_hwsHduaRxHs97TTn-BoLaJS44I2XwlLmZudQ80,4646
124
124
  machineconfig/scripts/linux/choose_wezterm_theme,sha256=T7_vS-XvIZErRkfqtlyoZuHEVKFQQwhIeQMFIVTjtxg,145
125
125
  machineconfig/scripts/linux/cloud_copy,sha256=IU5TO7roSUYB-U4Km9bhAZOvlUr4nRJtJf4tqCPIPAs,100
126
126
  machineconfig/scripts/linux/cloud_mount,sha256=QnDUPUv9q3V14PONOwM4tAPHqOopF_uvjEN1tL24jZA,102
@@ -164,15 +164,15 @@ machineconfig/scripts/python/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3X
164
164
  machineconfig/scripts/python/cloud_mount.py,sha256=RFMzRUep2D5HtVXANIi-pab3EkI-W8P1IJ32k1W7xQA,6756
165
165
  machineconfig/scripts/python/cloud_repo_sync.py,sha256=GBhdUu9BJwhLYmhxxtvqJGLy7xKdQcnH9kkL4jcbzEE,9502
166
166
  machineconfig/scripts/python/cloud_sync.py,sha256=RWGpAfJ9fnN18yNBSgN44dzA38Hmd4879JL5r2pcyrM,3514
167
- machineconfig/scripts/python/croshell.py,sha256=tYc8MUVcbvSH8JZxc273z9Kr8LitoKxI7ZdFN-_Ms-s,8945
167
+ machineconfig/scripts/python/croshell.py,sha256=shv0FmFfD2Br0EVE-zvpt4i5Tl8kliLlIvxkx0umGiA,8954
168
168
  machineconfig/scripts/python/devops.py,sha256=GD1FLfp76E5bhcs9XhC3Fa6XfMOdfv_qu8kMBOjVtXE,5669
169
169
  machineconfig/scripts/python/devops_add_identity.py,sha256=JfN3ZrYMCgmt4ks_VCfnV9BIIHAsOYO3E0W0wZ15FR8,3791
170
170
  machineconfig/scripts/python/devops_add_ssh_key.py,sha256=KaoX83KltBsmutfKhSfZjd7nP_R1hJ2OLAWRhbswO7o,6889
171
171
  machineconfig/scripts/python/devops_backup_retrieve.py,sha256=jZe5Vki7E2GCMG8hvqUZeOONFC4cNzISoGzq_dMG4GA,5601
172
- machineconfig/scripts/python/devops_devapps_install.py,sha256=kPq8lARp0JEEoaUNfcfO6rFHHYV3x-SBJ0ogzCwDPHQ,9987
172
+ machineconfig/scripts/python/devops_devapps_install.py,sha256=Do79uYsZKmLuEOxwj54U1W8uLcOluxRuCpWCdv7nN2E,9926
173
173
  machineconfig/scripts/python/devops_update_repos.py,sha256=c5qBc9cuTGDEqDHufkjDT4d_vvJsswv3tlqk9MAulYk,8063
174
174
  machineconfig/scripts/python/dotfile.py,sha256=SRcX-9Ak1jRvF-killBTTm2IWcsNxfiLucH6ZsytAFA,2202
175
- machineconfig/scripts/python/fire_agents.py,sha256=Hn27ZGWBRlu3mDyJPf_qg_m0i3AbWbWpA-Ce1VeZjUY,9207
175
+ machineconfig/scripts/python/fire_agents.py,sha256=IpglbN30zJ1jIBzHNCR2LmPULoIdFaj2M0JBsEfZEZg,9216
176
176
  machineconfig/scripts/python/fire_agents_help_launch.py,sha256=sTdjNz2pDinDMMjUAMN7OqH-KAUeHh6Aihr_zUvtM6k,6128
177
177
  machineconfig/scripts/python/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
178
178
  machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=QPiCbQq9j5REHStPdYqQcGNkz_rp5CjotqOpMY3v5TM,2099
@@ -180,7 +180,7 @@ machineconfig/scripts/python/fire_jobs.py,sha256=qD_9JtoNTjOjAyX0_QPysfHNQ-qq55t
180
180
  machineconfig/scripts/python/fire_jobs_args_helper.py,sha256=VsyPgjWRByZgXz65vmmpyR-2mJo6KwNgwrWFYd3EYqc,2075
181
181
  machineconfig/scripts/python/fire_jobs_layout_helper.py,sha256=LHLyp5HxKwut19x2OYKQq8gy4EKon6wNb-jlxx5DoVM,4134
182
182
  machineconfig/scripts/python/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- machineconfig/scripts/python/ftpx.py,sha256=vqwhfkg3jVaAdjlWvrcPms2pUD7_c370jn2W6o5XArM,10269
183
+ machineconfig/scripts/python/ftpx.py,sha256=l_gdJS0QB2wVZErubtZvm4HJD9HZAJxSP68sbY73xwo,10278
184
184
  machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
185
185
  machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
186
186
  machineconfig/scripts/python/mount_nfs.py,sha256=c8pWXimDWdgCkSskcnPgT-8ESPosil6Cvy2hGSaIBJE,3359
@@ -362,7 +362,7 @@ machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdH
362
362
  machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
363
363
  machineconfig/settings/yazi/keymap.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
364
  machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
- machineconfig/settings/yazi/yazi.toml,sha256=VyykCmMioYFUBVnM7ANzOVQvo37F0yLeaakVrfN_SDE,48
365
+ machineconfig/settings/yazi/yazi.toml,sha256=8zn-7VnGernC7fN27va8fvh8Q6UkVwtXYfBHjdTBcF0,44
366
366
  machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
367
367
  machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
368
368
  machineconfig/settings/zellij/config.orig.kdl,sha256=0KyYigBGUD5GdTmH9pE8f66LIFnll44Xz7s9EYD1z8c,10349
@@ -379,7 +379,7 @@ machineconfig/setup_linux/others/openssh-server_add_pub_key.sh,sha256=UiJcD1o4Ue
379
379
  machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
380
380
  machineconfig/setup_linux/web_shortcuts/ascii_art.sh,sha256=RWcxH_Db7WHH37PclYmc92o6zAS557wGZxcYTuyTUZ0,3550
381
381
  machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=X9-B1cVptbaFWaWTA-2ELNQx_2ktxu7ZVe48RvpCmkU,316
382
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=HK48BqvrqwkRq4veqQkgbNNqXkdjInacyLq5xyp4o3M,7722
382
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=EFu176E4T9wKm7MzRPiMaiItiUCHuN-SSTkNqnFOVgU,7719
383
383
  machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=k6BAY-zAWsi1beOMiZODxw4VOjZCTABZu__gxSET1eU,1924
384
384
  machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
385
385
  machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
@@ -387,7 +387,7 @@ machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKW
387
387
  machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=L03JJ4Jua_bzgtF3kuDOkuQ-Nqaj_ZcV3CFEkCHD1WI,908
388
388
  machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=pUVTtgKHOdgaK3hxz7JoMZzTyQ7vm2RfE_OJgB7e4cw,1270
389
389
  machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=cTQnegGLGYhuFY3YuuAj2ortN__adA2dznk2E737h4A,644
390
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=m0KplQ3RwezZGRfV0enEzNJ2FRbSGL2LS1uXnRfCWkw,7200
390
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=MEdWzltbnEOMYaqMAx8-TDy_VAs9svx5cZApqgio8-c,7197
391
391
  machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
392
392
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
393
  machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
@@ -397,7 +397,7 @@ machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
397
397
  machineconfig/utils/accessories.py,sha256=W_9dLzjwNTW5JQk_pe3B2ijQ1nA2-8Kdg2r7VBtzgQs,4340
398
398
  machineconfig/utils/code.py,sha256=pKPHInKgXJWeACVbxuE7sMdYeZCbNttaYCsfonGhFfc,4464
399
399
  machineconfig/utils/installer.py,sha256=_sjaIqqHN-7n3mYD-iOIli6Bn2792EjOwE-JC528Qfo,11936
400
- machineconfig/utils/io.py,sha256=6LuQMT7CG26atx5_0P30Ru0zHgLwuvpKHfZLUWIjS-U,2873
400
+ machineconfig/utils/io.py,sha256=ZXB3aataS1IZ_0WMcCRSmoN1nbkvEO-bWYcs-TpngqU,2872
401
401
  machineconfig/utils/links.py,sha256=riNUrG8aGElRszdOPOic4M2AyOcpdcth_-y8JEiZpJ4,10253
402
402
  machineconfig/utils/notifications.py,sha256=vvdsY5IX6XEiILTnt5lNyHxhCi0ljdGX2T_67VRfrG4,9009
403
403
  machineconfig/utils/options.py,sha256=aEFeVbHfbX0d3VjjZcUAQA0jSOsKhKhr7P0kGHYhPd0,9284
@@ -422,8 +422,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=CCs5ebomW1ac
422
422
  machineconfig/utils/schemas/installer/installer_types.py,sha256=iAzcALc9z_FAQE9iuGHfX6Z0B1_n3Gt6eC0d6heYik0,599
423
423
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=M1ZFCz_kjRZPhxM19rIYUDR5lDDpwa09odR_ihtIFq0,1932
424
424
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
425
- machineconfig-3.89.dist-info/METADATA,sha256=x-Ql6nmdV_7gD4-vAs9QZ3LR4kIv7KXml5BDnYrsmic,6998
426
- machineconfig-3.89.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
427
- machineconfig-3.89.dist-info/entry_points.txt,sha256=rSx_9gXd2stziS1OkNy__jF647hrRxRiF6zolLUELc4,1153
428
- machineconfig-3.89.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
429
- machineconfig-3.89.dist-info/RECORD,,
425
+ machineconfig-3.91.dist-info/METADATA,sha256=q398bDIlqYBBhjXljab-yk72nhwRsQYa9lhl4Yuy6X0,6998
426
+ machineconfig-3.91.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
427
+ machineconfig-3.91.dist-info/entry_points.txt,sha256=rSx_9gXd2stziS1OkNy__jF647hrRxRiF6zolLUELc4,1153
428
+ machineconfig-3.91.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
429
+ machineconfig-3.91.dist-info/RECORD,,