machineconfig 5.22__py3-none-any.whl → 5.24__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/helpers/zellij_local_helper.py +298 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_restart.py +77 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_with_panes.py +228 -0
- machineconfig/cluster/sessions_managers/helpers/zellij_local_manager_helper.py +165 -0
- machineconfig/cluster/sessions_managers/wt_local.py +100 -75
- machineconfig/cluster/sessions_managers/wt_local_manager.py +17 -21
- machineconfig/cluster/sessions_managers/wt_remote.py +51 -43
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +16 -8
- machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +6 -19
- machineconfig/cluster/sessions_managers/zellij_local.py +79 -371
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +20 -168
- machineconfig/cluster/sessions_managers/zellij_remote.py +38 -39
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +13 -10
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +2 -6
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +5 -20
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1 +17 -17
- machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh +17 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +1 -1
- machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md +16 -0
- machineconfig/scripts/python/ai/solutions/generic.py +15 -4
- machineconfig/scripts/python/cloud_repo_sync.py +7 -5
- machineconfig/scripts/python/count_lines.py +6 -6
- machineconfig/scripts/python/fire_agents_help_launch.py +6 -1
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +0 -3
- machineconfig/scripts/python/interactive.py +39 -3
- machineconfig/scripts/windows/share_smb.ps1 +0 -6
- machineconfig/setup_linux/ve.sh +1 -6
- machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -6
- machineconfig/setup_windows/ve.ps1 +0 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +2 -10
- machineconfig/utils/source_of_truth.py +1 -1
- machineconfig-5.24.dist-info/METADATA +81 -0
- {machineconfig-5.22.dist-info → machineconfig-5.24.dist-info}/RECORD +36 -33
- machineconfig/cluster/sessions_managers/ffile.py +0 -4
- machineconfig/scripts/python/ai/solutions/copilot/prompts/allLintersAndTypeCheckers.prompt.md +0 -5
- machineconfig-5.22.dist-info/METADATA +0 -188
- {machineconfig-5.22.dist-info → machineconfig-5.24.dist-info}/WHEEL +0 -0
- {machineconfig-5.22.dist-info → machineconfig-5.24.dist-info}/entry_points.txt +0 -0
- {machineconfig-5.22.dist-info → machineconfig-5.24.dist-info}/top_level.txt +0 -0
|
@@ -72,7 +72,7 @@ uv run -m ruff clean
|
|
|
72
72
|
uv run -m ruff check . --fix
|
|
73
73
|
uv run --no-dev --project $HOME/code/machineconfig -m machineconfig.scripts.python.ai.generate_files
|
|
74
74
|
|
|
75
|
-
mkdir .linters
|
|
75
|
+
mkdir .ai/linters
|
|
76
76
|
|
|
77
77
|
echo -e "${GREEN}🧹 Code cleanup complete!${NC}"
|
|
78
78
|
echo
|
|
@@ -82,38 +82,38 @@ draw_box "🔍 TYPE CHECKERS & LINTERS 🔍" "${BOLD}${PURPLE}"
|
|
|
82
82
|
((CURRENT_STEP++))
|
|
83
83
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pyright Type Checker"
|
|
84
84
|
echo -e "${BLUE}📋 Analyzing types with Pyright...${NC}"
|
|
85
|
-
rm ./.linters/
|
|
86
|
-
uv run pyright . > ./.linters/
|
|
87
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
85
|
+
rm ./.ai/linters/issues_pyright.md || true
|
|
86
|
+
uv run pyright . > ./.ai/linters/issues_pyright.md
|
|
87
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pyright.md${NC}"
|
|
88
88
|
|
|
89
89
|
((CURRENT_STEP++))
|
|
90
90
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "MyPy Type Checker"
|
|
91
91
|
echo -e "${BLUE}📋 Analyzing types with MyPy...${NC}"
|
|
92
|
-
rm ./.linters/
|
|
93
|
-
uv run mypy . > ./.linters/
|
|
94
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
92
|
+
rm ./.ai/linters/issues_mypy.md || true
|
|
93
|
+
uv run mypy . > ./.ai/linters/issues_mypy.md
|
|
94
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_mypy.md${NC}"
|
|
95
95
|
|
|
96
96
|
((CURRENT_STEP++))
|
|
97
97
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pylint Code Analysis"
|
|
98
98
|
echo -e "${BLUE}📋 Analyzing code quality with Pylint...${NC}"
|
|
99
|
-
rm ./.linters/
|
|
100
|
-
uv run pylint ./src/ > ./.linters/
|
|
101
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
99
|
+
rm ./.ai/linters/issues_pylint.md || true
|
|
100
|
+
uv run pylint ./src/ > ./.ai/linters/issues_pylint.md
|
|
101
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pylint.md${NC}"
|
|
102
102
|
|
|
103
103
|
((CURRENT_STEP++))
|
|
104
104
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Pyrefly Type Checker"
|
|
105
105
|
echo -e "${BLUE}📋 Analyzing types with Pyrefly...${NC}"
|
|
106
|
-
rm ./.linters/
|
|
107
|
-
uv run pyrefly check . > ./.linters/
|
|
108
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
106
|
+
rm ./.ai/linters/issues_pyrefly.md || true
|
|
107
|
+
uv run pyrefly check . > ./.ai/linters/issues_pyrefly.md
|
|
108
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_pyrefly.md${NC}"
|
|
109
109
|
|
|
110
110
|
((CURRENT_STEP++))
|
|
111
111
|
draw_progress $CURRENT_STEP $TOTAL_STEPS "Ruff Linter"
|
|
112
112
|
echo -e "${BLUE}📋 Checking code style with Ruff...${NC}"
|
|
113
|
-
rm ./.linters/
|
|
114
|
-
uv run ruff check . > ./.linters/
|
|
115
|
-
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.linters/
|
|
113
|
+
rm ./.ai/linters/issues_ruff.md || true
|
|
114
|
+
uv run ruff check . > ./.ai/linters/issues_ruff.md
|
|
115
|
+
echo -e "${GREEN}✅ Results saved to ${UNDERLINE}./.ai/linters/issues_ruff.md${NC}"
|
|
116
116
|
|
|
117
117
|
echo
|
|
118
118
|
draw_box "🎉 ALL CHECKS COMPLETED! 🎉" "${BOLD}${GREEN}"
|
|
119
|
-
echo -e "${BOLD}${GREEN}📁 Check the ${UNDERLINE}.linters${NC}${BOLD}${GREEN} directory for detailed results.${NC}"
|
|
119
|
+
echo -e "${BOLD}${GREEN}📁 Check the ${UNDERLINE}.ai/linters${NC}${BOLD}${GREEN} directory for detailed results.${NC}"
|
|
@@ -34,7 +34,7 @@ applyTo: "**/*.py"
|
|
|
34
34
|
* when finished, run a linting static analysis check against files you touched, Any fix any mistakes.
|
|
35
35
|
* Please run `uv run -m pyright $file_touched` and address all issues. if `pyright is not there, first run `uv add pyright --dev`.
|
|
36
36
|
* For all type checkers and linters, like mypy, pyright, pyrefly and pylint, there are config files at different levels of the repo all the way up to home directory level. You don't need to worry about them, just be mindful that they exist. The tools themselves will respect the configs therein.
|
|
37
|
-
* If you want to run all linters and pycheckers agains the entire project to make sure everything is clean, I prepared a nice shell script, you can run it from the repo root as `./.scripts/lint_and_type_check.sh`. It will produce markdown files that are you are meant to look at @ ./.linters/*.md
|
|
37
|
+
* If you want to run all linters and pycheckers agains the entire project to make sure everything is clean, I prepared a nice shell script, you can run it from the repo root as `./.ai/scripts/lint_and_type_check.sh`. It will produce markdown files that are you are meant to look at @ ./.ai/linters/*.md
|
|
38
38
|
|
|
39
39
|
# General Programming Ethos:
|
|
40
40
|
* Make sure all the code is rigorous, no lazy stuff.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
mode: agent
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
$PYRIGHT_ISSUES_FILE = "./.ai/linters/issues_pyright.md"
|
|
7
|
+
$NUM_TASKS = 50
|
|
8
|
+
please create $NUM_TASKS todo-list tasks to go through the first $NUM_TASKS
|
|
9
|
+
from $PYRIGHT_ISSUES_FILE, and solve them independently in each task.
|
|
10
|
+
When creating the tasks, try to keep issues related to one pyfile in one task, so you don't read the same file twice in different tasks.
|
|
11
|
+
|
|
12
|
+
once you solved them, you will have 2 months break from work.
|
|
13
|
+
|
|
14
|
+
Start by runing `./.ai/scripts/lint_and_type_check.sh` to generate $PYRIGHT_ISSUES_FILE only once.
|
|
15
|
+
|
|
16
|
+
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
|
|
1
2
|
from pathlib import Path
|
|
3
|
+
import platform
|
|
2
4
|
|
|
3
5
|
from machineconfig.utils.source_of_truth import LIBRARY_ROOT
|
|
4
6
|
|
|
5
7
|
|
|
6
8
|
def create_dot_scripts(repo_root: Path) -> None:
|
|
7
9
|
scripts_dir = LIBRARY_ROOT.joinpath("scripts/python/ai/scripts")
|
|
8
|
-
target_dir = repo_root.joinpath(".scripts")
|
|
10
|
+
target_dir = repo_root.joinpath(".ai/scripts")
|
|
9
11
|
import shutil
|
|
10
12
|
shutil.rmtree(target_dir, ignore_errors=True)
|
|
11
13
|
target_dir.mkdir(parents=True, exist_ok=True)
|
|
12
|
-
# for script_path in scripts_dir.iterdir():
|
|
13
|
-
# target_dir.joinpath(script_path.name).write_text(data=script_path.read_text(encoding="utf-8"), encoding="utf-8")
|
|
14
14
|
import platform
|
|
15
15
|
if platform.system() == "Windows":
|
|
16
16
|
script_path = scripts_dir.joinpath("lint_and_type_check.ps1")
|
|
@@ -21,6 +21,18 @@ def create_dot_scripts(repo_root: Path) -> None:
|
|
|
21
21
|
target_dir.joinpath(script_path.name).write_text(data=script_path.read_text(encoding="utf-8"), encoding="utf-8")
|
|
22
22
|
|
|
23
23
|
|
|
24
|
+
def adjust_for_os(config_path: Path) -> str:
|
|
25
|
+
if config_path.suffix not in [".md", ".txt"]:
|
|
26
|
+
return config_path.read_text(encoding="utf-8")
|
|
27
|
+
english_text = config_path.read_text(encoding="utf-8")
|
|
28
|
+
if platform.system() == "Windows":
|
|
29
|
+
return english_text.replace("bash", "PowerShell").replace("sh ", "pwsh ").replace("./", ".\\").replace(".sh", ".ps1")
|
|
30
|
+
elif platform.system() in ["Linux", "Darwin"]:
|
|
31
|
+
return english_text.replace("PowerShell", "bash").replace("pwsh ", "sh ").replace(".\\", "./").replace(".ps1", ".sh")
|
|
32
|
+
else:
|
|
33
|
+
raise NotImplementedError(f"Platform {platform.system()} is not supported.")
|
|
34
|
+
|
|
35
|
+
|
|
24
36
|
def adjust_gitignore(repo_root: Path) -> None:
|
|
25
37
|
dot_git_ignore_path = repo_root.joinpath(".gitignore")
|
|
26
38
|
if dot_git_ignore_path.exists() is False:
|
|
@@ -32,7 +44,6 @@ def adjust_gitignore(repo_root: Path) -> None:
|
|
|
32
44
|
".links",
|
|
33
45
|
"notebooks",
|
|
34
46
|
".ai",
|
|
35
|
-
".scripts",
|
|
36
47
|
"GEMINI.md",
|
|
37
48
|
"CLAUDE.md",
|
|
38
49
|
".cursor",
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import sys
|
|
2
1
|
import git
|
|
2
|
+
from rich.console import Console
|
|
3
|
+
from rich.panel import Panel
|
|
4
|
+
import typer
|
|
5
|
+
|
|
3
6
|
from machineconfig.utils.io import read_ini
|
|
4
7
|
from machineconfig.utils.path_extended import PathExtended
|
|
5
8
|
from machineconfig.utils.terminal import Response
|
|
6
|
-
|
|
7
9
|
from machineconfig.utils.source_of_truth import CONFIG_PATH, DEFAULTS_PATH
|
|
8
10
|
from machineconfig.utils.options import choose_from_options
|
|
9
11
|
from machineconfig.utils.code import get_shell_file_executing_python_script, write_shell_script_to_file
|
|
12
|
+
|
|
10
13
|
import platform
|
|
11
14
|
import subprocess
|
|
12
15
|
from typing import Optional, Literal
|
|
13
|
-
from
|
|
14
|
-
|
|
15
|
-
import typer
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
import sys
|
|
16
18
|
|
|
17
19
|
console = Console()
|
|
18
20
|
|
|
@@ -18,12 +18,12 @@ app = typer.Typer()
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
def count_lines_in_commit(commit: "Any") -> int:
|
|
21
|
-
|
|
22
|
-
for
|
|
23
|
-
if str(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
return
|
|
21
|
+
_total_lines = 0
|
|
22
|
+
for _file in commit.stats.files:
|
|
23
|
+
if str(_file).endswith(".py"):
|
|
24
|
+
_blob = commit.tree / _file
|
|
25
|
+
_total_lines += len(_blob.data_stream.read().decode("utf-8").splitlines())
|
|
26
|
+
return _total_lines
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def count_historical_loc(repo_path: str) -> int:
|
|
@@ -42,6 +42,9 @@ def prep_agent_launch(agents_dir: Path, prompts_material: list[str], prompt_pref
|
|
|
42
42
|
cmd_prefix = f"""
|
|
43
43
|
#!/usr/bin/env bash
|
|
44
44
|
|
|
45
|
+
sleep 5
|
|
46
|
+
timeout 3 copilot --banner
|
|
47
|
+
|
|
45
48
|
# AGENT-{idx}-LAUNCH-SCRIPT
|
|
46
49
|
# Auto-generated by fire_agents.py
|
|
47
50
|
|
|
@@ -74,15 +77,17 @@ sleep 0.1
|
|
|
74
77
|
api_key = api_keys[idx % len(api_keys)] if api_keys else ""
|
|
75
78
|
# Export the environment variable so it's available to subshells
|
|
76
79
|
cmd = f"""
|
|
80
|
+
|
|
77
81
|
export GEMINI_API_KEY={shlex.quote(api_key)}
|
|
78
82
|
echo "Using Gemini API key $GEMINI_API_KEY"
|
|
83
|
+
|
|
79
84
|
gemini {model_arg} --yolo --prompt {safe_path}
|
|
80
85
|
"""
|
|
81
86
|
case "cursor-agent":
|
|
82
87
|
# As originally implemented
|
|
83
88
|
cmd = f"""
|
|
84
89
|
|
|
85
|
-
cursor-agent --print --output-format text
|
|
90
|
+
cursor-agent --print --output-format text {prompt_path}
|
|
86
91
|
|
|
87
92
|
"""
|
|
88
93
|
case "crush":
|
|
@@ -29,9 +29,6 @@ def delete_remote_repo_copy_and_push_local(remote_repo: str, local_repo: str, cl
|
|
|
29
29
|
console.print(Panel("✅ Repository successfully pushed to cloud", title="[bold green]Repo Sync[/bold green]", border_style="green"))
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
# import sys
|
|
33
|
-
# import subprocess
|
|
34
|
-
|
|
35
32
|
|
|
36
33
|
def get_wt_cmd(wd1: PathExtended, wd2: PathExtended) -> str:
|
|
37
34
|
lines = [
|
|
@@ -35,9 +35,45 @@ console = Console()
|
|
|
35
35
|
|
|
36
36
|
def display_header() -> None:
|
|
37
37
|
from machineconfig.utils.installer import get_machineconfig_version
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
from rich.align import Align
|
|
39
|
+
from rich.padding import Padding
|
|
40
|
+
|
|
41
|
+
# Fancy ASCII art header
|
|
42
|
+
ascii_art = """
|
|
43
|
+
╔═════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
|
|
44
|
+
║ ║
|
|
45
|
+
║ ███╗ ███╗ █████╗ ██████╗██╗ ██╗██╗███╗ ██╗███████╗ ██████╗ ██████╗ ███╗ ██╗███████╗██╗ ██████╗ ║
|
|
46
|
+
║ ████╗ ████║██╔══██╗██╔════╝██║ ██║██║████╗ ██║██╔════╝██╔════╝██╔═══██╗████╗ ██║██╔════╝██║██╔════╝ ║
|
|
47
|
+
║ ██╔████╔██║███████║██║ ███████║██║██╔██╗ ██║█████╗ ██║ ██║ ██║██╔██╗ ██║█████╗ ██║██║ ███╗ ║
|
|
48
|
+
║ ██║╚██╔╝██║██╔══██║██║ ██╔══██║██║██║╚██╗██║██╔══╝ ██║ ██║ ██║██║╚██╗██║██╔══╝ ██║██║ ██║ ║
|
|
49
|
+
║ ██║ ╚═╝ ██║██║ ██║╚██████╗██║ ██║██║██║ ╚████║███████╗╚██████╗╚██████╔╝██║ ╚████║██║ ██║╚██████╔╝ ║
|
|
50
|
+
║ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═════╝ ║
|
|
51
|
+
║ ║
|
|
52
|
+
╚═════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
version = get_machineconfig_version()
|
|
56
|
+
title = f"✨ MACHINE CONFIGURATION v{version} ✨"
|
|
57
|
+
subtitle = "🎯 Your digital life manager. Dotfiles, data, code and more."
|
|
58
|
+
bug_report = "🐛 Please report bugs to Alex Al-Saffar @ https://github.com/thisismygitrepo/machineconfig"
|
|
59
|
+
|
|
60
|
+
# Create styled texts
|
|
61
|
+
ascii_text = Text(ascii_art, style="bold cyan")
|
|
62
|
+
title_text = Text(title, style="bold bright_magenta")
|
|
63
|
+
subtitle_text = Text(subtitle, style="italic bright_blue")
|
|
64
|
+
bug_text = Text(bug_report, style="dim white")
|
|
65
|
+
|
|
66
|
+
# Create panel content with proper alignment
|
|
67
|
+
with console.capture() as capture:
|
|
68
|
+
console.print(ascii_text)
|
|
69
|
+
console.print()
|
|
70
|
+
console.print(Align.center(title_text))
|
|
71
|
+
console.print(Align.center(subtitle_text))
|
|
72
|
+
console.print()
|
|
73
|
+
console.print(Align.center(bug_text))
|
|
74
|
+
|
|
75
|
+
panel_content = capture.get()
|
|
76
|
+
console.print(Panel(Padding(panel_content, (1, 2)), border_style="bright_cyan", padding=(1, 2)))
|
|
41
77
|
def display_completion_message() -> None:
|
|
42
78
|
completion_text = Text("INSTALLATION COMPLETE", style="bold green")
|
|
43
79
|
subtitle_text = Text("System setup finished successfully", style="italic green")
|
|
@@ -4,12 +4,6 @@ $Path = $HOME + '\data\share_smb'
|
|
|
4
4
|
|
|
5
5
|
Get-SmbShare
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
#. activate_ve
|
|
9
|
-
#python -m machineconfig.scripts.python.share_smb
|
|
10
|
-
#. $HOME/tmp_results/shells/python_return_command.ps1
|
|
11
|
-
|
|
12
|
-
# make $path dir if it does not exist
|
|
13
7
|
if (!(Test-Path -Path $Path)) {
|
|
14
8
|
New-Item -ItemType Directory -Path $Path
|
|
15
9
|
}
|
machineconfig/setup_linux/ve.sh
CHANGED
|
@@ -8,13 +8,8 @@ else
|
|
|
8
8
|
echo """🔄 Updating uv package manager..."""
|
|
9
9
|
$HOME/.local/bin/uv self update
|
|
10
10
|
fi
|
|
11
|
-
# Add uv to PATH if not already there
|
|
12
11
|
if ! command -v uv &> /dev/null; then
|
|
13
|
-
echo """🔍 uv command not found in PATH
|
|
14
|
-
➕ Adding uv to system PATH...
|
|
15
|
-
"""
|
|
12
|
+
echo """🔍 uv command not found in PATH ➕ Adding uv to system PATH..."""
|
|
16
13
|
export PATH="$HOME/.local/bin:$PATH"
|
|
17
14
|
fi
|
|
18
|
-
echo """✅ uv is installed and ready to use."""
|
|
19
|
-
|
|
20
15
|
$HOME/.local/bin/uv python install 3.13
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
=======================================================================
|
|
5
|
-
📦 MACHINE CONFIGURATION | Interactive Installation Script. Installing uv then getting started.
|
|
6
|
-
======================================================================="""
|
|
7
|
-
|
|
8
|
-
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
|
|
3
|
+
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh")
|
|
9
4
|
$HOME/.local/bin/uv run --python 3.13 --with machineconfig devops self interactive
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
Write-Host "
|
|
2
|
-
🚀 ===========================================
|
|
3
|
-
📦 Machine Configuration Installation Script
|
|
4
|
-
============================================="
|
|
5
1
|
|
|
6
|
-
Write-Host "ℹ️ If you have execution policy issues, run: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"
|
|
7
|
-
|
|
8
|
-
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1" -OutFile "ve.ps1"
|
|
9
|
-
.\ve.ps1
|
|
10
|
-
rm ve.ps1
|
|
11
2
|
|
|
3
|
+
Write-Host "ℹ️ If you have execution policy issues, run: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"
|
|
4
|
+
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1").Content
|
|
12
5
|
uv run --python 3.13 --with machineconfig devops self interactive
|
|
13
|
-
# uv run --python 3.13 --with machineconfig https://raw.githubusercontent.com/thisismygitrepo/machineconfig/ee4f69e838e1acbb275bfb5a3d3faee23345f2a8/src/machineconfig/scripts/python/devops.py
|
|
@@ -5,7 +5,7 @@ Utils
|
|
|
5
5
|
import machineconfig
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
|
|
8
|
-
EXCLUDE_DIRS = [".links", ".ai", ".
|
|
8
|
+
EXCLUDE_DIRS = [".links", ".ai", ".venv", ".git", ".idea", ".vscode", "node_modules", "__pycache__", ".mypy_cache"]
|
|
9
9
|
|
|
10
10
|
LIBRARY_ROOT = Path(machineconfig.__file__).resolve().parent
|
|
11
11
|
REPO_ROOT = LIBRARY_ROOT.parent.parent
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: machineconfig
|
|
3
|
+
Version: 5.24
|
|
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: pyjson5>=1.6.9
|
|
27
|
+
Requires-Dist: typer-slim>=0.19.2
|
|
28
|
+
Requires-Dist: questionary>=2.1.1
|
|
29
|
+
Requires-Dist: typer>=0.19.2
|
|
30
|
+
Provides-Extra: windows
|
|
31
|
+
Requires-Dist: pywin32; extra == "windows"
|
|
32
|
+
Provides-Extra: docs
|
|
33
|
+
Requires-Dist: pdoc>=15.0.2; extra == "docs"
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<p align="center">
|
|
37
|
+
|
|
38
|
+
<a href="https://github.com/thisismygitrepo/machineconfig/commits">
|
|
39
|
+
<img src="https://img.shields.io/github/commit-activity/m/thisismygitrepo/machineconfig" />
|
|
40
|
+
</a>
|
|
41
|
+
|
|
42
|
+
</p>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# Welcome to machineconfig
|
|
46
|
+
|
|
47
|
+
# Shortcuts
|
|
48
|
+
* `bit.ly/cfgroot` is a shortcut to this repo.
|
|
49
|
+
* `glow https://bit.ly/cfgread` OR `curl bit.ly/cfgread -L | bat -l md --style="header"` to get the readme file.
|
|
50
|
+
|
|
51
|
+
Machineconfig is a package for managing configuration files (aka dotfiles). The idea is to collect those critical, time-consuming-files-to-setup in one directory and reference them via symbolic links from their original locations. Thus, when a new machine is to be setup, all that is required is to clone the repo in that machine and create the symbolic links.
|
|
52
|
+
Dotfiles include, but are not limited to:
|
|
53
|
+
* `~/.gitconfig`
|
|
54
|
+
* `~/.ssh`
|
|
55
|
+
* `~/.aws`
|
|
56
|
+
* `~/.bash_profile`
|
|
57
|
+
* `~/.bashrc`
|
|
58
|
+
* `~/.config`
|
|
59
|
+
* `$profile` in Windows Powershell
|
|
60
|
+
* etc
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Additionally, files that contain data, sensitive information that should not be pushed to a repository are contained in a directory `~/dotfiles`. The files therein are encrypted before backedup.
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# Windows:
|
|
67
|
+
```powershell
|
|
68
|
+
iex (iwr bit.ly/cfgiawindows).Content
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
# Linux and MacOS
|
|
72
|
+
```bash
|
|
73
|
+
. <(curl -sL bit.ly/cfgialinux)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
# Author
|
|
78
|
+
Alex Al-Saffar. [email](mailto:programmer@usa.com)
|
|
79
|
+
|
|
80
|
+
[](https://github.com/ashutosh00710/github-readme-activity-graph)
|
|
81
|
+
|
|
@@ -14,25 +14,28 @@ machineconfig/cluster/remote/run_remote.py,sha256=vCc56t8BUAUJp7tyb0PFfwy5hlmIdR
|
|
|
14
14
|
machineconfig/cluster/remote/script_execution.py,sha256=HHENJ4hmWmiVii394EbgIaTdJUQwxprFQh0ItaYJZ2E,9977
|
|
15
15
|
machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
|
|
16
16
|
machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
machineconfig/cluster/sessions_managers/
|
|
18
|
-
machineconfig/cluster/sessions_managers/
|
|
19
|
-
machineconfig/cluster/sessions_managers/
|
|
20
|
-
machineconfig/cluster/sessions_managers/
|
|
21
|
-
machineconfig/cluster/sessions_managers/
|
|
22
|
-
machineconfig/cluster/sessions_managers/
|
|
23
|
-
machineconfig/cluster/sessions_managers/
|
|
24
|
-
machineconfig/cluster/sessions_managers/
|
|
25
|
-
machineconfig/cluster/sessions_managers/
|
|
17
|
+
machineconfig/cluster/sessions_managers/wt_local.py,sha256=6XQL4J1QJlqVyvvTkPASJ4Nvlx5d1iyZAeIktffrkoE,18998
|
|
18
|
+
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=B7qpdRakeS1XFx4_xapIekii2B_2Nm8XHMvNWlcr7uk,24370
|
|
19
|
+
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
|
|
20
|
+
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=wxfZPJd4_21LAEoaf1kVDIyhUOYlJfWfNfFvlCOPLqo,20303
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=jQgaWEvPmLVHt_cPTJEM5YCI7HeM71kI0X3U7BFP_jk,10064
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=Rdpl9i5mN0Ywfw5VfPr7BlBl78IaBRM7WqWM6tNJGSs,17612
|
|
23
|
+
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=siLNW7DohSMjDGmhTeNGU8xpb1XM4NFvmkzaa3NyZbc,8533
|
|
24
|
+
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_1vMH58kMQE2oFj5sdjDM8lWhe5lbz0U9hZo,8417
|
|
25
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
|
|
26
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
|
|
27
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_helper_with_panes.py,sha256=xXt1-JDYra4yPe3YsPgjUyiRq4MlaLcAfOPSHYoc0Ho,9031
|
|
28
|
+
machineconfig/cluster/sessions_managers/helpers/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
|
|
26
29
|
machineconfig/cluster/sessions_managers/utils/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
|
|
27
30
|
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=q9k3ofvgcZzx_oKtaymWf75JpDAs5pagwRRYzfVgu30,3176
|
|
28
31
|
machineconfig/cluster/sessions_managers/utils/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
29
|
-
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=
|
|
32
|
+
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
30
33
|
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
|
|
31
34
|
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
|
|
32
35
|
machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcYwPqwdNRnLU9QGKxRR9i6ewY02Id-tgnODB_OzQ,12552
|
|
33
36
|
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=t5EWNOVS-PTc2fWE8aWNBrDyqR8akLtwtRinztxOdpY,9590
|
|
34
|
-
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=
|
|
35
|
-
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=
|
|
37
|
+
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=zA_PGkaMFVkRjxjXHl0FcyCQ9BASFSTP7ZnEgQ_rtyE,2996
|
|
38
|
+
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=FMpwaSeDCc71pEiVk99s8f5NkZEQ8zKQNUuaSXojgq4,4615
|
|
36
39
|
machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=8l8OAfWYy5xv-EaVqtXLqvPo9YaR9i8kFqGMhPzk0nw,2616
|
|
37
40
|
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=4SwH0i9V5Qwugzcewr3uv1Y5mjLhQAXyaGiWtOOjY7E,13696
|
|
38
41
|
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
|
|
@@ -141,9 +144,9 @@ machineconfig/scripts/python/choose_wezterm_theme.py,sha256=Hlu_EOQhLM6wYdAdY25j
|
|
|
141
144
|
machineconfig/scripts/python/cloud_copy.py,sha256=fcWbSo2nGiubtMYjGci8s5tVjZ9D-u8mteCawZmbw3I,8379
|
|
142
145
|
machineconfig/scripts/python/cloud_manager.py,sha256=YN0DYLzPKtMBaks-EAVwFmkCu3XeHWMr1D21uqX5dDk,3429
|
|
143
146
|
machineconfig/scripts/python/cloud_mount.py,sha256=GwcXbd5ohoHGESfX5edtCEl2-umDDxH_AZapmFSzc9E,6740
|
|
144
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256=
|
|
147
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=8VZa95YN8_pcY8k5KRDQAXxDTAMhOjnuXsT6NNnjUzg,9664
|
|
145
148
|
machineconfig/scripts/python/cloud_sync.py,sha256=RWGpAfJ9fnN18yNBSgN44dzA38Hmd4879JL5r2pcyrM,3514
|
|
146
|
-
machineconfig/scripts/python/count_lines.py,sha256=
|
|
149
|
+
machineconfig/scripts/python/count_lines.py,sha256=ZLEajCLmlFFY969BehabqGOB9_kkpATO3Lt09L7KULk,15968
|
|
147
150
|
machineconfig/scripts/python/count_lines_frontend.py,sha256=HlzPLU9_oJYqPNbnoQ0Hm4CuYy1UUlkZPcE5tFBSEbo,545
|
|
148
151
|
machineconfig/scripts/python/croshell.py,sha256=LgmwB17EVgNgRkXgwLOZPQWrHqSYDo7Kd-d6vkqA3PY,6459
|
|
149
152
|
machineconfig/scripts/python/devops.py,sha256=VWdoSf0MxMl1e-egKn4mAm_gQ43OFDwhS8PCXZy3l3M,7341
|
|
@@ -153,7 +156,7 @@ machineconfig/scripts/python/devops_backup_retrieve.py,sha256=JLJHmi8JmZ_qVTeMW-
|
|
|
153
156
|
machineconfig/scripts/python/devops_status.py,sha256=qSmDCNopKq8DLcx3u1sLhCIZtILP2ZzdGYZuA7fvrJ8,22487
|
|
154
157
|
machineconfig/scripts/python/devops_update_repos.py,sha256=9p21ckEfqyiCoLWgNgkE1RSswb6b9YPeCf5lmBtudsQ,9393
|
|
155
158
|
machineconfig/scripts/python/dotfile.py,sha256=9W9i8Qbs6i2NfTq0knywB3StvE_sHaZYZ0RslTyoVz8,2734
|
|
156
|
-
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=
|
|
159
|
+
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=Lkxpdf6oCHsfyHUVoZJ0aqOU8baD7RkcKEODgVEkcsg,5053
|
|
157
160
|
machineconfig/scripts/python/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
158
161
|
machineconfig/scripts/python/fire_agents_helper_types.py,sha256=zKu8Vr6iucaGSkCm_Tkt_WrYU7-6Nript3coYyzTXzY,295
|
|
159
162
|
machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=mpqx3uaQdBXYieuvhdK-qsvLepf9oIMo3pwPj9mSEDI,1079
|
|
@@ -164,7 +167,7 @@ machineconfig/scripts/python/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_
|
|
|
164
167
|
machineconfig/scripts/python/ftpx.py,sha256=QfQTp-6jQP6yxfbLc5sKxiMtTgAgc8sjN7d17_uLiZc,9400
|
|
165
168
|
machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
|
|
166
169
|
machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
|
|
167
|
-
machineconfig/scripts/python/interactive.py,sha256=
|
|
170
|
+
machineconfig/scripts/python/interactive.py,sha256=PfZXWbNGyG4krEGnuYQyP1sS7NjVqF13GP6wwtU-Lnw,13538
|
|
168
171
|
machineconfig/scripts/python/mount_nfs.py,sha256=aECrL64j9g-9rF49sVJAjGmzaoGgcMnl3g9v17kQF4c,3239
|
|
169
172
|
machineconfig/scripts/python/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
170
173
|
machineconfig/scripts/python/mount_ssh.py,sha256=k2fKq3f5dKq_7anrFOlqvJoI_3U4EWNHLRZ1o3Lsy6M,2268
|
|
@@ -191,11 +194,11 @@ machineconfig/scripts/python/wsl_windows_transfer.py,sha256=534zlYe3Xsr0mqegAnZr
|
|
|
191
194
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
195
|
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
193
196
|
machineconfig/scripts/python/ai/initai.py,sha256=FJriMm1-x44xx6yEnqgI-F5lfRw44xleOluv4TcRs0I,2237
|
|
194
|
-
machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=
|
|
195
|
-
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=
|
|
197
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.ps1,sha256=usx-yFmqJhiNPHAh0KfKSsyrjh_SlGWVCvlB1OWsHrM,5175
|
|
198
|
+
machineconfig/scripts/python/ai/scripts/lint_and_type_check.sh,sha256=xYJ2sFSXc4_QGJs3mDz7zedqerlHufQgrK9JRpct5_s,4716
|
|
196
199
|
machineconfig/scripts/python/ai/solutions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
200
|
machineconfig/scripts/python/ai/solutions/_shared.py,sha256=rBniovmKZuY48T50cCyG_oeFZgSap365EXEadv9UtM4,603
|
|
198
|
-
machineconfig/scripts/python/ai/solutions/generic.py,sha256=
|
|
201
|
+
machineconfig/scripts/python/ai/solutions/generic.py,sha256=ebTXBTcnGkTCUnvRW55yTuNGeQtAmY7Gh27fwF6Yaqk,2321
|
|
199
202
|
machineconfig/scripts/python/ai/solutions/claude/claude.py,sha256=tVMdaOL_9jC1nvfPsJs9WRkPPNa2tQVyq4vxdpOPK6k,343
|
|
200
203
|
machineconfig/scripts/python/ai/solutions/cline/cline.py,sha256=3nYdEmdk76sYerEvImEDi3Qi-n94ExFkg20HttI7iCc,446
|
|
201
204
|
machineconfig/scripts/python/ai/solutions/copilot/github_copilot.py,sha256=spuPpENX_lZIBiANQq9eTxefoPBE2Ao_LEY16ZCaUQY,1890
|
|
@@ -203,8 +206,8 @@ machineconfig/scripts/python/ai/solutions/copilot/privacy.md,sha256=QeEU3P1tVBeG
|
|
|
203
206
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
204
207
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
205
208
|
machineconfig/scripts/python/ai/solutions/copilot/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
206
|
-
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=
|
|
207
|
-
machineconfig/scripts/python/ai/solutions/copilot/prompts/
|
|
209
|
+
machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md,sha256=heoUNQ55Uwbs0rO-gAuydkdc9Fld9Ip8zxAl7d7f_jA,4488
|
|
210
|
+
machineconfig/scripts/python/ai/solutions/copilot/prompts/pyright_fix.md,sha256=a3tMb-t0jmC02OAQZSRBEuiccB-osBvgAIOSBXqC5JQ,544
|
|
208
211
|
machineconfig/scripts/python/ai/solutions/copilot/prompts/research-report-skeleton.prompt.md,sha256=VJboe6_ynLAcxml8tgOQCN-6ecJY3hraEneKILQkNis,668
|
|
209
212
|
machineconfig/scripts/python/ai/solutions/crush/crush.json,sha256=2hhWLBtAroKO0dboksWIIV6s5XISDgzSMkPg8L9hSK4,5652
|
|
210
213
|
machineconfig/scripts/python/ai/solutions/crush/crush.py,sha256=-Oxny7iaAPrR_vjRSzPXf1rPfx5lmKETaLrrqFApoGE,829
|
|
@@ -220,7 +223,7 @@ machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=GA-bxXouUmknk9fyQAs
|
|
|
220
223
|
machineconfig/scripts/python/helpers/helpers2.py,sha256=2QeQ2aii6hVc4S-oi3SVTSyPxKPTDUWBD7GnkCEr7Qs,7304
|
|
221
224
|
machineconfig/scripts/python/helpers/helpers4.py,sha256=iKR5vVJygaDIpFXhcdma9jOpyxKtUhmqcmalFxJmY0w,4749
|
|
222
225
|
machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
223
|
-
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=
|
|
226
|
+
machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=im-VaWde7zdQlxUVxLE2KqBG_y8kyoDXc85kl9CvNOA,3427
|
|
224
227
|
machineconfig/scripts/windows/agents.ps1,sha256=DqdrC_Xc2rwQ6kGzT0xh5CJz4B_0p5ZwB7s8XE6rPCM,77
|
|
225
228
|
machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=LiXJ0a4LKjb6E-oH_bAg6DjegV4SqDUdiMp_svGCFlI,95
|
|
226
229
|
machineconfig/scripts/windows/cloud_copy.ps1,sha256=llTFhN2uInZTcoZYZuuhJcf5Ifo5MF226I5MpOzvc3A,82
|
|
@@ -249,7 +252,7 @@ machineconfig/scripts/windows/scheduler.ps1,sha256=YfOlBxCkPfeQPeyCiNw0g3kIpdbjj
|
|
|
249
252
|
machineconfig/scripts/windows/sessions.ps1,sha256=cQdgSS3rVWvhthsUi5lyFI05_GKiRGI-j4FB1SZNKpM,80
|
|
250
253
|
machineconfig/scripts/windows/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
251
254
|
machineconfig/scripts/windows/share_nfs.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
machineconfig/scripts/windows/share_smb.ps1,sha256=
|
|
255
|
+
machineconfig/scripts/windows/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
253
256
|
machineconfig/scripts/windows/snapshot.ps1,sha256=dSHwz8LRTe446lU9BkjiugBMWRS384L_-_qmpPr11v4,80
|
|
254
257
|
machineconfig/scripts/windows/start_slidev.ps1,sha256=jow4mcguhuCFiUaOkHYUpq9EFKkgs5fp8G2rVMyVcR4,83
|
|
255
258
|
machineconfig/scripts/windows/start_terminals.ps1,sha256=qoQNkv8waF2ZvfIIuUt8ZXdr2v2It2MPuzQj2ZQ5ToI,87
|
|
@@ -363,17 +366,17 @@ machineconfig/setup_linux/apps.sh,sha256=0PdPojpj2B-wOxE6ryvguKwBvL6vEt-43A1Ndnw
|
|
|
363
366
|
machineconfig/setup_linux/apps_desktop.sh,sha256=nBt_24tbdgKYK68w15ZiktgcEEJ7ytLoPWIrDluTkIQ,5077
|
|
364
367
|
machineconfig/setup_linux/apps_gui.sh,sha256=ufsCqmShc8G3XyKBmchD1tJ85FZYjSDY2yiE_0Rl7v4,3031
|
|
365
368
|
machineconfig/setup_linux/repos.sh,sha256=VHrMMadbu__P94eF5SRpy1OeXm1fNjAxFJjITioxKXQ,476
|
|
366
|
-
machineconfig/setup_linux/ve.sh,sha256=
|
|
369
|
+
machineconfig/setup_linux/ve.sh,sha256=VxjGbRif_I4hZ9vogOZYxQhFGqX91zlvVfELvvqRwB8,487
|
|
367
370
|
machineconfig/setup_linux/nix/cli_installation.sh,sha256=AQ_wRmldeD1tPqCmU7qgz9ZrZFly4OYwBJDGRpb9IJ0,5470
|
|
368
371
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
369
372
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
370
373
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
371
374
|
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
372
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
375
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=PHi3mlEJcEAH_aIYZIceDswkfEzt7qJqE35wnbOnecA,219
|
|
373
376
|
machineconfig/setup_windows/__init__.py,sha256=M8DFE3a4BW7-EAH9-F0F6U3WfYMF8wiLfXf9f3Mv2Go,438
|
|
374
377
|
machineconfig/setup_windows/apps.ps1,sha256=G5GqZ9G0aiQr_A-HaahtRdzpaTTdW6n3DRKMZWDTSPc,11214
|
|
375
378
|
machineconfig/setup_windows/repos.ps1,sha256=gIQBOLIh65oUXgSjYMeYeD6lU1Bu80LZ59xqRc3T3BA,918
|
|
376
|
-
machineconfig/setup_windows/ve.ps1,sha256=
|
|
379
|
+
machineconfig/setup_windows/ve.ps1,sha256=hYawJUKBAujEIYaORr4-OaFagTfnz0l-nVd_s7APZPI,310
|
|
377
380
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
378
381
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
379
382
|
machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhmNpuM0hgXTQgVJmIRR_7sdcY,182
|
|
@@ -381,7 +384,7 @@ machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=7FopRdNn8hQbst4Cq_T1qo
|
|
|
381
384
|
machineconfig/setup_windows/ssh/openssh-server_add-sshkey.ps1,sha256=qiNC02kzUZi6KBV7O-nRQ7pQ0OGixbq-rUvSCQ7TVxc,1656
|
|
382
385
|
machineconfig/setup_windows/ssh/openssh-server_add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
383
386
|
machineconfig/setup_windows/ssh/openssh_all.ps1,sha256=-mBGNRJSxsY6Z3gFMwIoL_3poj943acjfzXwGo2YFu4,864
|
|
384
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
387
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=VSw7JlTUAI8hflz4lyCqsRt2nMwGC2HyxrgQ2hhXhIs,328
|
|
385
388
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
386
389
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
387
390
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -397,7 +400,7 @@ machineconfig/utils/path_helper.py,sha256=0e3Xh3BAEv27oqcezNeVLHJllGmLEgLH4T1l90
|
|
|
397
400
|
machineconfig/utils/procs.py,sha256=w75oGKfR7FpT1pGTGd2XscnEOO0IHBWxohLbi69hLqg,11418
|
|
398
401
|
machineconfig/utils/scheduler.py,sha256=GbprwuxoJYdtkCsg7JZPXM8un9Z7v9tPjUoQjtS0oHU,14955
|
|
399
402
|
machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
|
|
400
|
-
machineconfig/utils/source_of_truth.py,sha256=
|
|
403
|
+
machineconfig/utils/source_of_truth.py,sha256=G3incuMzxOY1HjhNKIFnIRk-r7QGyZ6xYj0JLhCCh0A,842
|
|
401
404
|
machineconfig/utils/ssh.py,sha256=wIoIdeeTYCLvfdtFojUrKTlMRKUdf-eMqYae6g915w0,20666
|
|
402
405
|
machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
|
|
403
406
|
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
@@ -419,8 +422,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=pTxvLzIpD5RF
|
|
|
419
422
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
420
423
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
421
424
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
422
|
-
machineconfig-5.
|
|
423
|
-
machineconfig-5.
|
|
424
|
-
machineconfig-5.
|
|
425
|
-
machineconfig-5.
|
|
426
|
-
machineconfig-5.
|
|
425
|
+
machineconfig-5.24.dist-info/METADATA,sha256=x_ppEl8FlOooPs2RGCfTOQt_5FSR_WO88KVwe1S9-sU,2670
|
|
426
|
+
machineconfig-5.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
427
|
+
machineconfig-5.24.dist-info/entry_points.txt,sha256=2afE1mw-o4MUlfxyX73SV02XaQI4SV_LdL2r6_CzhPU,1074
|
|
428
|
+
machineconfig-5.24.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
429
|
+
machineconfig-5.24.dist-info/RECORD,,
|