machineconfig 7.79__py3-none-any.whl → 7.83__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

Files changed (52) hide show
  1. machineconfig/jobs/installer/custom/yazi.py +120 -0
  2. machineconfig/jobs/installer/custom_dev/nerdfont.py +1 -1
  3. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +26 -12
  4. machineconfig/jobs/installer/custom_dev/sysabc.py +0 -5
  5. machineconfig/jobs/installer/installer_data.json +162 -94
  6. machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
  7. machineconfig/profile/create_helper.py +0 -12
  8. machineconfig/profile/mapper.toml +2 -2
  9. machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +1 -0
  10. machineconfig/scripts/python/croshell.py +4 -4
  11. machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
  12. machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
  13. machineconfig/scripts/python/helpers_devops/cli_config.py +10 -0
  14. machineconfig/scripts/python/helpers_devops/cli_nw.py +15 -16
  15. machineconfig/scripts/python/helpers_devops/cli_self.py +4 -4
  16. machineconfig/scripts/python/helpers_devops/cli_terminal.py +2 -5
  17. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +2 -2
  18. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +58 -1
  19. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
  20. machineconfig/scripts/python/helpers_repos/count_lines.py +40 -11
  21. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
  22. machineconfig/scripts/python/helpers_utils/path.py +7 -4
  23. machineconfig/scripts/python/msearch.py +37 -7
  24. machineconfig/scripts/python/utils.py +3 -3
  25. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  26. machineconfig/settings/yazi/init.lua +4 -0
  27. machineconfig/settings/yazi/keymap_linux.toml +11 -4
  28. machineconfig/settings/yazi/theme.toml +4 -0
  29. machineconfig/settings/yazi/yazi_linux.toml +84 -0
  30. machineconfig/settings/yazi/yazi_windows.toml +58 -0
  31. machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
  32. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
  33. machineconfig/utils/installer_utils/github_release_bulk.py +104 -62
  34. machineconfig/utils/installer_utils/install_from_url.py +122 -102
  35. machineconfig/utils/installer_utils/installer_class.py +15 -72
  36. machineconfig/utils/installer_utils/installer_cli.py +29 -44
  37. machineconfig/utils/installer_utils/installer_helper.py +100 -0
  38. machineconfig/utils/installer_utils/installer_runner.py +5 -8
  39. machineconfig/utils/ssh_utils/abc.py +2 -2
  40. machineconfig/utils/ssh_utils/wsl.py +44 -2
  41. {machineconfig-7.79.dist-info → machineconfig-7.83.dist-info}/METADATA +2 -2
  42. {machineconfig-7.79.dist-info → machineconfig-7.83.dist-info}/RECORD +45 -47
  43. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag +0 -17
  44. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga +0 -21
  45. machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg +0 -4
  46. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1 +0 -3
  47. machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat +0 -20
  48. machineconfig/settings/yazi/yazi.toml +0 -17
  49. machineconfig/setup_linux/others/cli_installation.sh +0 -137
  50. {machineconfig-7.79.dist-info → machineconfig-7.83.dist-info}/WHEEL +0 -0
  51. {machineconfig-7.79.dist-info → machineconfig-7.83.dist-info}/entry_points.txt +0 -0
  52. {machineconfig-7.79.dist-info → machineconfig-7.83.dist-info}/top_level.txt +0 -0
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # from https://github.com/lotabout/skim#interactive-mode
4
- sk --ansi -i -c 'rg --color=always --line-number "{}"'
@@ -1,3 +0,0 @@
1
-
2
- # TODO change bat to pistol
3
- fzf --ansi --preview-window 'right:60%' --preview 'bat --color=always --style=numbers,grid,header --line-range :300 {}'
@@ -1,20 +0,0 @@
1
-
2
- REM adopted from https://github.com/phiresky/ripgrep-all/wiki/fzf-Integration
3
-
4
- @echo off
5
- setlocal
6
-
7
- set RG_PREFIX=rga --files-with-matches
8
- set FZF_DEFAULT_COMMAND=%RG_PREFIX% %1
9
- for /f "delims=" %%i in ('fzf --sort --preview "rga --pretty --context 5 {q} {}" --phony -q %1 --bind "change:reload:%RG_PREFIX% {q}" --preview-window="70%:wrap"') do (
10
- set FILE=%%i
11
- )
12
-
13
- if not "%FILE%" == "" (
14
- echo Opening %FILE%
15
- start "" "%FILE%"
16
- ) else (
17
- echo No file selected.
18
- )
19
-
20
- endlocal
@@ -1,17 +0,0 @@
1
-
2
- [mgr]
3
- show_hidden = true
4
- ratio = [1, 3, 5]
5
-
6
- [plugin]
7
- dir = "~/.config/yazi/plugins"
8
-
9
- [[plugin.load]]
10
- name = "toggle-pane"
11
- path = "toggle-pane.yazi"
12
-
13
-
14
- [preview]
15
- # Change them to your desired values
16
- max_width = 1000
17
- max_height = 1000
@@ -1,137 +0,0 @@
1
- #!/bin/bash
2
- # 📦 NIX CLI TOOLS INSTALLATION SCRIPT
3
- # This script installs various command-line utilities using the Nix package manager
4
-
5
- echo """🔄 SYSTEM UTILITIES | Installing system management tools
6
- """
7
-
8
- # System upgrade tool
9
- echo "📥 Installing topgrade - multi-package-manager upgrade tool..."
10
- nix-env -iA nixpkgs.topgrade || true
11
-
12
- # Process management
13
- echo "📥 Installing procs - modern replacement for ps..."
14
- nix-env -iA nixpkgs.procs || true
15
-
16
- # File watching
17
- echo "📥 Installing watchexec - executes commands when files change..."
18
- nix-env -iA nixpkgs.watchexec || true
19
-
20
- echo """📂 FILE MANAGEMENT | Installing file browsers and utilities
21
- """
22
-
23
- # Terminal file managers
24
- echo "📥 Installing xplr - hackable file explorer..."
25
- nix-env -iA nixpkgs.xplr || true
26
-
27
- echo "📥 Installing nnn - fast and flexible file manager..."
28
- nix-env -iA nixpkgs.nnn || true
29
-
30
- echo "📥 Installing joshuto - ranger-like file manager in Rust..."
31
- nix-env -iA nixpkgs.joshuto || true
32
-
33
- echo "📥 Installing lf - terminal file manager..."
34
- nix-env -iA nixpkgs.lf || true
35
-
36
- echo "📥 Installing broot - directory navigation tool..."
37
- nix-env -iA nixpkgs.broot || true
38
-
39
- echo "📥 Installing tere - faster alternative to cd..."
40
- nix-env -iA nixpkgs.tere || true
41
-
42
- # Disk usage analyzers
43
- echo "📥 Installing dua - disk usage analyzer..."
44
- nix-env -iA nixpkgs.dua || true
45
-
46
- echo "📥 Installing diskonaut - terminal disk space navigator..."
47
- nix-env -iA nixpkgs.diskonaut || true
48
-
49
- # File cleanup
50
- echo "📥 Installing kondo - cleanup tool for dev projects..."
51
- nix-env -iA nixpkgs.kondo || true
52
-
53
- echo """🖼️ VISUAL TOOLS | Installing terminal visualization tools
54
- """
55
-
56
- # Terminal visualization
57
- echo "📥 Installing viu - terminal image viewer..."
58
- nix-env -iA nixpkgs.viu || true
59
-
60
- echo "📥 Installing bottom - graphical process/system monitor..."
61
- nix-env -iA nixpkgs.bottom || true
62
-
63
- echo "📥 Installing delta - syntax-highlighting pager for git..."
64
- nix-env -iA nixpkgs.delta || true
65
-
66
- echo """🔧 DEVELOPMENT TOOLS | Installing programming utilities
67
- """
68
-
69
- # Code editors
70
- echo "📥 Installing helix - modal text editor..."
71
- nix-env -iA nixpkgs.helix || true
72
-
73
- # Terminal multiplexer
74
- echo "📥 Installing zellij - terminal workspace with panes..."
75
- nix-env -iA nixpkgs.zellij || true
76
-
77
- # Development tools
78
- echo "📥 Installing rust-analyzer - Rust language server..."
79
- nix-env -iA nixpkgs.rust-analyzer || true
80
-
81
- echo "📥 Installing tokei - code statistics tool..."
82
- nix-env -iA nixpkgs.tokei || true
83
-
84
- # Git interfaces
85
- echo "📥 Installing gitui - terminal UI for git..."
86
- nix-env -iA nixpkgs.gitui || true
87
-
88
- echo """🔎 SEARCH TOOLS | Installing fuzzy finders and search utilities
89
- """
90
-
91
- # Search history
92
- echo "📥 Installing mcfly - search shell history with context..."
93
- nix-env -iA nixpkgs.mcfly || true
94
-
95
- # Fuzzy finder
96
- echo "📥 Installing skim - fuzzy finder in Rust..."
97
- nix-env -iA nixpkgs.skim || true
98
-
99
- echo """🌐 NETWORK & CLOUD TOOLS | Installing file transfer and cloud utilities
100
- """
101
-
102
- # File transfer
103
- echo "📥 Installing termscp - terminal file transfer client..."
104
- nix-env -iA nixpkgs.termscp || true
105
-
106
- # Cloud storage
107
- echo "📥 Installing rclone - rsync for cloud storage..."
108
- nix-env -iA nixpkgs.rclone || true
109
-
110
- echo """🛡️ SECURITY TOOLS | Installing password management utilities
111
- """
112
-
113
- # Password management
114
- echo "📥 Installing gopass - team password manager with git..."
115
- nix-env -iA nixpkgs.gopass || true
116
-
117
- echo """📚 DOCUMENTATION | Installing help and reference tools
118
- """
119
-
120
- # Command reference
121
- echo "📥 Installing tldr - simplified command documentation..."
122
- nix-env -iA nixpkgs.tldr || true
123
-
124
- # Shell alternatives
125
- echo "📥 Installing nushell - modern shell alternative..."
126
- nix-env -iA nixpkgs.nushell || true
127
-
128
- echo """✅ INSTALLATION COMPLETE | All Nix CLI tools have been installed
129
- """
130
-
131
- # Commented out tools
132
- # echo "📥 Installing ots - one-time secret sharing..."
133
- # nix-env -iA nixpkgs.ots || true
134
-
135
- # echo "📥 Installing qrscan - QR code scanner..."
136
- # nix-env -iA nixpkgs.qrscan || true
137
-