machineconfig 7.49__py3-none-any.whl → 7.64__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 (93) hide show
  1. machineconfig/cluster/sessions_managers/utils/maker.py +21 -11
  2. machineconfig/jobs/installer/custom/boxes.py +2 -2
  3. machineconfig/jobs/installer/custom/hx.py +16 -12
  4. machineconfig/jobs/installer/custom_dev/brave.py +1 -1
  5. machineconfig/jobs/installer/custom_dev/cloudflare_warp_cli.py +23 -0
  6. machineconfig/jobs/installer/custom_dev/code.py +4 -1
  7. machineconfig/jobs/installer/custom_dev/dubdb_adbc.py +1 -1
  8. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +1 -10
  9. machineconfig/jobs/installer/custom_dev/sysabc.py +119 -0
  10. machineconfig/jobs/installer/custom_dev/wezterm.py +2 -19
  11. machineconfig/jobs/installer/installer_data.json +739 -25
  12. machineconfig/jobs/installer/linux_scripts/redis.sh +1 -0
  13. machineconfig/jobs/installer/package_groups.py +49 -83
  14. machineconfig/logger.py +0 -1
  15. machineconfig/profile/create_links_export.py +21 -7
  16. machineconfig/profile/mapper.toml +1 -4
  17. machineconfig/scripts/linux/wrap_mcfg +1 -1
  18. machineconfig/scripts/python/croshell.py +20 -43
  19. machineconfig/scripts/python/devops.py +3 -4
  20. machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
  21. machineconfig/scripts/python/fire_jobs.py +53 -39
  22. machineconfig/scripts/python/ftpx.py +4 -2
  23. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +0 -12
  24. machineconfig/scripts/python/helpers_croshell/crosh.py +3 -3
  25. machineconfig/scripts/python/helpers_devops/cli_config.py +3 -19
  26. machineconfig/scripts/python/helpers_devops/cli_config_dotfile.py +22 -13
  27. machineconfig/scripts/python/helpers_devops/cli_self.py +12 -6
  28. machineconfig/scripts/python/helpers_devops/cli_share_file.py +2 -2
  29. machineconfig/scripts/python/helpers_devops/cli_share_server.py +1 -1
  30. machineconfig/scripts/python/helpers_devops/cli_terminal.py +1 -1
  31. machineconfig/scripts/python/helpers_devops/cli_utils.py +1 -152
  32. machineconfig/scripts/python/helpers_devops/devops_backup_retrieve.py +4 -4
  33. machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +2 -20
  34. machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py +3 -4
  35. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +1 -1
  36. machineconfig/scripts/python/helpers_repos/clone.py +0 -1
  37. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +9 -3
  38. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
  39. machineconfig/scripts/python/helpers_repos/entrypoint.py +2 -1
  40. machineconfig/scripts/python/helpers_repos/record.py +2 -1
  41. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +7 -7
  42. machineconfig/scripts/python/helpers_utils/download.py +151 -0
  43. machineconfig/scripts/python/helpers_utils/path.py +106 -0
  44. machineconfig/scripts/python/interactive.py +17 -26
  45. machineconfig/scripts/python/nw/devops_add_ssh_key.py +21 -5
  46. machineconfig/scripts/python/nw/ssh_debug_linux.py +7 -7
  47. machineconfig/scripts/python/nw/ssh_debug_windows.py +4 -4
  48. machineconfig/scripts/python/nw/wsl_windows_transfer.py +3 -2
  49. machineconfig/scripts/python/sessions.py +37 -22
  50. machineconfig/scripts/python/utils.py +8 -3
  51. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  52. machineconfig/settings/shells/nushell/init.nu +2 -2
  53. machineconfig/settings/shells/wezterm/wezterm.lua +2 -0
  54. machineconfig/settings/shells/zsh/init.sh +1 -8
  55. machineconfig/settings/yazi/init.lua +45 -24
  56. machineconfig/settings/yazi/keymap_windows.toml +1 -2
  57. machineconfig/settings/yazi/shell/yazi_cd.ps1 +29 -5
  58. machineconfig/setup_linux/__init__.py +0 -1
  59. machineconfig/setup_linux/web_shortcuts/interactive.sh +12 -10
  60. machineconfig/setup_mac/__init__.py +2 -3
  61. machineconfig/setup_windows/__init__.py +0 -3
  62. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +12 -10
  63. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +16 -0
  64. machineconfig/utils/code.py +2 -2
  65. machineconfig/utils/files/headers.py +2 -2
  66. machineconfig/utils/installer_utils/installer_class.py +42 -40
  67. machineconfig/utils/installer_utils/{installer.py → installer_cli.py} +61 -101
  68. machineconfig/utils/installer_utils/{installer_abc.py → installer_locator_utils.py} +0 -68
  69. machineconfig/utils/{installer.py → installer_utils/installer_runner.py} +11 -51
  70. machineconfig/utils/io.py +0 -1
  71. machineconfig/utils/meta.py +29 -15
  72. machineconfig/utils/options.py +1 -1
  73. machineconfig/utils/path_extended.py +40 -19
  74. machineconfig/utils/path_helper.py +75 -21
  75. machineconfig/utils/schemas/layouts/layout_types.py +1 -1
  76. machineconfig/utils/ssh.py +3 -3
  77. machineconfig-7.64.dist-info/METADATA +124 -0
  78. {machineconfig-7.49.dist-info → machineconfig-7.64.dist-info}/RECORD +84 -87
  79. machineconfig/jobs/installer/linux_scripts/pgsql.sh +0 -41
  80. machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -71
  81. machineconfig/jobs/installer/powershell_scripts/archive_pygraphviz.ps1 +0 -12
  82. machineconfig/scripts/python/nw/add_ssh_key.py +0 -148
  83. machineconfig/settings/lf/linux/exe/fzf_nano.sh +0 -16
  84. machineconfig/setup_linux/apps.sh +0 -66
  85. machineconfig/setup_mac/apps.sh +0 -73
  86. machineconfig/setup_windows/apps.ps1 +0 -62
  87. machineconfig-7.49.dist-info/METADATA +0 -92
  88. /machineconfig/jobs/installer/linux_scripts/{warp-cli.sh → cloudflare_warp_cli.sh} +0 -0
  89. /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
  90. /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
  91. {machineconfig-7.49.dist-info → machineconfig-7.64.dist-info}/WHEEL +0 -0
  92. {machineconfig-7.49.dist-info → machineconfig-7.64.dist-info}/entry_points.txt +0 -0
  93. {machineconfig-7.49.dist-info → machineconfig-7.64.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "version": "1",
3
3
  "installers": [
4
+ {
5
+ "appName": "sysabc",
6
+ "repoURL": "CMD",
7
+ "doc": "ABC programs (package managers and other system essential tools)",
8
+ "fileNamePattern": {
9
+ "amd64": {
10
+ "linux": "sysabc.py",
11
+ "windows": "sysabc.py",
12
+ "macos": "sysabc.py"
13
+ },
14
+ "arm64": {
15
+ "linux": "sysabc.py",
16
+ "windows": "sysabc.py",
17
+ "macos": "sysabc.py"
18
+ }
19
+ }
20
+ },
4
21
  {
5
22
  "appName": "fx",
6
23
  "repoURL": "https://github.com/antonmedv/fx",
@@ -18,6 +35,23 @@
18
35
  }
19
36
  }
20
37
  },
38
+ {
39
+ "appName": "git",
40
+ "repoURL": "CMD",
41
+ "doc": "🧙‍♂️ Distributed version control system",
42
+ "fileNamePattern": {
43
+ "amd64": {
44
+ "linux": "sudo nala install git",
45
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
46
+ "macos": "brew install git"
47
+ },
48
+ "arm64": {
49
+ "linux": "sudo nala install git",
50
+ "windows": "winget install --no-upgrade --name \"Git\" --Id \"Git.Git\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
51
+ "macos": "brew install git"
52
+ }
53
+ }
54
+ },
21
55
  {
22
56
  "appName": "jq",
23
57
  "repoURL": "https://github.com/jqlang/jq",
@@ -494,6 +528,40 @@
494
528
  }
495
529
  }
496
530
  },
531
+ {
532
+ "appName": "cloudflare-warp",
533
+ "repoURL": "CMD",
534
+ "doc": "🌐 Cloudflare WARP VPN client",
535
+ "fileNamePattern": {
536
+ "amd64": {
537
+ "linux": null,
538
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
539
+ "macos": null
540
+ },
541
+ "arm64": {
542
+ "linux": null,
543
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
544
+ "macos": null
545
+ }
546
+ }
547
+ },
548
+ {
549
+ "appName": "cloudflare-warp-cli",
550
+ "repoURL": "CMD",
551
+ "doc": "🌐 Cloudflare WARP VPN client in the terminal",
552
+ "fileNamePattern": {
553
+ "amd64": {
554
+ "linux": "cloudflare_warp_cli.py",
555
+ "windows": "cloudflare_warp_cli.py",
556
+ "macos": "cloudflare_warp_cli.py"
557
+ },
558
+ "arm64": {
559
+ "linux": "cloudflare_warp_cli.py",
560
+ "windows": "cloudflare_warp_cli.py",
561
+ "macos": "cloudflare_warp_cli.py"
562
+ }
563
+ }
564
+ },
497
565
  {
498
566
  "appName": "cpufetch",
499
567
  "repoURL": "https://github.com/Dr-Noob/cpufetch",
@@ -959,12 +1027,12 @@
959
1027
  "doc": "⚡ Blazing Fast Terminal File Manager.",
960
1028
  "fileNamePattern": {
961
1029
  "amd64": {
962
- "linux": "yazi-x86_64-unknown-linux-gnu.zip",
1030
+ "linux": "yazi-x86_64-unknown-linux-musl.zip",
963
1031
  "macos": "yazi-x86_64-apple-darwin.zip",
964
1032
  "windows": "yazi-x86_64-pc-windows-msvc.zip"
965
1033
  },
966
1034
  "arm64": {
967
- "linux": "yazi-aarch64-unknown-linux-gnu.zip",
1035
+ "linux": "yazi-aarch64-unknown-linux-musl.zip",
968
1036
  "macos": "yazi-aarch64-apple-darwin.zip",
969
1037
  "windows": "yazi-aarch64-pc-windows-msvc.zip"
970
1038
  }
@@ -1225,6 +1293,57 @@
1225
1293
  }
1226
1294
  }
1227
1295
  },
1296
+ {
1297
+ "appName": "sqlite3",
1298
+ "repoURL": "CMD",
1299
+ "doc": "A cli for sqlite",
1300
+ "fileNamePattern": {
1301
+ "amd64": {
1302
+ "linux": "sudo nala install sqlite3 -y",
1303
+ "macos": null,
1304
+ "windows": null
1305
+ },
1306
+ "arm64": {
1307
+ "linux": null,
1308
+ "macos": null,
1309
+ "windows": null
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "appName": "postgresql-client",
1315
+ "repoURL": "CMD",
1316
+ "doc": "A cli for postgresql",
1317
+ "fileNamePattern": {
1318
+ "amd64": {
1319
+ "linux": "sudo nala install postgresql-client -y",
1320
+ "macos": null,
1321
+ "windows": null
1322
+ },
1323
+ "arm64": {
1324
+ "linux": null,
1325
+ "macos": null,
1326
+ "windows": null
1327
+ }
1328
+ }
1329
+ },
1330
+ {
1331
+ "appName": "redis-cli",
1332
+ "repoURL": "CMD",
1333
+ "doc": "A cli for redis",
1334
+ "fileNamePattern": {
1335
+ "amd64": {
1336
+ "linux": "sudo nala install redis-tools -y",
1337
+ "macos": null,
1338
+ "windows": null
1339
+ },
1340
+ "arm64": {
1341
+ "linux": null,
1342
+ "macos": null,
1343
+ "windows": null
1344
+ }
1345
+ }
1346
+ },
1228
1347
  {
1229
1348
  "appName": "DBeaver",
1230
1349
  "repoURL": "https://github.com/dbeaver/dbeaver",
@@ -1759,12 +1878,12 @@
1759
1878
  "fileNamePattern": {
1760
1879
  "amd64": {
1761
1880
  "linux": "miniserve-{version}-x86_64-unknown-linux-musl",
1762
- "darwin": "miniserve-{version}-x86_64-apple-darwin",
1881
+ "macos": "miniserve-{version}-x86_64-apple-darwin",
1763
1882
  "windows": "miniserve-{version}-x86_64-pc-windows-msvc.exe"
1764
1883
  },
1765
1884
  "arm64": {
1766
1885
  "linux": "miniserve-{version}-aarch64-unknown-linux-musl",
1767
- "darwin": "miniserve-{version}-aarch64-apple-darwin",
1886
+ "macos": "miniserve-{version}-aarch64-apple-darwin",
1768
1887
  "windows": "miniserve-{version}-aarch64-pc-windows-msvc.exe"
1769
1888
  }
1770
1889
  }
@@ -1890,18 +2009,18 @@
1890
2009
  },
1891
2010
  {
1892
2011
  "appName": "tokei",
1893
- "repoURL": "https://github.com/XAMPPRocky/tokei",
2012
+ "repoURL": "CMD",
1894
2013
  "doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
1895
2014
  "fileNamePattern": {
1896
2015
  "amd64": {
1897
- "linux": "tokei-x86_64-unknown-linux-gnu.tar.gz",
1898
- "macos": "tokei-x86_64-apple-darwin.tar.gz",
1899
- "windows": "tokei-x86_64-pc-windows-msvc.zip"
2016
+ "linux": "cargo install tokei",
2017
+ "macos": "brew install tokei",
2018
+ "windows": "winget install XAMPPRocky.tokei"
1900
2019
  },
1901
2020
  "arm64": {
1902
- "linux": "tokei-aarch64-unknown-linux-gnu.tar.gz",
1903
- "macos": "tokei-aarch64-apple-darwin.tar.gz",
1904
- "windows": null
2021
+ "linux": "cargo install tokei",
2022
+ "macos": "brew install tokei",
2023
+ "windows": "winget install XAMPPRocky.tokei"
1905
2024
  }
1906
2025
  }
1907
2026
  },
@@ -2115,14 +2234,14 @@
2115
2234
  "doc": "🖥️ Text-based desktop environment inside your terminal",
2116
2235
  "fileNamePattern": {
2117
2236
  "amd64": {
2118
- "linux": null,
2119
- "macos": null,
2120
- "windows": null
2237
+ "linux": "vtm_linux_x86_64.tar.7z",
2238
+ "macos": "vtm_macos_any.tar.7z",
2239
+ "windows": "vtm_windows_x86_64.7z"
2121
2240
  },
2122
2241
  "arm64": {
2123
- "linux": null,
2124
- "macos": null,
2125
- "windows": null
2242
+ "linux": "vtm_linux_arm64.tar.7z",
2243
+ "macos": "vtm_macos_any.tar.7z",
2244
+ "windows": "vtm_windows_arm64.7z"
2126
2245
  }
2127
2246
  }
2128
2247
  },
@@ -2166,8 +2285,8 @@
2166
2285
  "doc": "🐚 Nushell, a cross-platform shell in Rust.",
2167
2286
  "fileNamePattern": {
2168
2287
  "amd64": {
2169
- "linux": "nu-0.108.0-x86_64-unknown-linux-gnu.tar.gz",
2170
- "macos": "nu-0.108.0-x86_64-apple-darwin.tar.gz",
2288
+ "linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
2289
+ "macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
2171
2290
  "windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
2172
2291
  },
2173
2292
  "arm64": {
@@ -2403,16 +2522,33 @@
2403
2522
  "appName": "warp",
2404
2523
  "repoURL": "CMD",
2405
2524
  "doc": "Modern terminal with AI-powered features",
2525
+ "fileNamePattern": {
2526
+ "amd64": {
2527
+ "linux": "https://app.warp.dev/get_warp?package=deb",
2528
+ "windows": "winget install Warp.Warp",
2529
+ "macos": "brew install --cask warp"
2530
+ },
2531
+ "arm64": {
2532
+ "linux": "https://app.warp.dev/get_warp?package=deb_arm64",
2533
+ "windows": "winget install Warp.Warp",
2534
+ "macos": "brew install --cask warp"
2535
+ }
2536
+ }
2537
+ },
2538
+ {
2539
+ "appName": "warp-terminal-cli",
2540
+ "repoURL": "CMD",
2541
+ "doc": "Modern terminal cli with AI-powered features",
2406
2542
  "fileNamePattern": {
2407
2543
  "amd64": {
2408
2544
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=x86_64",
2409
2545
  "windows": null,
2410
- "macos": null
2546
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2411
2547
  },
2412
2548
  "arm64": {
2413
2549
  "linux": "https://app.warp.dev/download/cli?os=linux&package=deb&arch=aarch64",
2414
2550
  "windows": null,
2415
- "macos": null
2551
+ "macos": " brew tap warpdotdev/warp; brew update; brew install --cask warp-cli"
2416
2552
  }
2417
2553
  }
2418
2554
  },
@@ -2485,7 +2621,7 @@
2485
2621
  }
2486
2622
  },
2487
2623
  {
2488
- "appName": "Brave",
2624
+ "appName": "brave",
2489
2625
  "repoURL": "CMD",
2490
2626
  "doc": "Privacy-focused web browser with built-in ad blocking",
2491
2627
  "fileNamePattern": {
@@ -2553,7 +2689,7 @@
2553
2689
  }
2554
2690
  },
2555
2691
  {
2556
- "appName": "Gorilla",
2692
+ "appName": "gorilla",
2557
2693
  "repoURL": "https://github.com/ShishirPatil/gorilla",
2558
2694
  "doc": "natural language to API",
2559
2695
  "fileNamePattern": {
@@ -2604,7 +2740,7 @@
2604
2740
  }
2605
2741
  },
2606
2742
  {
2607
- "appName": "Redis",
2743
+ "appName": "redis",
2608
2744
  "repoURL": "CMD",
2609
2745
  "doc": "submillisecond fast key-value db",
2610
2746
  "fileNamePattern": {
@@ -2621,7 +2757,7 @@
2621
2757
  }
2622
2758
  },
2623
2759
  {
2624
- "appName": "Wezterm",
2760
+ "appName": "wezterm",
2625
2761
  "repoURL": "CMD",
2626
2762
  "doc": "Modern, GPU-accelerated terminal emulator",
2627
2763
  "fileNamePattern": {
@@ -2687,6 +2823,584 @@
2687
2823
  "macos": "hx.py"
2688
2824
  }
2689
2825
  }
2826
+ },
2827
+ {
2828
+ "appName": "file",
2829
+ "repoURL": "CMD",
2830
+ "doc": "🔍 File type identification utility",
2831
+ "fileNamePattern": {
2832
+ "amd64": {
2833
+ "linux": null,
2834
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2835
+ "macos": null
2836
+ },
2837
+ "arm64": {
2838
+ "linux": null,
2839
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2840
+ "macos": null
2841
+ }
2842
+ }
2843
+ },
2844
+ {
2845
+ "appName": "oh-my-posh",
2846
+ "repoURL": "CMD",
2847
+ "doc": "✨ Prompt theme engine for any shell",
2848
+ "fileNamePattern": {
2849
+ "amd64": {
2850
+ "linux": null,
2851
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2852
+ "macos": null
2853
+ },
2854
+ "arm64": {
2855
+ "linux": null,
2856
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2857
+ "macos": null
2858
+ }
2859
+ }
2860
+ },
2861
+ {
2862
+ "appName": "vsredistrib",
2863
+ "repoURL": "CMD",
2864
+ "doc": "📦 Microsoft Visual C++ Redistributable",
2865
+ "fileNamePattern": {
2866
+ "amd64": {
2867
+ "linux": null,
2868
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2869
+ "macos": null
2870
+ },
2871
+ "arm64": {
2872
+ "linux": null,
2873
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2874
+ "macos": null
2875
+ }
2876
+ }
2877
+ },
2878
+ {
2879
+ "appName": "vsbuildtools",
2880
+ "repoURL": "CMD",
2881
+ "doc": "🔨 Visual Studio Build Tools",
2882
+ "fileNamePattern": {
2883
+ "amd64": {
2884
+ "linux": null,
2885
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2886
+ "macos": null
2887
+ },
2888
+ "arm64": {
2889
+ "linux": null,
2890
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2891
+ "macos": null
2892
+ }
2893
+ }
2894
+ },
2895
+ {
2896
+ "appName": "codeblocks",
2897
+ "repoURL": "CMD",
2898
+ "doc": "💻 IDE for C/C++",
2899
+ "fileNamePattern": {
2900
+ "amd64": {
2901
+ "linux": null,
2902
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2903
+ "macos": null
2904
+ },
2905
+ "arm64": {
2906
+ "linux": null,
2907
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2908
+ "macos": null
2909
+ }
2910
+ }
2911
+ },
2912
+ {
2913
+ "appName": "make",
2914
+ "repoURL": "CMD",
2915
+ "doc": "🔧 GNU Make utility for building projects",
2916
+ "fileNamePattern": {
2917
+ "amd64": {
2918
+ "linux": null,
2919
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2920
+ "macos": null
2921
+ },
2922
+ "arm64": {
2923
+ "linux": null,
2924
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2925
+ "macos": null
2926
+ }
2927
+ }
2928
+ },
2929
+ {
2930
+ "appName": "gnupg",
2931
+ "repoURL": "CMD",
2932
+ "doc": "🔐 GNU Privacy Guard encryption tool",
2933
+ "fileNamePattern": {
2934
+ "amd64": {
2935
+ "linux": null,
2936
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2937
+ "macos": null
2938
+ },
2939
+ "arm64": {
2940
+ "linux": null,
2941
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2942
+ "macos": null
2943
+ }
2944
+ }
2945
+ },
2946
+ {
2947
+ "appName": "graphviz",
2948
+ "repoURL": "CMD",
2949
+ "doc": "📊 Graph visualization software",
2950
+ "fileNamePattern": {
2951
+ "amd64": {
2952
+ "linux": "sudo nala install graphviz -y",
2953
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2954
+ "macos": "brew install graphviz"
2955
+ },
2956
+ "arm64": {
2957
+ "linux": "sudo nala install graphviz -y",
2958
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2959
+ "macos": "brew install graphviz"
2960
+ }
2961
+ }
2962
+ },
2963
+ {
2964
+ "appName": "winfsp",
2965
+ "repoURL": "CMD",
2966
+ "doc": "💾 Windows File System Proxy",
2967
+ "fileNamePattern": {
2968
+ "amd64": {
2969
+ "linux": null,
2970
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2971
+ "macos": null
2972
+ },
2973
+ "arm64": {
2974
+ "linux": null,
2975
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2976
+ "macos": null
2977
+ }
2978
+ }
2979
+ },
2980
+ {
2981
+ "appName": "sshfs",
2982
+ "repoURL": "CMD",
2983
+ "doc": "🌐 Mount remote filesystems over SSH",
2984
+ "fileNamePattern": {
2985
+ "amd64": {
2986
+ "linux": "sudo nala install sshfs",
2987
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2988
+ "macos": "brew install sshfs"
2989
+ },
2990
+ "arm64": {
2991
+ "linux": "sudo nala install sshfs",
2992
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2993
+ "macos": "brew install sshfs"
2994
+ }
2995
+ }
2996
+ },
2997
+ {
2998
+ "appName": "xming",
2999
+ "repoURL": "CMD",
3000
+ "doc": "🖥️ X11 server for Windows",
3001
+ "fileNamePattern": {
3002
+ "amd64": {
3003
+ "linux": null,
3004
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3005
+ "macos": null
3006
+ },
3007
+ "arm64": {
3008
+ "linux": null,
3009
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3010
+ "macos": null
3011
+ }
3012
+ }
3013
+ },
3014
+ {
3015
+ "appName": "nodejs",
3016
+ "repoURL": "CMD",
3017
+ "doc": "🟢 JavaScript runtime environment",
3018
+ "fileNamePattern": {
3019
+ "amd64": {
3020
+ "linux": null,
3021
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3022
+ "macos": null
3023
+ },
3024
+ "arm64": {
3025
+ "linux": null,
3026
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3027
+ "macos": null
3028
+ }
3029
+ }
3030
+ },
3031
+ {
3032
+ "appName": "rustup",
3033
+ "repoURL": "CMD",
3034
+ "doc": "🦀 Rust toolchain installer",
3035
+ "fileNamePattern": {
3036
+ "amd64": {
3037
+ "linux": null,
3038
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3039
+ "macos": null
3040
+ },
3041
+ "arm64": {
3042
+ "linux": null,
3043
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3044
+ "macos": null
3045
+ }
3046
+ }
3047
+ },
3048
+ {
3049
+ "appName": "mouse-without-borders",
3050
+ "repoURL": "CMD",
3051
+ "doc": "🖱️ Control multiple computers with one mouse",
3052
+ "fileNamePattern": {
3053
+ "amd64": {
3054
+ "linux": null,
3055
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3056
+ "macos": null
3057
+ },
3058
+ "arm64": {
3059
+ "linux": null,
3060
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3061
+ "macos": null
3062
+ }
3063
+ }
3064
+ },
3065
+ {
3066
+ "appName": "chrome",
3067
+ "repoURL": "CMD",
3068
+ "doc": "🌐 Google Chrome web browser",
3069
+ "fileNamePattern": {
3070
+ "amd64": {
3071
+ "linux": null,
3072
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3073
+ "macos": null
3074
+ },
3075
+ "arm64": {
3076
+ "linux": null,
3077
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3078
+ "macos": null
3079
+ }
3080
+ }
3081
+ },
3082
+ {
3083
+ "appName": "chrome-remote-desktop",
3084
+ "repoURL": "CMD",
3085
+ "doc": "🖥️ Chrome Remote Desktop Host",
3086
+ "fileNamePattern": {
3087
+ "amd64": {
3088
+ "linux": null,
3089
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3090
+ "macos": null
3091
+ },
3092
+ "arm64": {
3093
+ "linux": null,
3094
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3095
+ "macos": null
3096
+ }
3097
+ }
3098
+ },
3099
+ {
3100
+ "appName": "zoom",
3101
+ "repoURL": "CMD",
3102
+ "doc": "📹 Video conferencing software",
3103
+ "fileNamePattern": {
3104
+ "amd64": {
3105
+ "linux": null,
3106
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3107
+ "macos": null
3108
+ },
3109
+ "arm64": {
3110
+ "linux": null,
3111
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3112
+ "macos": null
3113
+ }
3114
+ }
3115
+ },
3116
+ {
3117
+ "appName": "7zip",
3118
+ "repoURL": "CMD",
3119
+ "doc": "📦 File archiver with high compression ratio",
3120
+ "fileNamePattern": {
3121
+ "amd64": {
3122
+ "linux": null,
3123
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3124
+ "macos": null
3125
+ },
3126
+ "arm64": {
3127
+ "linux": null,
3128
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3129
+ "macos": null
3130
+ }
3131
+ }
3132
+ },
3133
+ {
3134
+ "appName": "firefox",
3135
+ "repoURL": "CMD",
3136
+ "doc": "🦊 Mozilla Firefox web browser",
3137
+ "fileNamePattern": {
3138
+ "amd64": {
3139
+ "linux": null,
3140
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3141
+ "macos": null
3142
+ },
3143
+ "arm64": {
3144
+ "linux": null,
3145
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3146
+ "macos": null
3147
+ }
3148
+ }
3149
+ },
3150
+ {
3151
+ "appName": "thunderbird",
3152
+ "repoURL": "CMD",
3153
+ "doc": "📧 Mozilla Thunderbird email client",
3154
+ "fileNamePattern": {
3155
+ "amd64": {
3156
+ "linux": null,
3157
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3158
+ "macos": null
3159
+ },
3160
+ "arm64": {
3161
+ "linux": null,
3162
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3163
+ "macos": null
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "appName": "streamlabs-obs",
3169
+ "repoURL": "CMD",
3170
+ "doc": "🎥 Streamlabs OBS streaming software",
3171
+ "fileNamePattern": {
3172
+ "amd64": {
3173
+ "linux": null,
3174
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3175
+ "macos": null
3176
+ },
3177
+ "arm64": {
3178
+ "linux": null,
3179
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3180
+ "macos": null
3181
+ }
3182
+ }
3183
+ },
3184
+ {
3185
+ "appName": "obs-studio",
3186
+ "repoURL": "CMD",
3187
+ "doc": "🎬 OBS Studio streaming and recording software",
3188
+ "fileNamePattern": {
3189
+ "amd64": {
3190
+ "linux": null,
3191
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3192
+ "macos": null
3193
+ },
3194
+ "arm64": {
3195
+ "linux": null,
3196
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3197
+ "macos": null
3198
+ }
3199
+ }
3200
+ },
3201
+ {
3202
+ "appName": "miktex",
3203
+ "repoURL": "CMD",
3204
+ "doc": "📝 LaTeX distribution for Windows",
3205
+ "fileNamePattern": {
3206
+ "amd64": {
3207
+ "linux": null,
3208
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3209
+ "macos": null
3210
+ },
3211
+ "arm64": {
3212
+ "linux": null,
3213
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3214
+ "macos": null
3215
+ }
3216
+ }
3217
+ },
3218
+ {
3219
+ "appName": "texmaker",
3220
+ "repoURL": "CMD",
3221
+ "doc": "📄 LaTeX editor",
3222
+ "fileNamePattern": {
3223
+ "amd64": {
3224
+ "linux": null,
3225
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3226
+ "macos": null
3227
+ },
3228
+ "arm64": {
3229
+ "linux": null,
3230
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3231
+ "macos": null
3232
+ }
3233
+ }
3234
+ },
3235
+ {
3236
+ "appName": "lapce",
3237
+ "repoURL": "CMD",
3238
+ "doc": "⚡ Lightning-fast code editor written in Rust",
3239
+ "fileNamePattern": {
3240
+ "amd64": {
3241
+ "linux": null,
3242
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3243
+ "macos": null
3244
+ },
3245
+ "arm64": {
3246
+ "linux": null,
3247
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3248
+ "macos": null
3249
+ }
3250
+ }
3251
+ },
3252
+ {
3253
+ "appName": "tesseract",
3254
+ "repoURL": "CMD",
3255
+ "doc": "🔤 OCR engine for text recognition",
3256
+ "fileNamePattern": {
3257
+ "amd64": {
3258
+ "linux": null,
3259
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3260
+ "macos": null
3261
+ },
3262
+ "arm64": {
3263
+ "linux": null,
3264
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3265
+ "macos": null
3266
+ }
3267
+ }
3268
+ },
3269
+ {
3270
+ "appName": "perl",
3271
+ "repoURL": "CMD",
3272
+ "doc": "🍓 Strawberry Perl programming language",
3273
+ "fileNamePattern": {
3274
+ "amd64": {
3275
+ "linux": null,
3276
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3277
+ "macos": null
3278
+ },
3279
+ "arm64": {
3280
+ "linux": null,
3281
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3282
+ "macos": null
3283
+ }
3284
+ }
3285
+ },
3286
+ {
3287
+ "appName": "db-browser-sqlite",
3288
+ "repoURL": "CMD",
3289
+ "doc": "🗄️ DB Browser for SQLite database tool",
3290
+ "fileNamePattern": {
3291
+ "amd64": {
3292
+ "linux": null,
3293
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3294
+ "macos": null
3295
+ },
3296
+ "arm64": {
3297
+ "linux": null,
3298
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3299
+ "macos": null
3300
+ }
3301
+ }
3302
+ },
3303
+ {
3304
+ "appName": "ssms",
3305
+ "repoURL": "CMD",
3306
+ "doc": "🗄️ SQL Server Management Studio",
3307
+ "fileNamePattern": {
3308
+ "amd64": {
3309
+ "linux": null,
3310
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3311
+ "macos": null
3312
+ },
3313
+ "arm64": {
3314
+ "linux": null,
3315
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3316
+ "macos": null
3317
+ }
3318
+ }
3319
+ },
3320
+ {
3321
+ "appName": "adobe-reader",
3322
+ "repoURL": "CMD",
3323
+ "doc": "📄 Adobe Acrobat Reader DC",
3324
+ "fileNamePattern": {
3325
+ "amd64": {
3326
+ "linux": null,
3327
+ "windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3328
+ "macos": null
3329
+ },
3330
+ "arm64": {
3331
+ "linux": null,
3332
+ "windows": "winget install --no-upgrade --name \"Adobe Acrobat Reader DC\" --Id \"Adobe.Acrobat.Reader.64-bit\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3333
+ "macos": null
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ "appName": "julia",
3339
+ "repoURL": "CMD",
3340
+ "doc": "📊 Julia programming language",
3341
+ "fileNamePattern": {
3342
+ "amd64": {
3343
+ "linux": null,
3344
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3345
+ "macos": null
3346
+ },
3347
+ "arm64": {
3348
+ "linux": null,
3349
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3350
+ "macos": null
3351
+ }
3352
+ }
3353
+ },
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
+ {
3372
+ "appName": "awscli",
3373
+ "repoURL": "CMD",
3374
+ "doc": "☁️ AWS Command Line Interface",
3375
+ "fileNamePattern": {
3376
+ "amd64": {
3377
+ "linux": null,
3378
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3379
+ "macos": null
3380
+ },
3381
+ "arm64": {
3382
+ "linux": null,
3383
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3384
+ "macos": null
3385
+ }
3386
+ }
3387
+ },
3388
+ {
3389
+ "appName": "notepadplusplus",
3390
+ "repoURL": "CMD",
3391
+ "doc": "📝 Notepad++ text editor",
3392
+ "fileNamePattern": {
3393
+ "amd64": {
3394
+ "linux": null,
3395
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3396
+ "macos": null
3397
+ },
3398
+ "arm64": {
3399
+ "linux": null,
3400
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3401
+ "macos": null
3402
+ }
3403
+ }
2690
3404
  }
2691
3405
  ]
2692
3406
  }