machineconfig 7.64__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.
- machineconfig/cluster/sessions_managers/utils/maker.py +4 -2
- machineconfig/jobs/installer/custom/yazi.py +120 -0
- machineconfig/jobs/installer/custom_dev/nerdfont.py +1 -1
- machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +26 -12
- machineconfig/jobs/installer/custom_dev/sysabc.py +26 -5
- machineconfig/jobs/installer/installer_data.json +232 -96
- machineconfig/jobs/installer/powershell_scripts/install_fonts.ps1 +129 -34
- machineconfig/profile/create_helper.py +0 -12
- machineconfig/profile/create_links_export.py +2 -2
- machineconfig/profile/mapper.toml +2 -2
- machineconfig/scripts/__init__.py +0 -4
- machineconfig/scripts/python/agents.py +22 -17
- machineconfig/scripts/python/ai/solutions/copilot/instructions/python/dev.instructions.md +4 -0
- machineconfig/scripts/python/croshell.py +22 -17
- machineconfig/scripts/python/devops.py +1 -1
- machineconfig/scripts/python/devops_navigator.py +0 -4
- machineconfig/scripts/python/env_manager/env_manager_tui.py +204 -0
- machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
- machineconfig/scripts/python/fire_jobs.py +13 -13
- machineconfig/scripts/python/ftpx.py +36 -12
- machineconfig/scripts/python/helpers/ast_search.py +74 -0
- machineconfig/scripts/python/helpers/qr_code.py +166 -0
- machineconfig/scripts/python/helpers/repo_rag.py +325 -0
- machineconfig/scripts/python/helpers/symantic_search.py +25 -0
- machineconfig/scripts/python/helpers_cloud/cloud_copy.py +28 -21
- machineconfig/scripts/python/helpers_cloud/cloud_helpers.py +1 -1
- machineconfig/scripts/python/helpers_cloud/cloud_mount.py +19 -17
- machineconfig/scripts/python/helpers_cloud/cloud_sync.py +8 -7
- machineconfig/scripts/python/helpers_croshell/start_slidev.py +6 -7
- machineconfig/scripts/python/helpers_devops/cli_config.py +10 -0
- machineconfig/scripts/python/helpers_devops/cli_nw.py +90 -10
- machineconfig/scripts/python/helpers_devops/cli_self.py +8 -7
- machineconfig/scripts/python/helpers_devops/cli_share_file.py +7 -7
- machineconfig/scripts/python/helpers_devops/cli_share_server.py +12 -11
- machineconfig/scripts/python/helpers_devops/cli_terminal.py +8 -10
- machineconfig/scripts/python/helpers_devops/cli_utils.py +2 -1
- machineconfig/scripts/python/helpers_devops/devops_status.py +7 -19
- machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +20 -9
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +2 -2
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfg.ps1 +58 -1
- machineconfig/scripts/python/helpers_navigator/command_tree.py +50 -18
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +5 -3
- machineconfig/scripts/python/helpers_repos/count_lines.py +40 -11
- machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
- machineconfig/scripts/python/helpers_utils/download.py +4 -3
- machineconfig/scripts/python/helpers_utils/path.py +87 -34
- machineconfig/scripts/python/interactive.py +1 -1
- machineconfig/scripts/python/{machineconfig.py → mcfg_entry.py} +4 -0
- machineconfig/scripts/python/msearch.py +55 -6
- machineconfig/scripts/python/nw/address.py +132 -0
- machineconfig/scripts/python/nw/devops_add_ssh_key.py +8 -5
- machineconfig/scripts/python/terminal.py +2 -2
- machineconfig/scripts/python/utils.py +12 -11
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/settings/lf/windows/lfcd.ps1 +1 -1
- machineconfig/settings/shells/nushell/config.nu +2 -2
- machineconfig/settings/shells/nushell/env.nu +45 -6
- machineconfig/settings/shells/nushell/init.nu +282 -95
- machineconfig/settings/shells/pwsh/init.ps1 +1 -0
- machineconfig/settings/yazi/init.lua +4 -0
- machineconfig/settings/yazi/keymap_linux.toml +11 -4
- machineconfig/settings/yazi/theme.toml +4 -0
- machineconfig/settings/yazi/yazi_linux.toml +84 -0
- machineconfig/settings/yazi/yazi_windows.toml +58 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +10 -10
- machineconfig/setup_windows/uv.ps1 +8 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +10 -10
- machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +3 -2
- machineconfig/utils/accessories.py +7 -4
- machineconfig/utils/code.py +4 -2
- machineconfig/utils/installer_utils/github_release_bulk.py +104 -62
- machineconfig/utils/installer_utils/install_from_url.py +200 -0
- machineconfig/utils/installer_utils/installer_class.py +25 -74
- machineconfig/utils/installer_utils/installer_cli.py +40 -50
- machineconfig/utils/installer_utils/installer_helper.py +100 -0
- machineconfig/utils/installer_utils/installer_runner.py +5 -8
- machineconfig/utils/links.py +2 -2
- machineconfig/utils/meta.py +2 -2
- machineconfig/utils/options.py +3 -3
- machineconfig/utils/path_extended.py +1 -1
- machineconfig/utils/path_helper.py +0 -1
- machineconfig/utils/ssh.py +143 -409
- machineconfig/utils/ssh_utils/abc.py +8 -0
- machineconfig/utils/ssh_utils/copy_from_here.py +110 -0
- machineconfig/utils/ssh_utils/copy_to_here.py +302 -0
- machineconfig/utils/ssh_utils/utils.py +141 -0
- machineconfig/utils/ssh_utils/wsl.py +210 -0
- machineconfig/utils/upgrade_packages.py +2 -1
- machineconfig/utils/ve.py +11 -4
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/METADATA +2 -2
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/RECORD +96 -89
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/entry_points.txt +2 -2
- machineconfig/scripts/python/explore.py +0 -49
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfag +0 -17
- machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfrga +0 -21
- machineconfig/scripts/python/helpers_msearch/scripts_linux/skrg +0 -4
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfb.ps1 +0 -3
- machineconfig/scripts/python/helpers_msearch/scripts_windows/fzfrga.bat +0 -20
- machineconfig/settings/yazi/yazi.toml +0 -17
- machineconfig/setup_linux/others/cli_installation.sh +0 -137
- /machineconfig/{settings/shells/pwsh/profile.ps1 → scripts/python/helpers_fire_command/f.py} +0 -0
- /machineconfig/scripts/{Restore-ThunderbirdProfile.ps1 → windows/mounts/Restore-ThunderbirdProfile.ps1} +0 -0
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/WHEEL +0 -0
- {machineconfig-7.64.dist-info → machineconfig-7.83.dist-info}/top_level.txt +0 -0
|
@@ -18,6 +18,23 @@
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
+
{
|
|
22
|
+
"appName": "scrcpy",
|
|
23
|
+
"repoURL": "https://github.com/Genymobile/scrcpy",
|
|
24
|
+
"doc": "This application mirrors Android devices",
|
|
25
|
+
"fileNamePattern": {
|
|
26
|
+
"amd64": {
|
|
27
|
+
"linux": "scrcpy-linux-x86_64-v3.3.3.tar.gz",
|
|
28
|
+
"windows": "scrcpy-win64-v3.3.3.zip",
|
|
29
|
+
"macos": "scrcpy-macos-x86_64-v3.3.3.tar.gz"
|
|
30
|
+
},
|
|
31
|
+
"arm64": {
|
|
32
|
+
"linux": null,
|
|
33
|
+
"windows": null,
|
|
34
|
+
"macos": "scrcpy-macos-aarch64-v3.3.3.tar.gz"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
21
38
|
{
|
|
22
39
|
"appName": "fx",
|
|
23
40
|
"repoURL": "https://github.com/antonmedv/fx",
|
|
@@ -103,23 +120,6 @@
|
|
|
103
120
|
}
|
|
104
121
|
}
|
|
105
122
|
},
|
|
106
|
-
{
|
|
107
|
-
"appName": "timg",
|
|
108
|
-
"repoURL": "CMD",
|
|
109
|
-
"doc": "👁️ terminal image previewer.",
|
|
110
|
-
"fileNamePattern": {
|
|
111
|
-
"amd64": {
|
|
112
|
-
"linux": "sudo apt install timg",
|
|
113
|
-
"windows": null,
|
|
114
|
-
"macos": "brew install timg"
|
|
115
|
-
},
|
|
116
|
-
"arm64": {
|
|
117
|
-
"linux": "sudo apt install timg",
|
|
118
|
-
"windows": null,
|
|
119
|
-
"macos": "brew install timg"
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
123
|
{
|
|
124
124
|
"appName": "diskonaut",
|
|
125
125
|
"repoURL": "https://github.com/imsnif/diskonaut",
|
|
@@ -885,6 +885,40 @@
|
|
|
885
885
|
}
|
|
886
886
|
}
|
|
887
887
|
},
|
|
888
|
+
{
|
|
889
|
+
"appName": "meilisearch",
|
|
890
|
+
"repoURL": "https://github.com/meilisearch/meilisearch",
|
|
891
|
+
"doc": "🔍 symantic search at lightening speed",
|
|
892
|
+
"fileNamePattern": {
|
|
893
|
+
"amd64": {
|
|
894
|
+
"linux": "meilisearch-linux-amd64",
|
|
895
|
+
"macos": "meilisearch-macos-amd64",
|
|
896
|
+
"windows": "meilisearch-windows-amd64.exe"
|
|
897
|
+
},
|
|
898
|
+
"arm64": {
|
|
899
|
+
"linux": "meilisearch-linux-aarch64",
|
|
900
|
+
"macos": "meilisearch-macos-aarch64",
|
|
901
|
+
"windows": "meilisearch-windows-aarch64.exe"
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"appName": "ast-grep",
|
|
907
|
+
"repoURL": "https://github.com/ast-grep/ast-grep",
|
|
908
|
+
"doc": "🔍 grep for code - search and rewrite code with ASTs",
|
|
909
|
+
"fileNamePattern": {
|
|
910
|
+
"amd64": {
|
|
911
|
+
"linux": "app-x86_64-unknown-linux-gnu.zip",
|
|
912
|
+
"macos": "app-x86_64-apple-darwin.zip",
|
|
913
|
+
"windows": "app-x86_64-pc-windows-msvc.zip"
|
|
914
|
+
},
|
|
915
|
+
"arm64": {
|
|
916
|
+
"linux": "app-aarch64-unknown-linux-gnu.zip",
|
|
917
|
+
"macos": "app-aarch64-apple-darwin.zip",
|
|
918
|
+
"windows": "app-aarch64-pc-windows-msvc.zip"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
},
|
|
888
922
|
{
|
|
889
923
|
"appName": "rg",
|
|
890
924
|
"repoURL": "https://github.com/BurntSushi/ripgrep",
|
|
@@ -919,6 +953,23 @@
|
|
|
919
953
|
}
|
|
920
954
|
}
|
|
921
955
|
},
|
|
956
|
+
{
|
|
957
|
+
"appName": "parse",
|
|
958
|
+
"repoURL": "CMD",
|
|
959
|
+
"doc": "🔍 ripgrep + semantic search from https://github.com/run-llama/semtools",
|
|
960
|
+
"fileNamePattern": {
|
|
961
|
+
"amd64": {
|
|
962
|
+
"linux": "npm i -g @llamaindex/semtools",
|
|
963
|
+
"macos": "npm i -g @llamaindex/semtools",
|
|
964
|
+
"windows": "npm i -g @llamaindex/semtools"
|
|
965
|
+
},
|
|
966
|
+
"arm64": {
|
|
967
|
+
"linux": "npm i -g @llamaindex/semtools",
|
|
968
|
+
"macos": "npm i -g @llamaindex/semtools",
|
|
969
|
+
"windows": "npm i -g @llamaindex/semtools"
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
},
|
|
922
973
|
{
|
|
923
974
|
"appName": "starship",
|
|
924
975
|
"repoURL": "https://github.com/starship/starship",
|
|
@@ -987,10 +1038,27 @@
|
|
|
987
1038
|
}
|
|
988
1039
|
}
|
|
989
1040
|
},
|
|
1041
|
+
{
|
|
1042
|
+
"appName": "upterm",
|
|
1043
|
+
"repoURL": "https://github.com/owenthereal/upterm",
|
|
1044
|
+
"doc": "🌐 upterm is a terminal multiplexer that allows you to share your terminal session over the web.",
|
|
1045
|
+
"fileNamePattern": {
|
|
1046
|
+
"amd64": {
|
|
1047
|
+
"linux": "uptermd_linux_amd64.tar.gz",
|
|
1048
|
+
"macos": "upterm_darwin_amd64.tar.gz",
|
|
1049
|
+
"windows": null
|
|
1050
|
+
},
|
|
1051
|
+
"arm64": {
|
|
1052
|
+
"linux": "uptermd_linux_arm64.tar.gz",
|
|
1053
|
+
"macos": "upterm_darwin_arm64.tar.gz",
|
|
1054
|
+
"windows": null
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
990
1058
|
{
|
|
991
1059
|
"appName": "viu",
|
|
992
1060
|
"repoURL": "https://github.com/atanunq/viu",
|
|
993
|
-
"doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
|
|
1061
|
+
"doc": "🖼️ A cli image viewer for the terminal (like chafa & ueberzugpp but in Rust)",
|
|
994
1062
|
"fileNamePattern": {
|
|
995
1063
|
"amd64": {
|
|
996
1064
|
"linux": "viu-x86_64-unknown-linux-musl",
|
|
@@ -1004,6 +1072,40 @@
|
|
|
1004
1072
|
}
|
|
1005
1073
|
}
|
|
1006
1074
|
},
|
|
1075
|
+
{
|
|
1076
|
+
"appName": "timg",
|
|
1077
|
+
"repoURL": "CMD",
|
|
1078
|
+
"doc": "👁️ terminal image previewer.",
|
|
1079
|
+
"fileNamePattern": {
|
|
1080
|
+
"amd64": {
|
|
1081
|
+
"linux": "sudo apt install timg",
|
|
1082
|
+
"windows": null,
|
|
1083
|
+
"macos": "brew install timg"
|
|
1084
|
+
},
|
|
1085
|
+
"arm64": {
|
|
1086
|
+
"linux": "sudo apt install timg",
|
|
1087
|
+
"windows": null,
|
|
1088
|
+
"macos": "brew install timg"
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"appName": "chafa",
|
|
1094
|
+
"repoURL": "CMD",
|
|
1095
|
+
"doc": "🖼️ Terminal graphics and image viewer",
|
|
1096
|
+
"fileNamePattern": {
|
|
1097
|
+
"amd64": {
|
|
1098
|
+
"linux": "sudo nala install chafa -y",
|
|
1099
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
1100
|
+
"macos": "brew install chafa"
|
|
1101
|
+
},
|
|
1102
|
+
"arm64": {
|
|
1103
|
+
"linux": "sudo nala install chafa -y",
|
|
1104
|
+
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
1105
|
+
"macos": "brew install chafa"
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1007
1109
|
{
|
|
1008
1110
|
"appName": "watchexec",
|
|
1009
1111
|
"repoURL": "https://github.com/watchexec/watchexec",
|
|
@@ -1023,18 +1125,18 @@
|
|
|
1023
1125
|
},
|
|
1024
1126
|
{
|
|
1025
1127
|
"appName": "yazi",
|
|
1026
|
-
"repoURL": "
|
|
1128
|
+
"repoURL": "CMD",
|
|
1027
1129
|
"doc": "⚡ Blazing Fast Terminal File Manager.",
|
|
1028
1130
|
"fileNamePattern": {
|
|
1029
1131
|
"amd64": {
|
|
1030
|
-
"linux": "yazi
|
|
1031
|
-
"macos": "yazi
|
|
1032
|
-
"windows": "yazi
|
|
1132
|
+
"linux": "yazi.py",
|
|
1133
|
+
"macos": "yazi.py",
|
|
1134
|
+
"windows": "yazi.py"
|
|
1033
1135
|
},
|
|
1034
1136
|
"arm64": {
|
|
1035
|
-
"linux": "yazi
|
|
1036
|
-
"macos": "yazi
|
|
1037
|
-
"windows": "yazi
|
|
1137
|
+
"linux": "yazi.py",
|
|
1138
|
+
"macos": "yazi.py",
|
|
1139
|
+
"windows": "yazi.py"
|
|
1038
1140
|
}
|
|
1039
1141
|
}
|
|
1040
1142
|
},
|
|
@@ -1089,6 +1191,40 @@
|
|
|
1089
1191
|
}
|
|
1090
1192
|
}
|
|
1091
1193
|
},
|
|
1194
|
+
{
|
|
1195
|
+
"appName": "youtube-dl",
|
|
1196
|
+
"repoURL": "CMD",
|
|
1197
|
+
"doc": "📥 Command-line program to download videos from YouTube and other sites. By https://github.com/ytdl-org/youtube-dl",
|
|
1198
|
+
"fileNamePattern": {
|
|
1199
|
+
"amd64": {
|
|
1200
|
+
"linux": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1201
|
+
"macos": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1202
|
+
"windows": "https://yt-dl.org/latest/youtube-dl.exe"
|
|
1203
|
+
},
|
|
1204
|
+
"arm64": {
|
|
1205
|
+
"linux": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1206
|
+
"macos": "https://yt-dl.org/downloads/latest/youtube-dl",
|
|
1207
|
+
"windows": "https://yt-dl.org/latest/youtube-dl.exe"
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"appName": "yt-dlp",
|
|
1213
|
+
"repoURL": "CMD",
|
|
1214
|
+
"doc": "📥 A youtube-dl fork with additional features and fixes, by https://github.com/yt-dlp/yt-dlp",
|
|
1215
|
+
"fileNamePattern": {
|
|
1216
|
+
"amd64": {
|
|
1217
|
+
"linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp",
|
|
1218
|
+
"macos": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_macos",
|
|
1219
|
+
"windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"
|
|
1220
|
+
},
|
|
1221
|
+
"arm64": {
|
|
1222
|
+
"linux": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_musllinux_aarch64",
|
|
1223
|
+
"macos": null,
|
|
1224
|
+
"windows": "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_arm64.exe"
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
},
|
|
1092
1228
|
{
|
|
1093
1229
|
"appName": "termusic",
|
|
1094
1230
|
"repoURL": "https://github.com/tramhao/termusic",
|
|
@@ -1820,6 +1956,23 @@
|
|
|
1820
1956
|
}
|
|
1821
1957
|
}
|
|
1822
1958
|
},
|
|
1959
|
+
{
|
|
1960
|
+
"appName": "qrterminal",
|
|
1961
|
+
"repoURL": "https://github.com/mdp/qrterminal",
|
|
1962
|
+
"doc": "📷 qr code terminal from string",
|
|
1963
|
+
"fileNamePattern": {
|
|
1964
|
+
"amd64": {
|
|
1965
|
+
"linux": "qrterminal_Linux_x86_64.tar.gz",
|
|
1966
|
+
"macos": "qrterminal_Darwin_x86_64.tar.gz",
|
|
1967
|
+
"windows": "qrterminal_Windows_x86_64.zip"
|
|
1968
|
+
},
|
|
1969
|
+
"arm64": {
|
|
1970
|
+
"linux": "qrterminal_Linux_arm64.tar.gz",
|
|
1971
|
+
"macos": "qrterminal_Darwin_arm64.tar.gz",
|
|
1972
|
+
"windows": "qrterminal_Windows_arm64.zip"
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1823
1976
|
{
|
|
1824
1977
|
"appName": "termscp",
|
|
1825
1978
|
"repoURL": "https://github.com/veeso/termscp",
|
|
@@ -1839,18 +1992,18 @@
|
|
|
1839
1992
|
},
|
|
1840
1993
|
{
|
|
1841
1994
|
"appName": "qr",
|
|
1842
|
-
"repoURL": "
|
|
1995
|
+
"repoURL": "CMD",
|
|
1843
1996
|
"doc": "🔲 qr code generator. String to qr code.",
|
|
1844
1997
|
"fileNamePattern": {
|
|
1845
1998
|
"amd64": {
|
|
1846
|
-
"linux":
|
|
1847
|
-
"macos":
|
|
1848
|
-
"windows":
|
|
1999
|
+
"linux": "uv tool install qrcode",
|
|
2000
|
+
"macos": "uv tool install qrcode",
|
|
2001
|
+
"windows": "uv tool install qrcode"
|
|
1849
2002
|
},
|
|
1850
2003
|
"arm64": {
|
|
1851
|
-
"linux":
|
|
1852
|
-
"macos":
|
|
1853
|
-
"windows":
|
|
2004
|
+
"linux": "uv tool install qrcode",
|
|
2005
|
+
"macos": "uv tool install qrcode",
|
|
2006
|
+
"windows": "uv tool install qrcode"
|
|
1854
2007
|
}
|
|
1855
2008
|
}
|
|
1856
2009
|
},
|
|
@@ -2098,14 +2251,14 @@
|
|
|
2098
2251
|
"doc": "📈 analyze Git repositories and generate a visual contributions graph",
|
|
2099
2252
|
"fileNamePattern": {
|
|
2100
2253
|
"amd64": {
|
|
2101
|
-
"linux":
|
|
2102
|
-
"macos":
|
|
2103
|
-
"windows":
|
|
2254
|
+
"linux": "gitcs_linux_amd64",
|
|
2255
|
+
"macos": "gitcs_darwin_amd64",
|
|
2256
|
+
"windows": "gitcs_windows_amd64.exe"
|
|
2104
2257
|
},
|
|
2105
2258
|
"arm64": {
|
|
2106
|
-
"linux":
|
|
2259
|
+
"linux": "gitcs_linux_386",
|
|
2107
2260
|
"macos": null,
|
|
2108
|
-
"windows":
|
|
2261
|
+
"windows": "gitcs_windows_386.exe"
|
|
2109
2262
|
}
|
|
2110
2263
|
}
|
|
2111
2264
|
},
|
|
@@ -2132,12 +2285,12 @@
|
|
|
2132
2285
|
"doc": "📚 An interactive cheatsheet tool for the command-line",
|
|
2133
2286
|
"fileNamePattern": {
|
|
2134
2287
|
"amd64": {
|
|
2135
|
-
"linux":
|
|
2288
|
+
"linux": "navi-v{version}-x86_64-unknown-linux-musl.tar.gz",
|
|
2136
2289
|
"macos": null,
|
|
2137
|
-
"windows":
|
|
2290
|
+
"windows": "navi-v{version}-x86_64-pc-windows-gnu.zip"
|
|
2138
2291
|
},
|
|
2139
2292
|
"arm64": {
|
|
2140
|
-
"linux":
|
|
2293
|
+
"linux": "navi-v{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2141
2294
|
"macos": null,
|
|
2142
2295
|
"windows": null
|
|
2143
2296
|
}
|
|
@@ -2149,13 +2302,13 @@
|
|
|
2149
2302
|
"doc": "⚡ A very fast implementation of tldr in Rust",
|
|
2150
2303
|
"fileNamePattern": {
|
|
2151
2304
|
"amd64": {
|
|
2152
|
-
"linux":
|
|
2153
|
-
"macos":
|
|
2154
|
-
"windows":
|
|
2305
|
+
"linux": "tealdeer-linux-x86_64-musl",
|
|
2306
|
+
"macos": "tealdeer-macos-x86_64",
|
|
2307
|
+
"windows": "tealdeer-windows-x86_64-msvc.exe"
|
|
2155
2308
|
},
|
|
2156
2309
|
"arm64": {
|
|
2157
|
-
"linux":
|
|
2158
|
-
"macos":
|
|
2310
|
+
"linux": "tealdeer-linux-aarch64-musl",
|
|
2311
|
+
"macos": "tealdeer-macos-aarch64",
|
|
2159
2312
|
"windows": null
|
|
2160
2313
|
}
|
|
2161
2314
|
}
|
|
@@ -2166,14 +2319,14 @@
|
|
|
2166
2319
|
"doc": "🔍 A simple network sniffer in Rust",
|
|
2167
2320
|
"fileNamePattern": {
|
|
2168
2321
|
"amd64": {
|
|
2169
|
-
"linux":
|
|
2170
|
-
"macos":
|
|
2171
|
-
"windows":
|
|
2322
|
+
"linux": "Sniffnet_LinuxAppImage_amd64.AppImage",
|
|
2323
|
+
"macos": "Sniffnet_macOS_Intel.dmg",
|
|
2324
|
+
"windows": "Sniffnet_Windows_x64.msi"
|
|
2172
2325
|
},
|
|
2173
2326
|
"arm64": {
|
|
2174
|
-
"linux":
|
|
2175
|
-
"macos":
|
|
2176
|
-
"windows":
|
|
2327
|
+
"linux": "Sniffnet_LinuxAppImage_arm64.AppImage",
|
|
2328
|
+
"macos": "Sniffnet_macOS_AppleSilicon.dmg",
|
|
2329
|
+
"windows": "Sniffnet_Windows_arm64.msi"
|
|
2177
2330
|
}
|
|
2178
2331
|
}
|
|
2179
2332
|
},
|
|
@@ -2183,13 +2336,13 @@
|
|
|
2183
2336
|
"doc": "⚡ A command-line benchmarking tool",
|
|
2184
2337
|
"fileNamePattern": {
|
|
2185
2338
|
"amd64": {
|
|
2186
|
-
"linux":
|
|
2187
|
-
"macos":
|
|
2188
|
-
"windows":
|
|
2339
|
+
"linux": "hyperfine-v{version}-x86_64-unknown-linux-gnu.tar.gz",
|
|
2340
|
+
"macos": "hyperfine-v{version}-x86_64-apple-darwin.tar.gz",
|
|
2341
|
+
"windows": "hyperfine-v{version}-x86_64-pc-windows-msvc.zip"
|
|
2189
2342
|
},
|
|
2190
2343
|
"arm64": {
|
|
2191
|
-
"linux":
|
|
2192
|
-
"macos":
|
|
2344
|
+
"linux": "hyperfine-v{version}-aarch64-unknown-linux-gnu.tar.gz",
|
|
2345
|
+
"macos": "hyperfine-v{version}-aarch64-apple-darwin.tar.gz",
|
|
2193
2346
|
"windows": null
|
|
2194
2347
|
}
|
|
2195
2348
|
}
|
|
@@ -2200,14 +2353,14 @@
|
|
|
2200
2353
|
"doc": "🤖 Get up and running with large language models locally.",
|
|
2201
2354
|
"fileNamePattern": {
|
|
2202
2355
|
"amd64": {
|
|
2203
|
-
"linux":
|
|
2204
|
-
"macos":
|
|
2205
|
-
"windows":
|
|
2356
|
+
"linux": "ollama-linux-amd64.tgz",
|
|
2357
|
+
"macos": "Ollama.dmg",
|
|
2358
|
+
"windows": "OllamaSetup.exe"
|
|
2206
2359
|
},
|
|
2207
2360
|
"arm64": {
|
|
2208
|
-
"linux":
|
|
2209
|
-
"macos":
|
|
2210
|
-
"windows":
|
|
2361
|
+
"linux": "ollama-linux-arm64.tgz",
|
|
2362
|
+
"macos": "Ollama.dmg",
|
|
2363
|
+
"windows": "ollama-windows-arm64.zip"
|
|
2211
2364
|
}
|
|
2212
2365
|
}
|
|
2213
2366
|
},
|
|
@@ -2217,8 +2370,8 @@
|
|
|
2217
2370
|
"doc": "💰 Cointop is a fast and lightweight interactive terminal based UI application for tracking and monitoring cryptocurrency coin stats in real-time.",
|
|
2218
2371
|
"fileNamePattern": {
|
|
2219
2372
|
"amd64": {
|
|
2220
|
-
"linux":
|
|
2221
|
-
"macos":
|
|
2373
|
+
"linux": "cointop_{version}_linux_amd64.tar.gz",
|
|
2374
|
+
"macos": "cointop_{version}_darwin_amd64.tar.gz",
|
|
2222
2375
|
"windows": null
|
|
2223
2376
|
},
|
|
2224
2377
|
"arm64": {
|
|
@@ -2251,12 +2404,12 @@
|
|
|
2251
2404
|
"doc": "🚀 fullscreen, cross-platform terminal emulator and system monitor that looks and feels like a sci-fi computer interface",
|
|
2252
2405
|
"fileNamePattern": {
|
|
2253
2406
|
"amd64": {
|
|
2254
|
-
"linux":
|
|
2255
|
-
"macos":
|
|
2256
|
-
"windows":
|
|
2407
|
+
"linux": "eDEX-UI-Linux-x86_64.AppImage",
|
|
2408
|
+
"macos": "eDEX-UI-macOS-x64.dmg",
|
|
2409
|
+
"windows": "eDEX-UI-Windows-x64.exe"
|
|
2257
2410
|
},
|
|
2258
2411
|
"arm64": {
|
|
2259
|
-
"linux":
|
|
2412
|
+
"linux": "eDEX-UI-Linux-arm64.AppImage",
|
|
2260
2413
|
"macos": null,
|
|
2261
2414
|
"windows": null
|
|
2262
2415
|
}
|
|
@@ -2268,9 +2421,9 @@
|
|
|
2268
2421
|
"doc": "💻 Terminal emulator",
|
|
2269
2422
|
"fileNamePattern": {
|
|
2270
2423
|
"amd64": {
|
|
2271
|
-
"linux":
|
|
2272
|
-
"macos":
|
|
2273
|
-
"windows":
|
|
2424
|
+
"linux": "ExtratermQt-{version}.glibc2.34-x86_64.AppImage",
|
|
2425
|
+
"macos": "ExtratermQt_{version}.dmg",
|
|
2426
|
+
"windows": "extratermqt-setup-{version}.exe"
|
|
2274
2427
|
},
|
|
2275
2428
|
"arm64": {
|
|
2276
2429
|
"linux": null,
|
|
@@ -2302,14 +2455,14 @@
|
|
|
2302
2455
|
"doc": "🦊 WebDriver for Firefox.",
|
|
2303
2456
|
"fileNamePattern": {
|
|
2304
2457
|
"amd64": {
|
|
2305
|
-
"linux":
|
|
2306
|
-
"macos":
|
|
2307
|
-
"windows":
|
|
2458
|
+
"linux": "geckodriver-v{version}-linux64.tar.gz",
|
|
2459
|
+
"macos": "geckodriver-v{version}-macos.tar.gz",
|
|
2460
|
+
"windows": "geckodriver-v{version}-win64.zip"
|
|
2308
2461
|
},
|
|
2309
2462
|
"arm64": {
|
|
2310
|
-
"linux":
|
|
2311
|
-
"macos":
|
|
2312
|
-
"windows":
|
|
2463
|
+
"linux": "geckodriver-v{version}-linux-aarch64.tar.gz",
|
|
2464
|
+
"macos": "geckodriver-v{version}-macos-aarch64.tar.gz",
|
|
2465
|
+
"windows": "geckodriver-v{version}-win-aarch64.zip"
|
|
2313
2466
|
}
|
|
2314
2467
|
}
|
|
2315
2468
|
},
|
|
@@ -2519,7 +2672,7 @@
|
|
|
2519
2672
|
}
|
|
2520
2673
|
},
|
|
2521
2674
|
{
|
|
2522
|
-
"appName": "warp",
|
|
2675
|
+
"appName": "warp-terminal",
|
|
2523
2676
|
"repoURL": "CMD",
|
|
2524
2677
|
"doc": "Modern terminal with AI-powered features",
|
|
2525
2678
|
"fileNamePattern": {
|
|
@@ -3351,23 +3504,6 @@
|
|
|
3351
3504
|
}
|
|
3352
3505
|
}
|
|
3353
3506
|
},
|
|
3354
|
-
{
|
|
3355
|
-
"appName": "chafa",
|
|
3356
|
-
"repoURL": "CMD",
|
|
3357
|
-
"doc": "🖼️ Terminal graphics and image viewer",
|
|
3358
|
-
"fileNamePattern": {
|
|
3359
|
-
"amd64": {
|
|
3360
|
-
"linux": "sudo nala install chafa -y",
|
|
3361
|
-
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3362
|
-
"macos": "brew install chafa"
|
|
3363
|
-
},
|
|
3364
|
-
"arm64": {
|
|
3365
|
-
"linux": "sudo nala install chafa -y",
|
|
3366
|
-
"windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
|
|
3367
|
-
"macos": "brew install chafa"
|
|
3368
|
-
}
|
|
3369
|
-
}
|
|
3370
|
-
},
|
|
3371
3507
|
{
|
|
3372
3508
|
"appName": "awscli",
|
|
3373
3509
|
"repoURL": "CMD",
|
|
@@ -3403,4 +3539,4 @@
|
|
|
3403
3539
|
}
|
|
3404
3540
|
}
|
|
3405
3541
|
]
|
|
3406
|
-
}
|
|
3542
|
+
}
|