machineconfig 7.39__py3-none-any.whl → 7.46__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/jobs/installer/custom/hx.py +60 -8
- machineconfig/jobs/installer/installer_data.json +51 -0
- machineconfig/jobs/installer/package_groups.py +6 -5
- machineconfig/profile/create_helper.py +53 -17
- machineconfig/profile/create_links_export.py +8 -5
- machineconfig/profile/mapper.toml +5 -0
- machineconfig/scripts/python/croshell.py +4 -4
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/explore.py +49 -0
- machineconfig/scripts/python/helpers_devops/cli_config.py +2 -1
- machineconfig/scripts/python/helpers_devops/cli_nw.py +7 -6
- machineconfig/scripts/python/helpers_devops/cli_repos.py +1 -1
- machineconfig/scripts/python/helpers_devops/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +137 -0
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +62 -166
- machineconfig/scripts/python/helpers_devops/cli_utils.py +26 -30
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_repos/grource.py +1 -1
- machineconfig/scripts/python/utils.py +3 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/broot/conf.toml +1 -1
- machineconfig/settings/helix/config.toml +16 -0
- machineconfig/settings/helix/languages.toml +13 -4
- machineconfig/settings/helix/yazi-picker.sh +12 -0
- machineconfig/settings/lf/linux/exe/lfcd.sh +1 -0
- machineconfig/settings/lf/linux/exe/previewer.sh +3 -2
- machineconfig/settings/shells/bash/init.sh +4 -3
- machineconfig/settings/shells/pwsh/init.ps1 +4 -3
- machineconfig/settings/shells/zsh/init.sh +17 -12
- machineconfig/settings/yazi/init.lua +36 -0
- machineconfig/settings/yazi/keymap.toml +79 -0
- machineconfig/settings/yazi/shell/yazi_cd.ps1 +9 -0
- machineconfig/settings/yazi/shell/yazi_cd.sh +8 -0
- machineconfig/settings/yazi/yazi.toml +13 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/apps.ps1 +2 -2
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-7.39.dist-info → machineconfig-7.46.dist-info}/METADATA +1 -1
- {machineconfig-7.39.dist-info → machineconfig-7.46.dist-info}/RECORD +44 -38
- {machineconfig-7.39.dist-info → machineconfig-7.46.dist-info}/entry_points.txt +1 -0
- {machineconfig-7.39.dist-info → machineconfig-7.46.dist-info}/WHEEL +0 -0
- {machineconfig-7.39.dist-info → machineconfig-7.46.dist-info}/top_level.txt +0 -0
|
@@ -23,7 +23,7 @@ CONFIG_ROOT="$HOME/.config/machineconfig"
|
|
|
23
23
|
|
|
24
24
|
# 📂 Add directories to PATH
|
|
25
25
|
add_to_path_if_not_already \
|
|
26
|
-
"$CONFIG_ROOT/scripts
|
|
26
|
+
"$CONFIG_ROOT/scripts" \
|
|
27
27
|
"$HOME/dotfiles/scripts/linux" \
|
|
28
28
|
"$HOME/.local/bin" \
|
|
29
29
|
"$HOME/.cargo/bin" \
|
|
@@ -37,7 +37,8 @@ add_to_path_if_not_already \
|
|
|
37
37
|
. $CONFIG_ROOT/settings/broot/br.sh
|
|
38
38
|
. $CONFIG_ROOT/settings/lf/linux/exe/lfcd.sh
|
|
39
39
|
. $CONFIG_ROOT/settings/tere/terecd.sh
|
|
40
|
-
. $CONFIG_ROOT/
|
|
40
|
+
. $CONFIG_ROOT/settings/yazi/shell/yazi_cd.sh
|
|
41
|
+
. $CONFIG_ROOT/scripts/wrap_mcfg
|
|
41
42
|
|
|
42
43
|
# check if file in ~/dotfiles/machineconfig/init_linux.sh exists and source it
|
|
43
44
|
if [ -f "$HOME/dotfiles/machineconfig/init_linux.sh" ]; then
|
|
@@ -56,7 +57,7 @@ alias r='wrap_in_shell_script croshell'
|
|
|
56
57
|
alias u='wrap_in_shell_script utils'
|
|
57
58
|
alias t='wrap_in_shell_script terminal'
|
|
58
59
|
alias ms='wrap_in_shell_script msearch'
|
|
59
|
-
|
|
60
|
+
alias x='. $CONFIG_ROOT/scripts/linux/wrap_mcfg explore'
|
|
60
61
|
|
|
61
62
|
# alias gcs='gh copilot suggest -t shell'
|
|
62
63
|
# alias gcg='gh copilot suggest -t git'
|
|
@@ -15,7 +15,7 @@ function Add-ToPathIfNotAlready {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
Add-ToPathIfNotAlready -Directories @(
|
|
18
|
-
"$CONFIG_ROOT\scripts
|
|
18
|
+
"$CONFIG_ROOT\scripts",
|
|
19
19
|
"$HOME\dotfiles\scripts\windows",
|
|
20
20
|
"C:\Program Files (x86)\GnuWin32\bin",
|
|
21
21
|
"C:\Program Files\CodeBlocks\MinGW\bin",
|
|
@@ -24,11 +24,12 @@ Add-ToPathIfNotAlready -Directories @(
|
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
# sources ================================================================
|
|
27
|
-
if (Test-Path "$CONFIG_ROOT\scripts\
|
|
27
|
+
if (Test-Path "$CONFIG_ROOT\scripts\wrap_mcfg.ps1") {
|
|
28
28
|
. $CONFIG_ROOT\settings\broot\brootcd.ps1
|
|
29
29
|
. $CONFIG_ROOT\settings\lf\windows\lfcd.ps1
|
|
30
30
|
. $CONFIG_ROOT\settings\tere\terecd.ps1
|
|
31
|
-
. $CONFIG_ROOT\
|
|
31
|
+
. $CONFIG_ROOT\settings\yazi\shell\yazi_cd.ps1
|
|
32
|
+
. $CONFIG_ROOT\scripts\wrap_mcfg.ps1
|
|
32
33
|
|
|
33
34
|
function lsdla { lsd -la }
|
|
34
35
|
Set-Alias -Name l -Value lsdla -Option AllScope
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/bin/
|
|
1
|
+
#!/bin/zsh
|
|
2
2
|
# Record script start time for runtime measurement
|
|
3
3
|
# _START_TIME_NS=$(date +%s%N)
|
|
4
4
|
# _show_elapsed() {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
# printf "Script runtime: %d.%03d seconds\n" "$_secs" "$_ms"
|
|
11
11
|
# }
|
|
12
12
|
|
|
13
|
-
# 🛠️
|
|
13
|
+
# 🛠️ Zsh Shell Configuration and Initialization
|
|
14
14
|
|
|
15
15
|
add_to_path_if_not_already() {
|
|
16
16
|
for dir in "$@"; do
|
|
@@ -23,7 +23,7 @@ CONFIG_ROOT="$HOME/.config/machineconfig"
|
|
|
23
23
|
|
|
24
24
|
# 📂 Add directories to PATH
|
|
25
25
|
add_to_path_if_not_already \
|
|
26
|
-
"$CONFIG_ROOT/scripts
|
|
26
|
+
"$CONFIG_ROOT/scripts" \
|
|
27
27
|
"$HOME/dotfiles/scripts/linux" \
|
|
28
28
|
"$HOME/.local/bin" \
|
|
29
29
|
"$HOME/.cargo/bin" \
|
|
@@ -37,22 +37,27 @@ add_to_path_if_not_already \
|
|
|
37
37
|
. $CONFIG_ROOT/settings/broot/br.sh
|
|
38
38
|
. $CONFIG_ROOT/settings/lf/linux/exe/lfcd.sh
|
|
39
39
|
. $CONFIG_ROOT/settings/tere/terecd.sh
|
|
40
|
+
. $CONFIG_ROOT/settings/yazi/shell/yazi_cd.sh
|
|
41
|
+
. $CONFIG_ROOT/scripts/wrap_mcfg
|
|
42
|
+
|
|
40
43
|
# check if file in ~/dotfiles/machineconfig/init_linux.sh exists and source it
|
|
41
44
|
if [ -f "$HOME/dotfiles/machineconfig/init_linux.sh" ]; then
|
|
42
45
|
# echo "Sourcing $HOME/dotfiles/machineconfig/init_linux.sh"
|
|
43
46
|
source "$HOME/dotfiles/machineconfig/init_linux.sh"
|
|
44
47
|
fi
|
|
45
48
|
|
|
46
|
-
# set alias l to lsd -la
|
|
47
49
|
alias l='lsd -la'
|
|
48
|
-
alias d=devops
|
|
49
|
-
alias c=cloud
|
|
50
|
-
alias a=agents
|
|
51
|
-
alias s=sessions
|
|
52
|
-
alias
|
|
53
|
-
alias f=fire
|
|
54
|
-
alias r=croshell
|
|
55
|
-
alias u=utils
|
|
50
|
+
alias d='wrap_in_shell_script devops'
|
|
51
|
+
alias c='wrap_in_shell_script cloud'
|
|
52
|
+
alias a='wrap_in_shell_script agents'
|
|
53
|
+
alias s='wrap_in_shell_script sessions'
|
|
54
|
+
alias fx='wrap_in_shell_script ftpx'
|
|
55
|
+
alias f='wrap_in_shell_script fire'
|
|
56
|
+
alias r='wrap_in_shell_script croshell'
|
|
57
|
+
alias u='wrap_in_shell_script utils'
|
|
58
|
+
alias t='wrap_in_shell_script terminal'
|
|
59
|
+
alias ms='wrap_in_shell_script msearch'
|
|
60
|
+
alias x='. $CONFIG_ROOT/scripts/linux/wrap_mcfg explore'
|
|
56
61
|
|
|
57
62
|
# alias gcs='gh copilot suggest -t shell'
|
|
58
63
|
# alias gcg='gh copilot suggest -t git'
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
-- https://yazi-rs.github.io/docs/tips#symlink-in-status
|
|
4
|
+
Status:children_add(function(self)
|
|
5
|
+
local h = self._current.hovered
|
|
6
|
+
if h and h.link_to then
|
|
7
|
+
return " -> " .. tostring(h.link_to)
|
|
8
|
+
else
|
|
9
|
+
return ""
|
|
10
|
+
end
|
|
11
|
+
end, 3300, Status.LEFT)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
-- https://yazi-rs.github.io/docs/tips#user-group-in-status
|
|
15
|
+
Status:children_add(function()
|
|
16
|
+
local h = cx.active.current.hovered
|
|
17
|
+
if not h or ya.target_family() ~= "unix" then
|
|
18
|
+
return ""
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
return ui.Line {
|
|
22
|
+
ui.Span(ya.user_name(h.cha.uid) or tostring(h.cha.uid)):fg("magenta"),
|
|
23
|
+
":",
|
|
24
|
+
ui.Span(ya.group_name(h.cha.gid) or tostring(h.cha.gid)):fg("magenta"),
|
|
25
|
+
" ",
|
|
26
|
+
}
|
|
27
|
+
end, 500, Status.RIGHT)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
-- https://yazi-rs.github.io/docs/tips#username-hostname-in-header
|
|
31
|
+
Header:children_add(function()
|
|
32
|
+
if ya.target_family() ~= "unix" then
|
|
33
|
+
return ""
|
|
34
|
+
end
|
|
35
|
+
return ui.Span(ya.user_name() .. "@" .. ya.host_name() .. ":"):fg("blue")
|
|
36
|
+
end, 500, Header.LEFT)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
|
|
2
|
+
[[mgr.prepend_keymap]]
|
|
3
|
+
on = "!"
|
|
4
|
+
for = "unix"
|
|
5
|
+
run = 'shell "$SHELL" --block'
|
|
6
|
+
desc = "Open $SHELL here"
|
|
7
|
+
|
|
8
|
+
# If you also using Yazi on Windows:
|
|
9
|
+
[[mgr.prepend_keymap]]
|
|
10
|
+
on = "!"
|
|
11
|
+
for = "windows"
|
|
12
|
+
run = 'shell "powershell.exe" --block'
|
|
13
|
+
desc = "Open PowerShell here"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# FROM https://github.com/yazi-rs/plugins/tree/main/toggle-pane.yazi
|
|
17
|
+
# keymap.toml
|
|
18
|
+
# parent, current, preview
|
|
19
|
+
[[mgr.prepend_keymap]]
|
|
20
|
+
on = "T"
|
|
21
|
+
run = "plugin toggle-pane min-preview"
|
|
22
|
+
desc = "Show or hide the preview pane"
|
|
23
|
+
# keymap.toml
|
|
24
|
+
[[mgr.prepend_keymap]]
|
|
25
|
+
on = "T"
|
|
26
|
+
run = "plugin toggle-pane max-preview"
|
|
27
|
+
desc = "Maximize or restore the preview pane"
|
|
28
|
+
|
|
29
|
+
[[mgr.prepend_keymap]]
|
|
30
|
+
on = "M" # whatever key you choose
|
|
31
|
+
run = "plugin toggle-pane"
|
|
32
|
+
desc = "Toggle preview pane / maximize pane"
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# https://yazi-rs.github.io/docs/tips#macos-quick-look
|
|
36
|
+
[[mgr.prepend_keymap]]
|
|
37
|
+
on = "<C-p>"
|
|
38
|
+
run = 'shell -- qlmanage -p "$@"'
|
|
39
|
+
|
|
40
|
+
[[mgr.prepend_keymap]]
|
|
41
|
+
on = "F"
|
|
42
|
+
run = 'shell --block -- ~/.config/machineconfig/scripts/wrap_mcfg fire "$0"'
|
|
43
|
+
desc = "Run fire on hovered file"
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
[[mgr.prepend_keymap]]
|
|
47
|
+
on = [ "g", "r" ]
|
|
48
|
+
run = 'shell -- ya emit cd "$(git rev-parse --show-toplevel)"'
|
|
49
|
+
desc = "go to repo root"
|
|
50
|
+
|
|
51
|
+
[[mgr.prepend_keymap]]
|
|
52
|
+
on = ["R", "v"]
|
|
53
|
+
run = 'shell -- code "$0"'
|
|
54
|
+
desc = "Read with vscode"
|
|
55
|
+
|
|
56
|
+
[[mgr.prepend_keymap]]
|
|
57
|
+
on = ["R", "h"]
|
|
58
|
+
run = 'shell --block -- ~/.config/machineconfig/scripts/wrap_mcfg utils edit "$0"'
|
|
59
|
+
desc = "Read with helix"
|
|
60
|
+
|
|
61
|
+
[[mgr.prepend_keymap]]
|
|
62
|
+
on = ["R", "c"]
|
|
63
|
+
run = 'shell --block -- ~/.config/machineconfig/scripts/wrap_mcfg croshell "$0"'
|
|
64
|
+
desc = "Read with croshell"
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
[[mgr.prepend_keymap]]
|
|
68
|
+
on = ["R", "f"]
|
|
69
|
+
run = 'shell --block -- ~/.config/machineconfig/scripts/wrap_mcfg fire "$0"'
|
|
70
|
+
desc = "Read with fire"
|
|
71
|
+
|
|
72
|
+
[[mgr.prepend_keymap]]
|
|
73
|
+
on = ["R", "F"]
|
|
74
|
+
run = 'shell --block -- ~/.config/machineconfig/scripts/wrap_mcfg fire -i "$0"'
|
|
75
|
+
desc = "Read with fire interactively"
|
|
76
|
+
|
|
77
|
+
[[mgr.prepend_keymap]]
|
|
78
|
+
on = "y"
|
|
79
|
+
run = [ 'shell -- echo "$@" | cb cp0', "yank" ]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
function y {
|
|
2
|
+
$tmp = (New-TemporaryFile).FullName
|
|
3
|
+
yazi $args --cwd-file="$tmp"
|
|
4
|
+
$cwd = Get-Content -Path $tmp -Encoding UTF8
|
|
5
|
+
if (-not [String]::IsNullOrEmpty($cwd) -and $cwd -ne $PWD.Path) {
|
|
6
|
+
Set-Location -LiteralPath (Resolve-Path -LiteralPath $cwd).Path
|
|
7
|
+
}
|
|
8
|
+
Remove-Item -Path $tmp
|
|
9
|
+
}
|
|
@@ -2,3 +2,16 @@
|
|
|
2
2
|
[mgr]
|
|
3
3
|
show_hidden = true
|
|
4
4
|
ratio = [1, 3, 5]
|
|
5
|
+
|
|
6
|
+
[plugin]
|
|
7
|
+
dir = "~/.config/yazi/plugins"
|
|
8
|
+
|
|
9
|
+
[[plugin.load]]
|
|
10
|
+
name = "toggle-pane"
|
|
11
|
+
path = "toggle-pane.yazi"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
[preview]
|
|
15
|
+
# Change them to your desired values
|
|
16
|
+
max_width = 1000
|
|
17
|
+
max_height = 1000
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
3
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/linux/wrap_mcfg")
|
|
4
4
|
|
|
5
|
-
alias devops='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
6
|
-
alias cloud='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
7
|
-
alias agents='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
8
|
-
alias sessions='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
9
|
-
alias ftpx='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
10
|
-
alias fire='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
11
|
-
alias croshell='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
12
|
-
alias utils='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
13
|
-
alias terminal='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
14
|
-
alias msearch='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.
|
|
5
|
+
alias devops='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" devops'
|
|
6
|
+
alias cloud='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" cloud'
|
|
7
|
+
alias agents='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" agents'
|
|
8
|
+
alias sessions='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" sessions'
|
|
9
|
+
alias ftpx='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" ftpx'
|
|
10
|
+
alias fire='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" fire'
|
|
11
|
+
alias croshell='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" croshell'
|
|
12
|
+
alias utils='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" utils'
|
|
13
|
+
alias terminal='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" terminal'
|
|
14
|
+
alias msearch='$HOME/.local/bin/uvx --python 3.14 --from "machineconfig>=7.46" msearch'
|
|
15
15
|
|
|
16
16
|
alias d='wrap_in_shell_script devops'
|
|
17
17
|
alias c='wrap_in_shell_script cloud'
|
|
@@ -11,8 +11,8 @@ winget install --no-upgrade --name "Powershell" --Id "Microsof
|
|
|
11
11
|
winget install --no-upgrade --name "Git" --Id "Git.Git" --source winget --scope user --accept-package-agreements --accept-source-agreements
|
|
12
12
|
winget install --no-upgrade --name "Neovim" --Id "Neovim.Neovim" --source winget --scope user --accept-package-agreements --accept-source-agreements
|
|
13
13
|
winget install --no-upgrade --name "GNU Nano" --Id "GNU.Nano" --source winget --scope user --accept-package-agreements --accept-source-agreements
|
|
14
|
-
# winget install --no-upgrade
|
|
15
|
-
|
|
14
|
+
# winget install --no-upgrade --name "File" --Id "GnuWin32.File" --source winget --accept-package-agreements --accept-source-agreements
|
|
15
|
+
|
|
16
16
|
Install-Module -Name Terminal-Icons -Repository PSGallery -Force -AcceptLicense -PassThru -Confirm # -RequiredVersion 2.5.10
|
|
17
17
|
Install-Module -Name PSFzf -SkipPublisherCheck # -AcceptLicense -PassThru -Confirm # -RequiredVersion 2.5.10
|
|
18
18
|
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
4
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/scripts/windows/wrap_mcfg.ps1").Content
|
|
5
5
|
|
|
6
|
-
function devops { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
7
|
-
function cloud { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
8
|
-
function agents { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
9
|
-
function sessions { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
10
|
-
function ftpx { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
11
|
-
function fire { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
12
|
-
function croshell { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
13
|
-
function utils { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
14
|
-
function terminal { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
15
|
-
function msearch { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.
|
|
6
|
+
function devops { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" devops $args }
|
|
7
|
+
function cloud { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" cloud $args }
|
|
8
|
+
function agents { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" agents $args }
|
|
9
|
+
function sessions { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" sessions $args }
|
|
10
|
+
function ftpx { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" ftpx $args }
|
|
11
|
+
function fire { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" fire $args }
|
|
12
|
+
function croshell { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" croshell $args }
|
|
13
|
+
function utils { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" utils $args }
|
|
14
|
+
function terminal { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" terminal $args }
|
|
15
|
+
function msearch { & "$HOME\.local\bin\uvx.exe" --python 3.14 --from "machineconfig>=7.46" msearch $args }
|
|
16
16
|
|
|
17
17
|
function d { wrap_in_shell_script devops @args }
|
|
18
18
|
function c { wrap_in_shell_script cloud @args }
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -8,7 +8,7 @@ from machineconfig.utils.terminal import Response
|
|
|
8
8
|
from machineconfig.utils.accessories import pprint, randstr
|
|
9
9
|
from machineconfig.utils.meta import lambda_to_python_script
|
|
10
10
|
UV_RUN_CMD = "$HOME/.local/bin/uv run" if platform.system() != "Windows" else """& "$env:USERPROFILE/.local/bin/uv" run"""
|
|
11
|
-
MACHINECONFIG_VERSION = "machineconfig>=7.
|
|
11
|
+
MACHINECONFIG_VERSION = "machineconfig>=7.46"
|
|
12
12
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
13
13
|
|
|
14
14
|
class SSH:
|
|
@@ -51,11 +51,11 @@ machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQ
|
|
|
51
51
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
52
|
machineconfig/jobs/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
machineconfig/jobs/installer/check_installations.py,sha256=hkHmmT7Bx3_QWRn2v8dCKOzAapFzqHRzbe-Q08GLnKE,10743
|
|
54
|
-
machineconfig/jobs/installer/installer_data.json,sha256=
|
|
55
|
-
machineconfig/jobs/installer/package_groups.py,sha256=
|
|
54
|
+
machineconfig/jobs/installer/installer_data.json,sha256=WJ0v1f86duVBp945xm52m7-mNmgDer3DCUA-aluTxCA,83436
|
|
55
|
+
machineconfig/jobs/installer/package_groups.py,sha256=nRru-M8wiqdSs3U8TDOGFmA2xTV4gwFUeMJZ28xBrvw,5293
|
|
56
56
|
machineconfig/jobs/installer/custom/boxes.py,sha256=ws8QRbDn48oKhbQntr54I0nSfkwINbprjTy0HOpuX40,1974
|
|
57
57
|
machineconfig/jobs/installer/custom/gh.py,sha256=gn7TUSrsLx7uqFqj1Z-iYglS0EYBSgtJ9jWHxaJIfXM,4119
|
|
58
|
-
machineconfig/jobs/installer/custom/hx.py,sha256=
|
|
58
|
+
machineconfig/jobs/installer/custom/hx.py,sha256=c670AJYgTRS9QN0ooRt8oz3Cxwd9Fv16WpA4rCr7JL0,8728
|
|
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=kHgGRwgKrvpIlGzmdnWO6HJnSrnj8RlBEV_1Zz4s_Hw,2829
|
|
@@ -93,11 +93,11 @@ machineconfig/jobs/installer/powershell_scripts/openssh-server_copy-ssh-id.ps1,s
|
|
|
93
93
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
94
|
machineconfig/profile/backup.toml,sha256=Hb25sIdKVvLqOF62NgiOpGZxd45I6IhsNHu623RtfQQ,766
|
|
95
95
|
machineconfig/profile/bash_shell_profiles.md,sha256=mio0xkMTwO-F3fikWIfgcdQaPCmQrmkxJMNtZsTe9TI,514
|
|
96
|
-
machineconfig/profile/create_helper.py,sha256=
|
|
96
|
+
machineconfig/profile/create_helper.py,sha256=Iov9j_jJpZ5Vea9lFHPFgC1FINnZCO5QtEqGQwHkUYA,3001
|
|
97
97
|
machineconfig/profile/create_links.py,sha256=42U5dEu7fMnGBAqyhQ1VspFaZg3VssMMQSdpGEmpHnE,14199
|
|
98
|
-
machineconfig/profile/create_links_export.py,sha256=
|
|
98
|
+
machineconfig/profile/create_links_export.py,sha256=DNBdylSzDdBq_wAduIYbscpOWoTx_QVynOP27y0mklA,4444
|
|
99
99
|
machineconfig/profile/create_shell_profile.py,sha256=jjCwH3rNxVOcb9sgbZQsjYlKGfqhDvPxBDrkFLThT3c,7221
|
|
100
|
-
machineconfig/profile/mapper.toml,sha256=
|
|
100
|
+
machineconfig/profile/mapper.toml,sha256=oRy8wG7wubiFHrZmSKopsZleJg0UVwGorQrIwU5shUI,12779
|
|
101
101
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
102
102
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
103
103
|
machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
|
|
@@ -114,10 +114,11 @@ machineconfig/scripts/nu/wrap_mcfg.nu,sha256=9heiUHVkHjI_AMXT5QJJixk7ZK_hJNV_A8l
|
|
|
114
114
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
machineconfig/scripts/python/agents.py,sha256=aVbLQDgpngXZm4taHcED4sAxyHvV2_Dz5VW3apPcQcY,10651
|
|
116
116
|
machineconfig/scripts/python/cloud.py,sha256=yAD6ciKiEtv2CH3g2NScDK5cpCZQi7Vu8yyeehw_cU8,1263
|
|
117
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
117
|
+
machineconfig/scripts/python/croshell.py,sha256=bvB82BSQTTrW4BckEPhOY5gMCC75okzf3zyXWs9WgW0,8379
|
|
118
118
|
machineconfig/scripts/python/define.py,sha256=AtuVac6tJeDMcxtbWmQh1TH3dYAPSGFdO51b75zJVeI,717
|
|
119
119
|
machineconfig/scripts/python/devops.py,sha256=Lv4d-UlyOREj4VTcu_pxswYo54Mawe3XGeKjreGQDYg,2222
|
|
120
120
|
machineconfig/scripts/python/devops_navigator.py,sha256=5Cm384D4S8_GsvMzTwr0C16D0ktf8_5Mk5bEJncwDO8,237
|
|
121
|
+
machineconfig/scripts/python/explore.py,sha256=3kNglM1KYp57U8yrbWeHEslN458-xieRuFYsJAhrpIs,1247
|
|
121
122
|
machineconfig/scripts/python/fire_jobs.py,sha256=r_V5ZpZhE2-Hn_f5pvzbulUTl7_2S4AI_M71WlD4Vlw,13701
|
|
122
123
|
machineconfig/scripts/python/ftpx.py,sha256=A13hL_tDYfcsaK9PkshK-0lrUS6KPhPCtwqWtLSo6IM,9764
|
|
123
124
|
machineconfig/scripts/python/interactive.py,sha256=jFHpiQq_lisa51BS4-qUlWPJ1-pmHmPAfA6dixdsOzY,11745
|
|
@@ -125,7 +126,7 @@ machineconfig/scripts/python/machineconfig.py,sha256=l211lxHRcQ6BH7x3FwQHSJCYbYs
|
|
|
125
126
|
machineconfig/scripts/python/msearch.py,sha256=3NbwJFJtrvPSVyOfa6ogPjD-NVuRJHeAQ1WriDXCduU,737
|
|
126
127
|
machineconfig/scripts/python/sessions.py,sha256=Q_fbprawvW1x_E6jKQ-Z2Z5MRurRaepKUvi5z1G4CUw,9531
|
|
127
128
|
machineconfig/scripts/python/terminal.py,sha256=PQ2C2flC2UngfeTNYhHLBiwj__kmE12gxZu2ivtr4Kg,5978
|
|
128
|
-
machineconfig/scripts/python/utils.py,sha256=
|
|
129
|
+
machineconfig/scripts/python/utils.py,sha256=WHf7ahRjAW7dOfjJ83hpsWe5F-If-IdJCBMzTYSPbdM,3149
|
|
129
130
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
131
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
131
132
|
machineconfig/scripts/python/ai/initai.py,sha256=P4-NCLJPWeNef_k-l4TQ92AB1Xm1k3xzdqSBIjmevnQ,1573
|
|
@@ -158,7 +159,7 @@ machineconfig/scripts/python/ai/solutions/opencode/opencode.json,sha256=nahHKRw1
|
|
|
158
159
|
machineconfig/scripts/python/ai/solutions/opencode/opencode.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
159
160
|
machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
|
|
160
161
|
machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
|
|
161
|
-
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=
|
|
162
|
+
machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=VvwAy5jcIn5weNt9fKXF-uz2xFaxfVfcmH809L8Me0Q,6932
|
|
162
163
|
machineconfig/scripts/python/helpers_agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
164
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_launch.py,sha256=YD6-rtudHNip8tx85amSmOZZIHBP9khq4az3dF41j6U,5934
|
|
164
165
|
machineconfig/scripts/python/helpers_agents/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
@@ -188,15 +189,16 @@ machineconfig/scripts/python/helpers_croshell/start_slidev.py,sha256=HfJReOusTPh
|
|
|
188
189
|
machineconfig/scripts/python/helpers_croshell/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
189
190
|
machineconfig/scripts/python/helpers_croshell/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
190
191
|
machineconfig/scripts/python/helpers_devops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=
|
|
192
|
+
machineconfig/scripts/python/helpers_devops/cli_config.py,sha256=wisKd7KdlYb6bEkH-wwhQA4q2EgeJio8N4CfrCRVrec,5922
|
|
192
193
|
machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py,sha256=SL6P3Ioib3P9OWG1GmULb5-l4ySYZ1RuuIDCHY4lCyU,3502
|
|
193
194
|
machineconfig/scripts/python/helpers_devops/cli_data.py,sha256=79Xvx7YnbueruEnl69hrDg2AhVxf_zCUdlVcKfeMGyQ,1774
|
|
194
|
-
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=
|
|
195
|
-
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=
|
|
196
|
-
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=
|
|
197
|
-
machineconfig/scripts/python/helpers_devops/
|
|
195
|
+
machineconfig/scripts/python/helpers_devops/cli_nw.py,sha256=u_2l5Cc3dFnh0seKrbH9j-Z0bUCrgy45MOM6HCjgkQg,7562
|
|
196
|
+
machineconfig/scripts/python/helpers_devops/cli_repos.py,sha256=mFrhosIFCCT70d82NYUxp9ta6BYeAHQNhsx7CEmWcg4,12478
|
|
197
|
+
machineconfig/scripts/python/helpers_devops/cli_self.py,sha256=EmSzgMn2g8Btm15gBW9vRc4VFoSIiyytv-3HRU7OjDY,6515
|
|
198
|
+
machineconfig/scripts/python/helpers_devops/cli_share_file.py,sha256=AL04784ncdP9ue5bKyqJfXrMksxjFKtuv_w353kQQsI,6298
|
|
199
|
+
machineconfig/scripts/python/helpers_devops/cli_share_server.py,sha256=S2xQ7sDVvfvGKcJNlquXj9Gc0ofk2EXnfvpRx2AWVD8,6278
|
|
198
200
|
machineconfig/scripts/python/helpers_devops/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
199
|
-
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=
|
|
201
|
+
machineconfig/scripts/python/helpers_devops/cli_utils.py,sha256=E3UAqqna7rZD7u6j4K997trVPfR-e5x7uPCZANE63IY,11138
|
|
200
202
|
machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py,sha256=Dn8luB6QJzxKiiFSC-NMqiYddWZoca3A8eOjMYZDzTc,5598
|
|
201
203
|
machineconfig/scripts/python/helpers_devops/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
|
|
202
204
|
machineconfig/scripts/python/helpers_devops/devops_update_repos.py,sha256=kSln8_-Wn7Qu0NaKdt-QTN_bBVyTIAWHH8xVYKK-vCM,10133
|
|
@@ -229,11 +231,11 @@ machineconfig/scripts/python/helpers_navigator/search_bar.py,sha256=kDi8Jhxap8wd
|
|
|
229
231
|
machineconfig/scripts/python/helpers_repos/action.py,sha256=8je051kpGZ7A_GRsQyWKhPZ8xVW7tSm4bnPu6VjxaXk,9755
|
|
230
232
|
machineconfig/scripts/python/helpers_repos/action_helper.py,sha256=XRCtkGkNrxauqUd9qkxtfJt02Mx2gejSYDLL0jyWn24,6176
|
|
231
233
|
machineconfig/scripts/python/helpers_repos/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
232
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
234
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=WVKlidI3iuQyg0rJSUsgrUamvgWiuqXEJZjkzCcwmu4,11271
|
|
233
235
|
machineconfig/scripts/python/helpers_repos/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
234
|
-
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=
|
|
236
|
+
machineconfig/scripts/python/helpers_repos/count_lines_frontend.py,sha256=wjm0sGTP_J1875a8tytSQTT7PhFOfTNq2COLbD3GxrA,607
|
|
235
237
|
machineconfig/scripts/python/helpers_repos/entrypoint.py,sha256=WYEFGUJp9HWImlFjbs_hiFZrUqM_KEYm5VvSUjWd04I,2810
|
|
236
|
-
machineconfig/scripts/python/helpers_repos/grource.py,sha256=
|
|
238
|
+
machineconfig/scripts/python/helpers_repos/grource.py,sha256=lHxyfsIQr4pbu71Ekqu-9nohR7LXbN2wufw7LPTyOgM,14639
|
|
237
239
|
machineconfig/scripts/python/helpers_repos/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
|
|
238
240
|
machineconfig/scripts/python/helpers_repos/sync.py,sha256=P0P7Dog2uFDvwxcLP3YHPwm6AtvCm6QOz1BLqw53xOo,3259
|
|
239
241
|
machineconfig/scripts/python/helpers_repos/update.py,sha256=cUIMUMm-50HrY6fzxSMZnFplhToVjVPZMm1j_otTha4,11060
|
|
@@ -259,18 +261,19 @@ machineconfig/scripts/windows/wrap_mcfg.ps1,sha256=tFCj4wK7B35Uf6kdGCRV7EIr1xZFT
|
|
|
259
261
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
260
262
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
261
263
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
262
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
264
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=Di2uDlhsS4x2KwCIgSrplxgaaiUPSUTwv2g18RxOMhU,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
|
|
266
268
|
machineconfig/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
269
|
machineconfig/settings/broot/br.sh,sha256=7CCJflIAirkiuo1suDCT8BzhVzDdJWEfbAxNDG4VPSI,1455
|
|
268
270
|
machineconfig/settings/broot/brootcd.ps1,sha256=BB8uGnoVywxFWSgwsHxlbS8V4W_Qom3L1SedekGpgWA,877
|
|
269
|
-
machineconfig/settings/broot/conf.toml,sha256
|
|
271
|
+
machineconfig/settings/broot/conf.toml,sha256=-skF2U0iojMZ2OD-3HViWAkyNKonfcvdZKF6LZKck34,56
|
|
270
272
|
machineconfig/settings/glow/glow.yml,sha256=59eFsIPBXRgJSVb6kcA7XHkWuLe0_wNandhc9KGykmE,245
|
|
271
273
|
machineconfig/settings/gromit-mpx/gromit-mpx.cfg,sha256=NW7a4OmGPpMCiFkQNNFNdUf5VqL1DN8Tkiz2oVRt7Gw,1067
|
|
272
|
-
machineconfig/settings/helix/config.toml,sha256=
|
|
273
|
-
machineconfig/settings/helix/languages.toml,sha256=
|
|
274
|
+
machineconfig/settings/helix/config.toml,sha256=uXHZEP1t3SeF9HYuRoWHrwnLyjTmJdw0S607Ej4tVY4,1352
|
|
275
|
+
machineconfig/settings/helix/languages.toml,sha256=l0OYgoKvlyed15BDdcd4dTH6BzydhHMjgvRJ9W8MvE4,874
|
|
276
|
+
machineconfig/settings/helix/yazi-picker.sh,sha256=1uFyRFwaIRuZKwrfxhryHw0TSj5Myiv5INmgJfgLOkA,352
|
|
274
277
|
machineconfig/settings/keras/keras.json,sha256=uSJa-eCun6xl6xvlVP-totLgWDw7etCMzxZT5jS2mgw,115
|
|
275
278
|
machineconfig/settings/keyboard/espanso/config/default.yml,sha256=RBIuA4AsAWB8BoRojQhbkVV0LtjL0sYFPaLtgbWookM,1685
|
|
276
279
|
machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42WqGLCZkwi5l8LmbDUuBO8XV_jIQ,1567
|
|
@@ -288,8 +291,8 @@ machineconfig/settings/lf/linux/autocall/rename.sh,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
288
291
|
machineconfig/settings/lf/linux/exe/cleaner.sh,sha256=NKK30rUcrHXnwy8srylyaWL-XJdDWJIjF4a3mfbdEsA,209
|
|
289
292
|
machineconfig/settings/lf/linux/exe/fzf_nano.sh,sha256=aqYZ2mb-gLu4C6Ct-Tntfb9Xz6LcIYu3hVjQ_EmTXoI,599
|
|
290
293
|
machineconfig/settings/lf/linux/exe/leftpane_previewer.sh,sha256=KXMq81hIvU9uzOuanluVcxVgJmEOYy-5sUbzcuc9b6U,200
|
|
291
|
-
machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=
|
|
292
|
-
machineconfig/settings/lf/linux/exe/previewer.sh,sha256=
|
|
294
|
+
machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=qU2AtGR22UWR3Isw5UkJ4OZdxW2VFR3FOaIEJDVjYTg,771
|
|
295
|
+
machineconfig/settings/lf/linux/exe/previewer.sh,sha256=sjiU6S_P8ExSmCPGz-Uwmrrn075rBmj_-3H4Cvr-ROI,1259
|
|
293
296
|
machineconfig/settings/lf/linux/exe/previewer_archive.sh,sha256=MGAlXrso-RSrvBbkFnmBHSGoPB54ZHtY_s5Qd1-fNZM,3536
|
|
294
297
|
machineconfig/settings/lf/windows/cd_tere.ps1,sha256=kiW7LiE0Pe2Pjq_4CO2N36wHx_0N-9fXXUDUvHWCOuc,203
|
|
295
298
|
machineconfig/settings/lf/windows/cd_zoxide.ps1,sha256=gQKJPa_YDmp5BiCKeYYHkZB_p7py8EXIhXtZi6vnN8o,159
|
|
@@ -331,7 +334,7 @@ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLa
|
|
|
331
334
|
machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
|
|
332
335
|
machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
|
|
333
336
|
machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
machineconfig/settings/shells/bash/init.sh,sha256=
|
|
337
|
+
machineconfig/settings/shells/bash/init.sh,sha256=p_xu0lPV0hbw70Kn4a5tVhwRQI9GyvDbg460UnzLd0U,3065
|
|
335
338
|
machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
|
|
336
339
|
machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
340
|
machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -340,13 +343,13 @@ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmg
|
|
|
340
343
|
machineconfig/settings/shells/nushell/config.nu,sha256=5eN9S7BL9MbznZEwqk2bxcYXzWlaF_g-9JL4tw0pp4E,78
|
|
341
344
|
machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
|
|
342
345
|
machineconfig/settings/shells/nushell/init.nu,sha256=7JQShOUpztbyoLDb9XJCmRYacrNF6xIt_9uCafUmWJ0,4578
|
|
343
|
-
machineconfig/settings/shells/pwsh/init.ps1,sha256=
|
|
346
|
+
machineconfig/settings/shells/pwsh/init.ps1,sha256=T0Zw9mfQa8rgDTxRk40UbzBq-7gkMgINAC7Or5W4HIY,2926
|
|
344
347
|
machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
348
|
machineconfig/settings/shells/starship/starship.toml,sha256=d5lWKC0AnTcriRAZV1opEZy76QknSpKFgJ3jyW9_vZ0,1305
|
|
346
349
|
machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
|
|
347
350
|
machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
|
|
348
351
|
machineconfig/settings/shells/wt/settings.json,sha256=Nzk9IpD-Bp36wKJAgG7XAa0GVwW3I29xNjUW5AYfxEI,10599
|
|
349
|
-
machineconfig/settings/shells/zsh/init.sh,sha256=
|
|
352
|
+
machineconfig/settings/shells/zsh/init.sh,sha256=3C1YM6bX5MSlC3b-PzHAHj2MzgOAJ767WBCMHL0cJOA,3060
|
|
350
353
|
machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
|
|
351
354
|
machineconfig/settings/svim/linux/init.toml,sha256=IEEQN_80H0A4NPv7bt5zltEKAbpRkJyCQTJKbu2bBf8,1346
|
|
352
355
|
machineconfig/settings/svim/windows/init.toml,sha256=djllsYR_rvHNSR715QhqtLdHW8b-SpUZ8QquWEG7gVM,1347
|
|
@@ -355,9 +358,12 @@ machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RT
|
|
|
355
358
|
machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
|
|
356
359
|
machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
|
|
357
360
|
machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
|
|
358
|
-
machineconfig/settings/yazi/
|
|
361
|
+
machineconfig/settings/yazi/init.lua,sha256=fW_FIMNSh8mFGMYqwPerr61HJYMNQJfeKMWzoaVpFKs,892
|
|
362
|
+
machineconfig/settings/yazi/keymap.toml,sha256=5RGutk3rMvGIQ33Co7_Whl5CHAvqm2a41X1NakZ5b5E,1962
|
|
359
363
|
machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
|
-
machineconfig/settings/yazi/yazi.toml,sha256=
|
|
364
|
+
machineconfig/settings/yazi/yazi.toml,sha256=KRGbjMkCmbCdTRxEXJXd5gI1kTEQK7VtDGm1MXsOJDw,234
|
|
365
|
+
machineconfig/settings/yazi/shell/yazi_cd.ps1,sha256=gvXZyD2Csil8KjaMtrx5ZkF9AqRt0LaVfTL724vxMCE,312
|
|
366
|
+
machineconfig/settings/yazi/shell/yazi_cd.sh,sha256=oC_MSBbnSwCg6qgGe598Qhm0V2B9RD5IcIbKEabn7aE,208
|
|
361
367
|
machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
|
|
362
368
|
machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
|
|
363
369
|
machineconfig/settings/zellij/config.orig.kdl,sha256=0KyYigBGUD5GdTmH9pE8f66LIFnll44Xz7s9EYD1z8c,10349
|
|
@@ -378,14 +384,14 @@ machineconfig/setup_linux/others/cli_installation.sh,sha256=gVvszYZJgKPRJx2SEaE3
|
|
|
378
384
|
machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
|
|
379
385
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
380
386
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
381
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
387
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=tTLR2kS_YrbxHTQKg4NGtsxIivY_gfFC6HrzFJhK_3c,1581
|
|
382
388
|
machineconfig/setup_mac/__init__.py,sha256=Q1waupi5vCBroLqc8Rtnw69_7jLnm2Cs7_zH_GSZgMs,616
|
|
383
389
|
machineconfig/setup_mac/apps.sh,sha256=R0N6fBwLCzwy4qAormyMerXXXrHazibSkY6NrNOpTQU,2772
|
|
384
390
|
machineconfig/setup_mac/apps_gui.sh,sha256=3alvddg918oMlJB2aUWJWpGGoaq5atlxcaOwhnyXlRI,9517
|
|
385
391
|
machineconfig/setup_mac/uv.sh,sha256=CSN8oCBKS-LK1vJJqYOhAMcrouTf4Q_F3cpplc_ddMA,1157
|
|
386
392
|
machineconfig/setup_mac/ssh/openssh_setup.sh,sha256=TxfySnwFYg1UQLXmJbEQ2gfEWIT084F5JvNZI9ncpc0,3537
|
|
387
393
|
machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
|
|
388
|
-
machineconfig/setup_windows/apps.ps1,sha256=
|
|
394
|
+
machineconfig/setup_windows/apps.ps1,sha256=rc9M0T6pXK7QunucyF4o9KTULu5xUFOhWRC9uQJH8ho,11020
|
|
389
395
|
machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
|
|
390
396
|
machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
|
|
391
397
|
machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
|
|
@@ -393,7 +399,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
393
399
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
394
400
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
395
401
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
396
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
402
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=lUNbGtF6834igGOvckErEnb9v45VTj_73xO4PYprxRY,1916
|
|
397
403
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
404
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
399
405
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -411,7 +417,7 @@ machineconfig/utils/procs.py,sha256=YPA_vEYQGwPd_o_Lc6nOTBo5BrB1tSs8PJ42XiGpenM,
|
|
|
411
417
|
machineconfig/utils/scheduler.py,sha256=fguwvINyaupOxdU5Uadyxalh_jXTXDzt0ioEgjEOKcM,14705
|
|
412
418
|
machineconfig/utils/scheduling.py,sha256=vcJgajeJPSWkJNlarYJSmLvasdOuCtBM4druOAB1Nwc,11089
|
|
413
419
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
414
|
-
machineconfig/utils/ssh.py,sha256=
|
|
420
|
+
machineconfig/utils/ssh.py,sha256=ba-N8LYlLSz1ynFVkTRg2zZMjc0n7Li7MILS1fXFRpE,39274
|
|
415
421
|
machineconfig/utils/terminal.py,sha256=VDgsjTjBmMGgZN0YIc0pJ8YksLDrBtiXON1EThy7_is,4264
|
|
416
422
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
417
423
|
machineconfig/utils/upgrade_packages.py,sha256=e4iJn_9vL2zCJxAR2dhKJjM0__ALKgI5yB1uBRxSjhQ,6994
|
|
@@ -440,8 +446,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
440
446
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
441
447
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
442
448
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
-
machineconfig-7.
|
|
444
|
-
machineconfig-7.
|
|
445
|
-
machineconfig-7.
|
|
446
|
-
machineconfig-7.
|
|
447
|
-
machineconfig-7.
|
|
449
|
+
machineconfig-7.46.dist-info/METADATA,sha256=zHF9t7eYEGsOMQz0fbYnwWPzLZ_3skaVrl9KAUiGg3Q,3396
|
|
450
|
+
machineconfig-7.46.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
451
|
+
machineconfig-7.46.dist-info/entry_points.txt,sha256=_JNgkzaa_gVAWyZ6UwPwXXQqURRSvAGhrVQ1RiU2sHc,746
|
|
452
|
+
machineconfig-7.46.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
453
|
+
machineconfig-7.46.dist-info/RECORD,,
|
|
@@ -4,6 +4,7 @@ cloud = machineconfig.scripts.python.cloud:main
|
|
|
4
4
|
croshell = machineconfig.scripts.python.croshell:main
|
|
5
5
|
define = machineconfig.scripts.python.define:main
|
|
6
6
|
devops = machineconfig.scripts.python.devops:main
|
|
7
|
+
explore = machineconfig.scripts.python.explore:main
|
|
7
8
|
fire = machineconfig.scripts.python.fire_jobs:main
|
|
8
9
|
ftpx = machineconfig.scripts.python.ftpx:main
|
|
9
10
|
machineconfig = machineconfig.scripts.python.machineconfig:main
|
|
File without changes
|
|
File without changes
|