machineconfig 7.47__py3-none-any.whl → 7.52__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 (62) hide show
  1. machineconfig/cluster/sessions_managers/utils/maker.py +2 -2
  2. machineconfig/jobs/installer/custom/hx.py +1 -0
  3. machineconfig/jobs/installer/custom_dev/brave.py +1 -1
  4. machineconfig/jobs/installer/custom_dev/code.py +4 -1
  5. machineconfig/jobs/installer/custom_dev/nerfont_windows_helper.py +0 -9
  6. machineconfig/jobs/installer/custom_dev/sysabc.py +140 -0
  7. machineconfig/jobs/installer/custom_dev/wezterm.py +2 -15
  8. machineconfig/jobs/installer/installer_data.json +689 -9
  9. machineconfig/jobs/installer/linux_scripts/redis.sh +1 -0
  10. machineconfig/jobs/installer/package_groups.py +23 -72
  11. machineconfig/logger.py +0 -1
  12. machineconfig/profile/create_links_export.py +15 -6
  13. machineconfig/profile/mapper.toml +3 -6
  14. machineconfig/scripts/python/croshell.py +20 -43
  15. machineconfig/scripts/python/devops.py +1 -1
  16. machineconfig/scripts/python/env_manager/path_manager_tui.py +1 -1
  17. machineconfig/scripts/python/fire_jobs.py +52 -39
  18. machineconfig/scripts/python/ftpx.py +4 -2
  19. machineconfig/scripts/python/helpers_agents/agentic_frameworks/fire_qwen.py +0 -12
  20. machineconfig/scripts/python/helpers_croshell/crosh.py +1 -1
  21. machineconfig/scripts/python/helpers_devops/cli_config.py +3 -19
  22. machineconfig/scripts/python/helpers_devops/cli_self.py +12 -6
  23. machineconfig/scripts/python/helpers_devops/cli_utils.py +1 -80
  24. machineconfig/scripts/python/helpers_fire_command/file_wrangler.py +0 -17
  25. machineconfig/scripts/python/helpers_msearch/scripts_linux/fzfg +1 -1
  26. machineconfig/scripts/python/helpers_repos/clone.py +0 -1
  27. machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +1 -1
  28. machineconfig/scripts/python/helpers_repos/count_lines_frontend.py +1 -1
  29. machineconfig/scripts/python/helpers_sessions/sessions_multiprocess.py +2 -2
  30. machineconfig/scripts/python/helpers_utils/path.py +106 -0
  31. machineconfig/scripts/python/interactive.py +9 -15
  32. machineconfig/scripts/python/sessions.py +2 -2
  33. machineconfig/scripts/python/utils.py +7 -3
  34. machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
  35. machineconfig/settings/shells/nushell/init.nu +2 -2
  36. machineconfig/settings/shells/zsh/init.sh +1 -1
  37. machineconfig/settings/yazi/keymap_windows.toml +78 -0
  38. machineconfig/setup_linux/__init__.py +0 -1
  39. machineconfig/setup_linux/web_shortcuts/interactive.sh +11 -10
  40. machineconfig/setup_mac/__init__.py +2 -3
  41. machineconfig/setup_windows/__init__.py +0 -3
  42. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +11 -10
  43. machineconfig/setup_windows/web_shortcuts/quick_init.ps1 +15 -0
  44. machineconfig/utils/installer.py +11 -27
  45. machineconfig/utils/installer_utils/installer.py +9 -50
  46. machineconfig/utils/installer_utils/installer_abc.py +0 -68
  47. machineconfig/utils/io.py +0 -1
  48. machineconfig/utils/path_helper.py +57 -6
  49. machineconfig/utils/ssh.py +3 -3
  50. {machineconfig-7.47.dist-info → machineconfig-7.52.dist-info}/METADATA +5 -3
  51. {machineconfig-7.47.dist-info → machineconfig-7.52.dist-info}/RECORD +57 -58
  52. machineconfig/jobs/installer/linux_scripts/timescaledb.sh +0 -71
  53. machineconfig/jobs/installer/powershell_scripts/archive_pygraphviz.ps1 +0 -12
  54. machineconfig/setup_linux/apps.sh +0 -66
  55. machineconfig/setup_mac/apps.sh +0 -73
  56. machineconfig/setup_windows/apps.ps1 +0 -62
  57. /machineconfig/settings/yazi/{keymap.toml → keymap_linux.toml} +0 -0
  58. /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_add_key.ps1 +0 -0
  59. /machineconfig/{jobs/installer/powershell_scripts → setup_windows/ssh}/openssh-server_copy-ssh-id.ps1 +0 -0
  60. {machineconfig-7.47.dist-info → machineconfig-7.52.dist-info}/WHEEL +0 -0
  61. {machineconfig-7.47.dist-info → machineconfig-7.52.dist-info}/entry_points.txt +0 -0
  62. {machineconfig-7.47.dist-info → machineconfig-7.52.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",
@@ -1225,6 +1259,57 @@
1225
1259
  }
1226
1260
  }
1227
1261
  },
1262
+ {
1263
+ "appName": "sqlite3",
1264
+ "repoURL": "CMD",
1265
+ "doc": "A cli for sqlite",
1266
+ "fileNamePattern": {
1267
+ "amd64": {
1268
+ "linux": "sudo nala install sqlite3 -y",
1269
+ "macos": null,
1270
+ "windows": null
1271
+ },
1272
+ "arm64": {
1273
+ "linux": null,
1274
+ "macos": null,
1275
+ "windows": null
1276
+ }
1277
+ }
1278
+ },
1279
+ {
1280
+ "appName": "postgresql-client",
1281
+ "repoURL": "CMD",
1282
+ "doc": "A cli for postgresql",
1283
+ "fileNamePattern": {
1284
+ "amd64": {
1285
+ "linux": "sudo nala install postgresql-client -y",
1286
+ "macos": null,
1287
+ "windows": null
1288
+ },
1289
+ "arm64": {
1290
+ "linux": null,
1291
+ "macos": null,
1292
+ "windows": null
1293
+ }
1294
+ }
1295
+ },
1296
+ {
1297
+ "appName": "redis-cli",
1298
+ "repoURL": "CMD",
1299
+ "doc": "A cli for redis",
1300
+ "fileNamePattern": {
1301
+ "amd64": {
1302
+ "linux": "sudo nala install redis-tools -y",
1303
+ "macos": null,
1304
+ "windows": null
1305
+ },
1306
+ "arm64": {
1307
+ "linux": null,
1308
+ "macos": null,
1309
+ "windows": null
1310
+ }
1311
+ }
1312
+ },
1228
1313
  {
1229
1314
  "appName": "DBeaver",
1230
1315
  "repoURL": "https://github.com/dbeaver/dbeaver",
@@ -1890,18 +1975,18 @@
1890
1975
  },
1891
1976
  {
1892
1977
  "appName": "tokei",
1893
- "repoURL": "https://github.com/XAMPPRocky/tokei",
1978
+ "repoURL": "CMD",
1894
1979
  "doc": "📊 Counts the number of lines of code, comments, and blanks in a project.",
1895
1980
  "fileNamePattern": {
1896
1981
  "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"
1982
+ "linux": "cargo install tokei",
1983
+ "macos": "brew install tokei",
1984
+ "windows": "winget install XAMPPRocky.tokei"
1900
1985
  },
1901
1986
  "arm64": {
1902
- "linux": "tokei-aarch64-unknown-linux-gnu.tar.gz",
1903
- "macos": "tokei-aarch64-apple-darwin.tar.gz",
1904
- "windows": null
1987
+ "linux": "cargo install tokei",
1988
+ "macos": "brew install tokei",
1989
+ "windows": "winget install XAMPPRocky.tokei"
1905
1990
  }
1906
1991
  }
1907
1992
  },
@@ -2166,8 +2251,8 @@
2166
2251
  "doc": "🐚 Nushell, a cross-platform shell in Rust.",
2167
2252
  "fileNamePattern": {
2168
2253
  "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",
2254
+ "linux": "nu-{version}-x86_64-unknown-linux-gnu.tar.gz",
2255
+ "macos": "nu-{version}-x86_64-apple-darwin.tar.gz",
2171
2256
  "windows": "nu-{version}-x86_64-pc-windows-msvc.zip"
2172
2257
  },
2173
2258
  "arm64": {
@@ -2687,6 +2772,601 @@
2687
2772
  "macos": "hx.py"
2688
2773
  }
2689
2774
  }
2775
+ },
2776
+ {
2777
+ "appName": "file",
2778
+ "repoURL": "CMD",
2779
+ "doc": "🔍 File type identification utility",
2780
+ "fileNamePattern": {
2781
+ "amd64": {
2782
+ "linux": null,
2783
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2784
+ "macos": null
2785
+ },
2786
+ "arm64": {
2787
+ "linux": null,
2788
+ "windows": "winget install --no-upgrade --name \"File\" --Id \"GnuWin32.File\" --source winget --accept-package-agreements --accept-source-agreements",
2789
+ "macos": null
2790
+ }
2791
+ }
2792
+ },
2793
+ {
2794
+ "appName": "oh-my-posh",
2795
+ "repoURL": "CMD",
2796
+ "doc": "✨ Prompt theme engine for any shell",
2797
+ "fileNamePattern": {
2798
+ "amd64": {
2799
+ "linux": null,
2800
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2801
+ "macos": null
2802
+ },
2803
+ "arm64": {
2804
+ "linux": null,
2805
+ "windows": "winget install --no-upgrade --name \"Oh My Posh\" --Id \"JanDeDobbeleer.OhMyPosh\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2806
+ "macos": null
2807
+ }
2808
+ }
2809
+ },
2810
+ {
2811
+ "appName": "vsredistrib",
2812
+ "repoURL": "CMD",
2813
+ "doc": "📦 Microsoft Visual C++ Redistributable",
2814
+ "fileNamePattern": {
2815
+ "amd64": {
2816
+ "linux": null,
2817
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2818
+ "macos": null
2819
+ },
2820
+ "arm64": {
2821
+ "linux": null,
2822
+ "windows": "winget install --no-upgrade --name \"VSRedistrib\" --Id \"Microsoft.VC++2015-2022Redist-x64\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2823
+ "macos": null
2824
+ }
2825
+ }
2826
+ },
2827
+ {
2828
+ "appName": "vsbuildtools",
2829
+ "repoURL": "CMD",
2830
+ "doc": "🔨 Visual Studio Build Tools",
2831
+ "fileNamePattern": {
2832
+ "amd64": {
2833
+ "linux": null,
2834
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2835
+ "macos": null
2836
+ },
2837
+ "arm64": {
2838
+ "linux": null,
2839
+ "windows": "winget install --no-upgrade --name \"VSBuildTools\" --Id \"Microsoft.VisualStudio.2022.BuildTools\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2840
+ "macos": null
2841
+ }
2842
+ }
2843
+ },
2844
+ {
2845
+ "appName": "codeblocks",
2846
+ "repoURL": "CMD",
2847
+ "doc": "💻 IDE for C/C++",
2848
+ "fileNamePattern": {
2849
+ "amd64": {
2850
+ "linux": null,
2851
+ "windows": "winget install --no-upgrade --name \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --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 \"Codeblocks\" --Id \"Codeblocks.Codeblocks\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2857
+ "macos": null
2858
+ }
2859
+ }
2860
+ },
2861
+ {
2862
+ "appName": "make",
2863
+ "repoURL": "CMD",
2864
+ "doc": "🔧 GNU Make utility for building projects",
2865
+ "fileNamePattern": {
2866
+ "amd64": {
2867
+ "linux": null,
2868
+ "windows": "winget install --no-upgrade --name \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --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 \"GnuWin32: Make\" --Id \"GnuWin32.Make\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2874
+ "macos": null
2875
+ }
2876
+ }
2877
+ },
2878
+ {
2879
+ "appName": "gnupg",
2880
+ "repoURL": "CMD",
2881
+ "doc": "🔐 GNU Privacy Guard encryption tool",
2882
+ "fileNamePattern": {
2883
+ "amd64": {
2884
+ "linux": null,
2885
+ "windows": "winget install --no-upgrade --name \"GnuPG\" --Id \"GnuPG.GnuPG\" --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 \"GnuPG\" --Id \"GnuPG.GnuPG\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2891
+ "macos": null
2892
+ }
2893
+ }
2894
+ },
2895
+ {
2896
+ "appName": "graphviz",
2897
+ "repoURL": "CMD",
2898
+ "doc": "📊 Graph visualization software",
2899
+ "fileNamePattern": {
2900
+ "amd64": {
2901
+ "linux": "sudo nala install graphviz -y",
2902
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2903
+ "macos": "brew install graphviz"
2904
+ },
2905
+ "arm64": {
2906
+ "linux": "sudo nala install graphviz -y",
2907
+ "windows": "winget install --no-upgrade --name \"graphviz\" --Id \"Graphviz.Graphviz\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2908
+ "macos": "brew install graphviz"
2909
+ }
2910
+ }
2911
+ },
2912
+ {
2913
+ "appName": "winfsp",
2914
+ "repoURL": "CMD",
2915
+ "doc": "💾 Windows File System Proxy",
2916
+ "fileNamePattern": {
2917
+ "amd64": {
2918
+ "linux": null,
2919
+ "windows": "winget install --no-upgrade --name \"WinFsp\" --Id \"WinFsp.WinFsp\" --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 \"WinFsp\" --Id \"WinFsp.WinFsp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2925
+ "macos": null
2926
+ }
2927
+ }
2928
+ },
2929
+ {
2930
+ "appName": "sshfs",
2931
+ "repoURL": "CMD",
2932
+ "doc": "🌐 Mount remote filesystems over SSH",
2933
+ "fileNamePattern": {
2934
+ "amd64": {
2935
+ "linux": "sudo nala install sshfs",
2936
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2937
+ "macos": "brew install sshfs"
2938
+ },
2939
+ "arm64": {
2940
+ "linux": "sudo nala install sshfs",
2941
+ "windows": "winget install --no-upgrade --name \"SSHFS-win\" --Id \"SSHFS-Win.SSHFS-Win\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2942
+ "macos": "brew install sshfs"
2943
+ }
2944
+ }
2945
+ },
2946
+ {
2947
+ "appName": "xming",
2948
+ "repoURL": "CMD",
2949
+ "doc": "🖥️ X11 server for Windows",
2950
+ "fileNamePattern": {
2951
+ "amd64": {
2952
+ "linux": null,
2953
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2954
+ "macos": null
2955
+ },
2956
+ "arm64": {
2957
+ "linux": null,
2958
+ "windows": "winget install --no-upgrade --name \"xming\" --Id \"xming.xming\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2959
+ "macos": null
2960
+ }
2961
+ }
2962
+ },
2963
+ {
2964
+ "appName": "nodejs",
2965
+ "repoURL": "CMD",
2966
+ "doc": "🟢 JavaScript runtime environment",
2967
+ "fileNamePattern": {
2968
+ "amd64": {
2969
+ "linux": null,
2970
+ "windows": "winget install --no-upgrade --name \"Node.js\" --Id \"OpenJS.NodeJS\" --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 \"Node.js\" --Id \"OpenJS.NodeJS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2976
+ "macos": null
2977
+ }
2978
+ }
2979
+ },
2980
+ {
2981
+ "appName": "rustup",
2982
+ "repoURL": "CMD",
2983
+ "doc": "🦀 Rust toolchain installer",
2984
+ "fileNamePattern": {
2985
+ "amd64": {
2986
+ "linux": null,
2987
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2988
+ "macos": null
2989
+ },
2990
+ "arm64": {
2991
+ "linux": null,
2992
+ "windows": "winget install --no-upgrade --name \"Rustup\" --Id \"Rustlang.Rustup\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
2993
+ "macos": null
2994
+ }
2995
+ }
2996
+ },
2997
+ {
2998
+ "appName": "cloudflare-warp",
2999
+ "repoURL": "CMD",
3000
+ "doc": "🌐 Cloudflare WARP VPN client",
3001
+ "fileNamePattern": {
3002
+ "amd64": {
3003
+ "linux": null,
3004
+ "windows": "winget install --no-upgrade --name \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --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 \"Cloudflare WARP\" --Id \"Cloudflare.Warp\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3010
+ "macos": null
3011
+ }
3012
+ }
3013
+ },
3014
+ {
3015
+ "appName": "mouse-without-borders",
3016
+ "repoURL": "CMD",
3017
+ "doc": "🖱️ Control multiple computers with one mouse",
3018
+ "fileNamePattern": {
3019
+ "amd64": {
3020
+ "linux": null,
3021
+ "windows": "winget install --no-upgrade --name \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --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 \"Microsoft Garage Mouse without Borders\" --Id \"Microsoft.MouseWithoutBorders\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3027
+ "macos": null
3028
+ }
3029
+ }
3030
+ },
3031
+ {
3032
+ "appName": "chrome",
3033
+ "repoURL": "CMD",
3034
+ "doc": "🌐 Google Chrome web browser",
3035
+ "fileNamePattern": {
3036
+ "amd64": {
3037
+ "linux": null,
3038
+ "windows": "winget install --no-upgrade --name \"Google Chrome\" --Id \"Google.Chrome\" --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 \"Google Chrome\" --Id \"Google.Chrome\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3044
+ "macos": null
3045
+ }
3046
+ }
3047
+ },
3048
+ {
3049
+ "appName": "chrome-remote-desktop",
3050
+ "repoURL": "CMD",
3051
+ "doc": "🖥️ Chrome Remote Desktop Host",
3052
+ "fileNamePattern": {
3053
+ "amd64": {
3054
+ "linux": null,
3055
+ "windows": "winget install --no-upgrade --name \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --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 \"Chrome Remote Desktop Host\" --Id \"Google.ChromeRemoteDesktop\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3061
+ "macos": null
3062
+ }
3063
+ }
3064
+ },
3065
+ {
3066
+ "appName": "zoom",
3067
+ "repoURL": "CMD",
3068
+ "doc": "📹 Video conferencing software",
3069
+ "fileNamePattern": {
3070
+ "amd64": {
3071
+ "linux": null,
3072
+ "windows": "winget install --no-upgrade --name \"Zoom\" --Id \"Zoom.Zoom\" --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 \"Zoom\" --Id \"Zoom.Zoom\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3078
+ "macos": null
3079
+ }
3080
+ }
3081
+ },
3082
+ {
3083
+ "appName": "7zip",
3084
+ "repoURL": "CMD",
3085
+ "doc": "📦 File archiver with high compression ratio",
3086
+ "fileNamePattern": {
3087
+ "amd64": {
3088
+ "linux": null,
3089
+ "windows": "winget install --no-upgrade --name \"7-zip\" --Id \"7zip.7zip\" --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 \"7-zip\" --Id \"7zip.7zip\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3095
+ "macos": null
3096
+ }
3097
+ }
3098
+ },
3099
+ {
3100
+ "appName": "firefox",
3101
+ "repoURL": "CMD",
3102
+ "doc": "🦊 Mozilla Firefox web browser",
3103
+ "fileNamePattern": {
3104
+ "amd64": {
3105
+ "linux": null,
3106
+ "windows": "winget install --no-upgrade --name \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --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 \"Mozilla Firefox\" --Id \"Mozilla.Firefox\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3112
+ "macos": null
3113
+ }
3114
+ }
3115
+ },
3116
+ {
3117
+ "appName": "thunderbird",
3118
+ "repoURL": "CMD",
3119
+ "doc": "📧 Mozilla Thunderbird email client",
3120
+ "fileNamePattern": {
3121
+ "amd64": {
3122
+ "linux": null,
3123
+ "windows": "winget install --no-upgrade --name \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --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 \"Mozilla Thunderbird (en-US)\" --Id \"Mozilla.Thunderbird\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3129
+ "macos": null
3130
+ }
3131
+ }
3132
+ },
3133
+ {
3134
+ "appName": "streamlabs-obs",
3135
+ "repoURL": "CMD",
3136
+ "doc": "🎥 Streamlabs OBS streaming software",
3137
+ "fileNamePattern": {
3138
+ "amd64": {
3139
+ "linux": null,
3140
+ "windows": "winget install --no-upgrade --name \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --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 \"StreamlabsOBS\" --Id \"Streamlabs.StreamlabsOBS\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3146
+ "macos": null
3147
+ }
3148
+ }
3149
+ },
3150
+ {
3151
+ "appName": "obs-studio",
3152
+ "repoURL": "CMD",
3153
+ "doc": "🎬 OBS Studio streaming and recording software",
3154
+ "fileNamePattern": {
3155
+ "amd64": {
3156
+ "linux": null,
3157
+ "windows": "winget install --no-upgrade --name \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --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 \"OBSStudio\" --Id \"OBSProject.OBSStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3163
+ "macos": null
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "appName": "miktex",
3169
+ "repoURL": "CMD",
3170
+ "doc": "📝 LaTeX distribution for Windows",
3171
+ "fileNamePattern": {
3172
+ "amd64": {
3173
+ "linux": null,
3174
+ "windows": "winget install --no-upgrade --name \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --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 \"MiKTeX\" --Id \"MiKTeX.MiKTeX\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3180
+ "macos": null
3181
+ }
3182
+ }
3183
+ },
3184
+ {
3185
+ "appName": "texmaker",
3186
+ "repoURL": "CMD",
3187
+ "doc": "📄 LaTeX editor",
3188
+ "fileNamePattern": {
3189
+ "amd64": {
3190
+ "linux": null,
3191
+ "windows": "winget install --no-upgrade --name \"TexMaker\" --Id \"Texmaker.Texmaker\" --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 \"TexMaker\" --Id \"Texmaker.Texmaker\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3197
+ "macos": null
3198
+ }
3199
+ }
3200
+ },
3201
+ {
3202
+ "appName": "lapce",
3203
+ "repoURL": "CMD",
3204
+ "doc": "⚡ Lightning-fast code editor written in Rust",
3205
+ "fileNamePattern": {
3206
+ "amd64": {
3207
+ "linux": null,
3208
+ "windows": "winget install --no-upgrade --name \"Lapce\" --Id \"Lapce.Lapce\" --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 \"Lapce\" --Id \"Lapce.Lapce\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3214
+ "macos": null
3215
+ }
3216
+ }
3217
+ },
3218
+ {
3219
+ "appName": "tesseract",
3220
+ "repoURL": "CMD",
3221
+ "doc": "🔤 OCR engine for text recognition",
3222
+ "fileNamePattern": {
3223
+ "amd64": {
3224
+ "linux": null,
3225
+ "windows": "winget install --no-upgrade --name \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --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 \"TesseractOCR\" --Id \"UB-Mannheim.TesseractOCR\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3231
+ "macos": null
3232
+ }
3233
+ }
3234
+ },
3235
+ {
3236
+ "appName": "perl",
3237
+ "repoURL": "CMD",
3238
+ "doc": "🍓 Strawberry Perl programming language",
3239
+ "fileNamePattern": {
3240
+ "amd64": {
3241
+ "linux": null,
3242
+ "windows": "winget install --no-upgrade --name \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --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 \"perl\" --Id \"StrawberryPerl.StrawberryPerl\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3248
+ "macos": null
3249
+ }
3250
+ }
3251
+ },
3252
+ {
3253
+ "appName": "db-browser-sqlite",
3254
+ "repoURL": "CMD",
3255
+ "doc": "🗄️ DB Browser for SQLite database tool",
3256
+ "fileNamePattern": {
3257
+ "amd64": {
3258
+ "linux": null,
3259
+ "windows": "winget install --no-upgrade --name \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --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 \"DB Browser for SQLite\" --Id \"DBBrowserForSQLite.DBBrowserForSQLite\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3265
+ "macos": null
3266
+ }
3267
+ }
3268
+ },
3269
+ {
3270
+ "appName": "ssms",
3271
+ "repoURL": "CMD",
3272
+ "doc": "🗄️ SQL Server Management Studio",
3273
+ "fileNamePattern": {
3274
+ "amd64": {
3275
+ "linux": null,
3276
+ "windows": "winget install --no-upgrade --name \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --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 \"sql server management studio\" --Id \"Microsoft.SQLServerManagementStudio\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3282
+ "macos": null
3283
+ }
3284
+ }
3285
+ },
3286
+ {
3287
+ "appName": "adobe-reader",
3288
+ "repoURL": "CMD",
3289
+ "doc": "📄 Adobe Acrobat Reader DC",
3290
+ "fileNamePattern": {
3291
+ "amd64": {
3292
+ "linux": null,
3293
+ "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",
3294
+ "macos": null
3295
+ },
3296
+ "arm64": {
3297
+ "linux": null,
3298
+ "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",
3299
+ "macos": null
3300
+ }
3301
+ }
3302
+ },
3303
+ {
3304
+ "appName": "julia",
3305
+ "repoURL": "CMD",
3306
+ "doc": "📊 Julia programming language",
3307
+ "fileNamePattern": {
3308
+ "amd64": {
3309
+ "linux": null,
3310
+ "windows": "winget install --no-upgrade --name \"julia\" --Id \"Julialang.Julia\" --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 \"julia\" --Id \"Julialang.Julia\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3316
+ "macos": null
3317
+ }
3318
+ }
3319
+ },
3320
+ {
3321
+ "appName": "chafa",
3322
+ "repoURL": "CMD",
3323
+ "doc": "🖼️ Terminal graphics and image viewer",
3324
+ "fileNamePattern": {
3325
+ "amd64": {
3326
+ "linux": null,
3327
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3328
+ "macos": "brew install chafa"
3329
+ },
3330
+ "arm64": {
3331
+ "linux": null,
3332
+ "windows": "winget install --no-upgrade --name \"Chafa\" --Id \"hpjansson.Chafa\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3333
+ "macos": "brew install chafa"
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ "appName": "awscli",
3339
+ "repoURL": "CMD",
3340
+ "doc": "☁️ AWS Command Line Interface",
3341
+ "fileNamePattern": {
3342
+ "amd64": {
3343
+ "linux": null,
3344
+ "windows": "winget install --no-upgrade --name \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --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 \"AWS Command Line Interface\" --Id \"Amazon.AWSCLI\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3350
+ "macos": null
3351
+ }
3352
+ }
3353
+ },
3354
+ {
3355
+ "appName": "notepadplusplus",
3356
+ "repoURL": "CMD",
3357
+ "doc": "📝 Notepad++ text editor",
3358
+ "fileNamePattern": {
3359
+ "amd64": {
3360
+ "linux": null,
3361
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3362
+ "macos": null
3363
+ },
3364
+ "arm64": {
3365
+ "linux": null,
3366
+ "windows": "winget install --no-upgrade --name \"notepad++\" --Id \"Notepad++.Notepad++\" --source winget --scope user --accept-package-agreements --accept-source-agreements",
3367
+ "macos": null
3368
+ }
3369
+ }
2690
3370
  }
2691
3371
  ]
2692
3372
  }