machineconfig 1.8__py3-none-any.whl → 1.9__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 (37) hide show
  1. machineconfig/__init__.py +4 -2
  2. machineconfig/jobs/python/check_installations.py +1 -1
  3. machineconfig/jobs/python_custom_installers/azuredatastudio.py +36 -0
  4. machineconfig/jobs/{script_installer → python_custom_installers}/bypass_paywall.py +8 -1
  5. machineconfig/jobs/{script_installer → python_custom_installers}/docker_desktop.py +14 -3
  6. machineconfig/jobs/python_custom_installers/gh.py +53 -0
  7. machineconfig/jobs/python_custom_installers/goes.py +35 -0
  8. machineconfig/jobs/python_custom_installers/helix.py +43 -0
  9. machineconfig/jobs/python_custom_installers/lvim.py +48 -0
  10. machineconfig/jobs/{script_installer → python_custom_installers}/ngrok.py +11 -1
  11. machineconfig/jobs/python_custom_installers/nvim.py +48 -0
  12. machineconfig/jobs/{script_installer/code.py → python_custom_installers/vscode.py} +11 -0
  13. machineconfig/jobs/python_custom_installers/wezterm.py +41 -0
  14. machineconfig/profile/create.py +4 -1
  15. machineconfig/scripts/python/choose_wezterm_theme.py +96 -0
  16. machineconfig/scripts/python/cloud_copy.py +5 -1
  17. machineconfig/scripts/python/cloud_mount.py +20 -10
  18. machineconfig/scripts/python/cloud_repo_sync.py +30 -22
  19. machineconfig/scripts/python/cloud_sync.py +4 -6
  20. machineconfig/scripts/python/croshell.py +17 -8
  21. machineconfig/scripts/python/devops_devapps_install.py +12 -6
  22. machineconfig/scripts/python/fire_jobs.py +92 -53
  23. machineconfig/scripts/python/ftpx.py +17 -7
  24. machineconfig/scripts/python/repos.py +5 -1
  25. machineconfig/scripts/python/start_terminals.py +1 -1
  26. machineconfig/utils/installer.py +98 -30
  27. machineconfig/utils/utils.py +6 -4
  28. machineconfig/utils/ve.py +37 -16
  29. machineconfig-1.9.dist-info/LICENSE +201 -0
  30. {machineconfig-1.8.dist-info → machineconfig-1.9.dist-info}/METADATA +155 -140
  31. {machineconfig-1.8.dist-info → machineconfig-1.9.dist-info}/RECORD +34 -28
  32. {machineconfig-1.8.dist-info → machineconfig-1.9.dist-info}/WHEEL +1 -1
  33. machineconfig/jobs/script_installer/azure_data_studio.py +0 -22
  34. machineconfig/jobs/script_installer/skim.py +0 -21
  35. machineconfig/jobs/script_installer/wezterm.py +0 -34
  36. /machineconfig/jobs/{script_installer → python_custom_installers}/__init__.py +0 -0
  37. {machineconfig-1.8.dist-info → machineconfig-1.9.dist-info}/top_level.txt +0 -0
@@ -1,140 +1,155 @@
1
- Metadata-Version: 2.1
2
- Name: machineconfig
3
- Version: 1.8
4
- Summary: Dotfiles management package
5
- Home-page: https://github.com/thisismygitrepo/machineconfig
6
- Author: Alex Al-Saffar
7
- Author-email: programmer@usa.com
8
- Project-URL: Bug Tracker, https://github.com/thisismygitrepo/machineconfig/issues
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.9
13
- Description-Content-Type: text/markdown
14
- Requires-Dist: rich
15
- Requires-Dist: paramiko
16
- Requires-Dist: gitpython
17
- Requires-Dist: pudb
18
- Requires-Dist: pyfzf
19
- Requires-Dist: clipboard
20
- Requires-Dist: psutil
21
- Requires-Dist: pydantic
22
-
23
-
24
- <p align="center">
25
-
26
- <a href="https://github.com/thisismygitrepo/machineconfig/commits">
27
- <img src="https://img.shields.io/github/commit-activity/m/thisismygitrepo/machineconfig" />
28
- </a>
29
-
30
- </p>
31
-
32
-
33
- # Welcome to machineconfig
34
-
35
- # Shortcuts
36
- * `bit.ly/cfgroot` is a shortcut to this repo.
37
- * `curl bit.ly/cfgread -L | bat -l md --style="header"` to get the readme file.
38
-
39
- Machineconfig is a package for managing configuration files (aka dotfiles). The idea is to collect those critical, time-consuming-files-to-setup in one directory and reference them via symbolic links from their original locations. Thus, when a new machine is to be setup, all that is required is to clone the repo in that machine and create the symbolic links.
40
- Dotfiles include, but are not limited to:
41
- * `~/.gitconfig`
42
- * `~/.ssh`
43
- * `~/.aws`
44
- * `~/.bash_profile`
45
- * `~/.bashrc`
46
- * `~/.config`
47
- * `$profile` in Windows Powershell
48
- * etc
49
-
50
-
51
- Additionally, files that contain data, sensitive information that should not be pushed to a repository are contained in a directory `~/dotfiles`. The files therein are encrypted before backedup.
52
-
53
-
54
- ## Windows Setup
55
- With elevated `PowerShell`, run the following: (short `curl bit.ly/cfgallwindows -L | iex`)
56
- ```shell
57
- # apps # short: `(iwr bit.ly/cfgappswindows).Content | iex`
58
- Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/apps.ps1 | Invoke-Expression
59
- # virtual enviornment # short (iwr bit.ly/cfgvewindows).Content | iex OR `curl bit.ly/cfgvewindows -L | iex`
60
- Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1 | Invoke-Expression
61
- # dev repos # short `(iwr bit.ly/cfgreposwindows).Content | iex` OR `curl bit.ly/cfgreposwindows -L | iex`
62
- Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/repos.ps1 | Invoke-Expression
63
- # symlinks # short `curl bit.ly/cfgsymlinkswindows -L | iex` OR `(iwr bit.ly/cfgsymlinkswindows).Content | iex`
64
- . ~/code/machineconfig/src/machineconfig/setup_windows/symlinks.ps1
65
- # devapps:
66
- ~/code/machineconfig/src/machineconfig/setup_windows/devapps.ps1
67
- # pwsh and wt settings: (iwr bit.ly/cfgwt).Content | iex
68
- iwr https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/wt_and_pwsh.ps1 | iex
69
-
70
- ```
71
-
72
- ```shell
73
- (iwr bit.ly/cfgappswindows).Content | iex
74
- (iwr bit.ly/cfgvewindows).Content | iex
75
- (iwr bit.ly/cfgreposwindows).Content | iex
76
- . ~/code/machineconfig/src/machineconfig/setup_windows/devapps.ps1
77
- (iwr bit.ly/cfgwt).Content | iex
78
- . ~/code/machineconfig/src/machineconfig/setup_windows/symlinks.ps1
79
- ```
80
-
81
- ###### Setup SSH connection:
82
- ```shell
83
- # CHANGE pubkey_string APPROPRIATELY
84
- $pubkey_string=(Invoke-WebRequest 'https://github.com/thisismygitrepo.keys').Content
85
- Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/openssh_all.ps1 | Invoke-Expression
86
- ```
87
- short `(iwr bit.ly/cfgsshwindows).Content | iex` OR `curl bit.ly/cfgsshwindows -L | iex`
88
-
89
- ###### Install Croshell Terminal Directly,
90
- ```shell
91
- Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/web_shortcuts/croshell.ps1 | Invoke-Expression
92
- ```
93
- short: `curl bit.ly/cfgcroshellwindows -L | iex` OR `(iwr bit.ly/cfgcroshellwindows).Content | iex`
94
-
95
-
96
- # Linux Setup
97
- With `sudo` access, run the following: (short `curl bit.ly/cfgalllinux -L | bash`)
98
- ```bash
99
- export package_manager="apt"
100
- export package_manager="nix"
101
-
102
- # apps # short: `curl bit.ly/cfgappslinux -L | bash`
103
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps.sh | bash
104
- # Optionally: curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps_dev.sh | bash
105
-
106
- # virtual enviornment # short `curl bit.ly/cfgvelinux -L | bash`
107
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
108
-
109
- # repos # short `curl bit.ly/cfgreposlinux -L | bash`
110
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/repos.sh | bash
111
- # symlinks and bash profile: # short `curl bit.ly/cfgsymlinkslinux -L | bash`
112
- source ~/code/machineconfig/src/machineconfig/setup_linux/symlinks.sh # requires sudo since it invloves chmod of dotfiles/.ssh, however sudo doesn't work with source. best to have sudo -s earlier.
113
-
114
- # devapps
115
- source <(sudo cat ~/code/machineconfig/src/machineconfig/setup_linux/devapps.sh)
116
- ```
117
-
118
- ###### Setup SSH connection:
119
- ```bash
120
- pubkey_url='https://github.com/thisismygitrepo.keys' # (CHANGE APPROPRIATELY)
121
- export pubkey_string=$(curl --silent $pubkey_url)
122
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_all.sh | sudo bash
123
- # For WSL only, also run the following:
124
- export port=2223
125
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_wsl.sh | sudo bash
126
- # don't forget to run `wsl_ssh_windows_port_forwarding -p 2223` from Windows using the designated port with
127
- ```
128
- short `curl bit.ly/cfgsshlinux -L | bash`
129
-
130
-
131
- ###### Install Croshell Terminal Directly
132
- ```bash
133
- curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/web_shortcuts/croshell.sh | sudo bash
134
- ```
135
- short `curl bit.ly/cfgcroshelllinux -L | bash`
136
-
137
-
138
- # Author
139
- Alex Al-Saffar. [email](mailto:programmer@usa.com)
140
-
1
+ Metadata-Version: 2.1
2
+ Name: machineconfig
3
+ Version: 1.9
4
+ Summary: Dotfiles management package
5
+ Home-page: https://github.com/thisismygitrepo/machineconfig
6
+ Author: Alex Al-Saffar
7
+ Author-email: programmer@usa.com
8
+ Project-URL: Bug Tracker, https://github.com/thisismygitrepo/machineconfig/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: rich
16
+ Requires-Dist: paramiko
17
+ Requires-Dist: gitpython
18
+ Requires-Dist: pudb
19
+ Requires-Dist: pyfzf
20
+ Requires-Dist: clipboard
21
+ Requires-Dist: psutil
22
+ Requires-Dist: pydantic
23
+ Requires-Dist: fire
24
+
25
+
26
+ <p align="center">
27
+
28
+ <a href="https://github.com/thisismygitrepo/machineconfig/commits">
29
+ <img src="https://img.shields.io/github/commit-activity/m/thisismygitrepo/machineconfig" />
30
+ </a>
31
+
32
+ </p>
33
+
34
+
35
+ # Welcome to machineconfig
36
+
37
+ # Shortcuts
38
+ * `bit.ly/cfgroot` is a shortcut to this repo.
39
+ * `glow https://bit.ly/cfgread` OR `curl bit.ly/cfgread -L | bat -l md --style="header"` to get the readme file.
40
+
41
+ Machineconfig is a package for managing configuration files (aka dotfiles). The idea is to collect those critical, time-consuming-files-to-setup in one directory and reference them via symbolic links from their original locations. Thus, when a new machine is to be setup, all that is required is to clone the repo in that machine and create the symbolic links.
42
+ Dotfiles include, but are not limited to:
43
+ * `~/.gitconfig`
44
+ * `~/.ssh`
45
+ * `~/.aws`
46
+ * `~/.bash_profile`
47
+ * `~/.bashrc`
48
+ * `~/.config`
49
+ * `$profile` in Windows Powershell
50
+ * etc
51
+
52
+
53
+ Additionally, files that contain data, sensitive information that should not be pushed to a repository are contained in a directory `~/dotfiles`. The files therein are encrypted before backedup.
54
+
55
+
56
+ ## Windows Setup
57
+ With elevated `PowerShell`, run the following: (short `curl bit.ly/cfgallwindows -L | iex`)
58
+
59
+ **You have to have `winget` first. If its not available in the your terminal, try those resources:**
60
+
61
+ * https://github.com/asheroto/winget-install
62
+ * https://github.com/microsoft/winget-cli
63
+ * https://github.com/microsoft/winget-cli/discussions/3258
64
+
65
+
66
+ ```shell
67
+ # apps # short: `(iwr bit.ly/cfgappswindows).Content | iex`
68
+ Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/apps.ps1 | Invoke-Expression
69
+ # virtual enviornment # short (iwr bit.ly/cfgvewindows).Content | iex OR `curl bit.ly/cfgvewindows -L | iex`
70
+ Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1 | Invoke-Expression
71
+ # dev repos # short `(iwr bit.ly/cfgreposwindows).Content | iex` OR `curl bit.ly/cfgreposwindows -L | iex`
72
+ Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/repos.ps1 | Invoke-Expression
73
+ # symlinks # short `(iwr bit.ly/cfgsymlinkswindows).Content | iex` OR `curl bit.ly/cfgsymlinkswindows -L | iex`
74
+ . ~/code/machineconfig/src/machineconfig/setup_windows/symlinks.ps1
75
+ # devapps:
76
+ ~/code/machineconfig/src/machineconfig/setup_windows/devapps.ps1
77
+ # pwsh and wt settings: (iwr bit.ly/cfgwt).Content | iex
78
+ iwr https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/wt_and_pwsh.ps1 | iex
79
+
80
+ ```
81
+
82
+ ```shell
83
+ (iwr bit.ly/cfgappswindows).Content | iex
84
+ (iwr bit.ly/cfgvewindows).Content | iex
85
+ (iwr bit.ly/cfgreposwindows).Content | iex
86
+ . ~/code/machineconfig/src/machineconfig/setup_windows/devapps.ps1
87
+ (iwr bit.ly/cfgwt).Content | iex
88
+ . ~/code/machineconfig/src/machineconfig/setup_windows/symlinks.ps1
89
+ ```
90
+
91
+ ###### Setup SSH connection:
92
+ ```shell
93
+ # CHANGE pubkey_string APPROPRIATELY
94
+ $pubkey_string=(Invoke-WebRequest 'https://github.com/thisismygitrepo.keys').Content
95
+ Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/openssh_all.ps1 | Invoke-Expression
96
+ ```
97
+ short `(iwr bit.ly/cfgsshwindows).Content | iex` OR `curl bit.ly/cfgsshwindows -L | iex`
98
+
99
+ ###### Install Croshell Terminal Directly,
100
+ ```shell
101
+ Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/web_shortcuts/croshell.ps1 | Invoke-Expression
102
+ ```
103
+ short: `curl bit.ly/cfgcroshellwindows -L | iex` OR `(iwr bit.ly/cfgcroshellwindows).Content | iex`
104
+
105
+
106
+ # Linux Setup
107
+ With `sudo` access, run the following: (short `curl bit.ly/cfgalllinux -L | bash`)
108
+ ```bash
109
+ export package_manager="apt"
110
+ export package_manager="nix"
111
+
112
+ # apps # short: `curl bit.ly/cfgappslinux -L | bash`
113
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps.sh | bash
114
+ # Optionally: curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps_dev.sh | bash
115
+
116
+ # virtual enviornment # short `curl bit.ly/cfgvelinux -L | bash`
117
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
118
+
119
+ # repos # short `curl bit.ly/cfgreposlinux -L | bash`
120
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/repos.sh | bash
121
+ # symlinks and bash profile: # short `curl bit.ly/cfgsymlinkslinux -L | bash`
122
+ source ~/code/machineconfig/src/machineconfig/setup_linux/symlinks.sh # requires sudo since it invloves chmod of dotfiles/.ssh, however sudo doesn't work with source. best to have sudo -s earlier.
123
+
124
+ # devapps
125
+ source <(sudo cat ~/code/machineconfig/src/machineconfig/setup_linux/devapps.sh)
126
+ ```
127
+
128
+ ###### Setup SSH connection:
129
+ ```bash
130
+ pubkey_url='https://github.com/thisismygitrepo.keys' # (CHANGE APPROPRIATELY)
131
+ export pubkey_string=$(curl --silent $pubkey_url)
132
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_all.sh | sudo bash
133
+ # For WSL only, also run the following:
134
+ export port=2223
135
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_wsl.sh | sudo bash
136
+ # don't forget to run `wsl_ssh_windows_port_forwarding -p 2223` from Windows using the designated port with
137
+ ```
138
+ short `curl bit.ly/cfgsshlinux -L | bash`
139
+
140
+
141
+ ###### Install Croshell Terminal Directly
142
+
143
+ ```bash
144
+
145
+ curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/web_shortcuts/croshell.sh | sudo bash
146
+
147
+ ```
148
+ short `curl bit.ly/cfgcroshelllinux -L | bash`
149
+
150
+
151
+ # Author
152
+ Alex Al-Saffar. [email](mailto:programmer@usa.com)
153
+
154
+ [![Alex's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=thisismygitrepo)](https://github.com/ashutosh00710/github-readme-activity-graph)
155
+
@@ -1,57 +1,62 @@
1
- machineconfig/__init__.py,sha256=bsBSmmsUO8rqdzHk2wibjueFpDc0Q97faQnM6vKUNOU,79
1
+ machineconfig/__init__.py,sha256=pqYfEucI3yxmMj4QagEtw-SsPc8rml4VU63cPfSVVy4,78
2
2
  machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- machineconfig/jobs/python/check_installations.py,sha256=CKAfdl7-KafGMSGcSTMs-CpmB4zEP7KKNNnp-nWKI6M,7767
4
+ machineconfig/jobs/python/check_installations.py,sha256=8ad08MWaIlGsi6NAJkC6fQzinn2EyQZJHbdHW-auqxc,7772
5
5
  machineconfig/jobs/python/checkout_version.py,sha256=nrjpz6mK8T7XS1VArFi7slnKKPNlZw0zMr6V2_JeNic,5042
6
6
  machineconfig/jobs/python/create_bootable_media.py,sha256=De1_DUXt5oE7PvNY5P9oIdqxD51qZLJjOfB-XMayVKg,585
7
7
  machineconfig/jobs/python/create_zellij_template.py,sha256=tIGieeq2n21B_dpgkXiR_Zh2q4xUPG3QhqCwLKCkhog,1301
8
8
  machineconfig/jobs/python/python_cargo_build_share.py,sha256=I-xhOKB4Sw0aaPnfk9Ip5Nmu2TOZITsZ_okGrd8deiM,1746
9
9
  machineconfig/jobs/python/python_ve_symlink.py,sha256=ZdXuTfEBkO1uYc6F-xg_bWF46ScQ9Xaj3b2dDqO1BL4,837
10
10
  machineconfig/jobs/python/tasks.py,sha256=1px4SuPYbcmCTGARxUaKvTx4Hza3yurVWEOqNevbaaM,119
11
+ machineconfig/jobs/python_custom_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ machineconfig/jobs/python_custom_installers/azuredatastudio.py,sha256=6N8ymUYM1q2T5VKckT8zLwxyDSh2gM33yoIvUovhtsU,1111
13
+ machineconfig/jobs/python_custom_installers/bypass_paywall.py,sha256=NHt1906iUzRtPheKeBZD1Z6Zj3qj7vG75Q0NV3N9NkQ,825
14
+ machineconfig/jobs/python_custom_installers/docker_desktop.py,sha256=IDiAomtf6sjoLMI3meQ_l5cR7kiPGQpfAJl5rYnOyqg,1662
15
+ machineconfig/jobs/python_custom_installers/gh.py,sha256=4XRUUuT5b29V5WAPgJMGqxLqQ9-wbBv-mAisIxUNubQ,1433
16
+ machineconfig/jobs/python_custom_installers/goes.py,sha256=XbUvVqSHwpF7kg2LU5RT3anzznUZHnGUSs9n-I7WadU,876
17
+ machineconfig/jobs/python_custom_installers/helix.py,sha256=OOulJN5k0FTRtQsmaplsT19hFoSeCne24IAb57XOzok,1465
18
+ machineconfig/jobs/python_custom_installers/lvim.py,sha256=NdYjEJhI2q45IhnQutb8XYJKHm11JtEly44NMhCm-zg,1339
19
+ machineconfig/jobs/python_custom_installers/ngrok.py,sha256=6NgHpnsR1kSoG-BBDt2n5Sea-1_SnIx23pRDS1l09tI,1069
20
+ machineconfig/jobs/python_custom_installers/nvim.py,sha256=ZMzzEsql--u0wZYVmP0nGQxOySNTgbbJ9B7kyx__VjQ,1207
21
+ machineconfig/jobs/python_custom_installers/vscode.py,sha256=uV15ABRfK-H4ChsHUj-Al3R6_CHMNpaIaFspzV9vc5I,1322
22
+ machineconfig/jobs/python_custom_installers/wezterm.py,sha256=2VNNNm7RuMApUK7FDhn-IWTv4MpZp7-5P-kDj2IjZv0,1226
11
23
  machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
24
  machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
25
  machineconfig/jobs/python_linux_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
26
  machineconfig/jobs/python_windows_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
27
  machineconfig/jobs/python_windows_installers/archive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
28
  machineconfig/jobs/python_windows_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- machineconfig/jobs/script_installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- machineconfig/jobs/script_installer/azure_data_studio.py,sha256=iDPiKbEmkjnV_aPVvrnbSVMPw4USTAV1yoT2KuyUgRU,654
19
- machineconfig/jobs/script_installer/bypass_paywall.py,sha256=c2_4UD2hIgs2v3gt_tWz7m5861Vsbt99KDk7kbIQdIY,592
20
- machineconfig/jobs/script_installer/code.py,sha256=F9BPw6ErslGttrJ9M6EDIaF6TXchw8XmHUHAXUIa-mQ,1055
21
- machineconfig/jobs/script_installer/docker_desktop.py,sha256=oPiUUEI5VXhHvnx8xD0IEtpWGg8g3ZoX0PQcYn8Ssk0,1431
22
- machineconfig/jobs/script_installer/ngrok.py,sha256=r9w7VcErKOTLxpbxRIpjMkOjmJ1vJE03-Mf8P8kh2-c,726
23
- machineconfig/jobs/script_installer/skim.py,sha256=O2EE5eT-W7cKiohfOrKj7OM7-3nVVJnjb1ifdWA2H9M,494
24
- machineconfig/jobs/script_installer/wezterm.py,sha256=OcNYPUc2Dx9QCz-im0ryqPEdEAStgB-J0MSKq9n4c1U,950
25
29
  machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- machineconfig/profile/create.py,sha256=9QJGkyHDIG6ArA8RMqiZJrD79eZ0HXOy4qAfd269lV8,4962
30
+ machineconfig/profile/create.py,sha256=aitg44-mDP92p2VnFSJVRJsHW9pjcs7tikVLHoYX84I,5063
27
31
  machineconfig/profile/shell.py,sha256=oo40fnLvxcS2K6wvjN4ITVefhkvIW_VbP8Tua_9mqm0,6129
28
32
  machineconfig/scripts/__init__.py,sha256=8aZPVoch_gcI0Ihcr30zQcPjRQMWiWzDnQXnOm7spzo,73
29
33
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- machineconfig/scripts/python/cloud_copy.py,sha256=fWy2D-oJpguj_VPIHRa-A6RNV2YiD10tk51FTvoJIMg,4619
34
+ machineconfig/scripts/python/choose_wezterm_theme.py,sha256=2nQ9ruqYENQXYepFTocjeIS03P3mFdUNN8zJxCMA6r4,2697
35
+ machineconfig/scripts/python/cloud_copy.py,sha256=LCbPDuIfvn5tnGlkd4cYABSSgYhu4Kyf2_JcAaoaO8A,4983
31
36
  machineconfig/scripts/python/cloud_manager.py,sha256=qfmO63t1LQxO6QHhz3qxePQnas4RsNOjLV1cGK8xK8I,1639
32
- machineconfig/scripts/python/cloud_mount.py,sha256=DsOV_Pt6B_9IwCyf2W6qHlxx41W0f_WqDKcUCWQJPmo,4634
33
- machineconfig/scripts/python/cloud_repo_sync.py,sha256=yZLqOSrCYLNV3mZaLl0wZSu1nE8z5BtAu6OU9Iwtx-8,7805
34
- machineconfig/scripts/python/cloud_sync.py,sha256=oMaemB0DruVPQyHey-C0KvqJQY9ZPxOgTQAq09-7G9M,11240
35
- machineconfig/scripts/python/croshell.py,sha256=Gk4jKJCAsZkCUceKdZdnIRsDbJl74z2xfQwB9dY3ODw,6073
37
+ machineconfig/scripts/python/cloud_mount.py,sha256=7ygg8tu-L-N0Q4KYcV7X2oxQgj6aEF9uIC8YWzdPioc,4882
38
+ machineconfig/scripts/python/cloud_repo_sync.py,sha256=72daMqxkFoplusxkCbgDrR1Il-hBs2BH29QzZi0bJuA,8135
39
+ machineconfig/scripts/python/cloud_sync.py,sha256=iHK-XypTmWxUtVmEeJUHI9AIY1XLzqVrGH3FAxPyaQI,11209
40
+ machineconfig/scripts/python/croshell.py,sha256=JNxEhq_pMyTja08bkZnWa7dtvgbOo4nWlu6epmndViQ,6450
36
41
  machineconfig/scripts/python/devops.py,sha256=imvtmo1PRcP-SlGgPK_Eeghd-ZtHWwV30vx6zyG8lps,5363
37
42
  machineconfig/scripts/python/devops_add_identity.py,sha256=q0DjXowg0dr5nDVrMdyViF_OQdeTN_fDXTVcVPgddfk,1549
38
43
  machineconfig/scripts/python/devops_add_ssh_key.py,sha256=RoHO_lP1DuyKrPl_wYfAJuliRP7CVKssygy3cK2eJXo,3308
39
44
  machineconfig/scripts/python/devops_backup_retrieve.py,sha256=sH3a5Uvz5SDhiypP_KIJR1-RiZT-IU8IOJjpvC1UeGk,2443
40
- machineconfig/scripts/python/devops_devapps_install.py,sha256=64XFl6A1UyDFdUSvy-12wH4DxRAtMZ1MLlwnCR3Vaok,5220
45
+ machineconfig/scripts/python/devops_devapps_install.py,sha256=c-Qr9L7bt9iflB6k-d3QVs_0fHp-b0FvqOptnk5s7qo,5611
41
46
  machineconfig/scripts/python/devops_update_repos.py,sha256=ZW_jI1oNlus929Y2ErXhDWDr6A4SSbTxrutn-__AdI4,2809
42
47
  machineconfig/scripts/python/dotfile.py,sha256=1zPwDgCjwsAFNBJ6h9qCTqpPPDpZzjdDkq6rFVlhvdo,1564
43
- machineconfig/scripts/python/fire_jobs.py,sha256=42ynJDoRPaGKLAC2hpbuWAcjHIIRtBQalRe3N7w5TrU,17217
44
- machineconfig/scripts/python/ftpx.py,sha256=_PDH8QghwTkeNsPXuKXXdRWyEvvSpUW41hMsiui2x_E,4141
48
+ machineconfig/scripts/python/fire_jobs.py,sha256=UnprBED1i4KFh72-Igcg5z-Z4JHA9fulmMqRmP8bQis,19761
49
+ machineconfig/scripts/python/ftpx.py,sha256=PQ7ktw6O4Y9Mv3rdRy8rBPDQQLoEafojTBr5IpLDXW8,4643
45
50
  machineconfig/scripts/python/mount_nfs.py,sha256=MLEZ2IjXPLuWqOwzzWhiV8nxcULS32JHzNnrwulmp4I,2485
46
51
  machineconfig/scripts/python/mount_nw_drive.py,sha256=2AwmOF1IHI_ET9BBjhgMQ9AGn8uj6zoCC7Rg8Iy0G1A,1005
47
52
  machineconfig/scripts/python/mount_ssh.py,sha256=R557UOF3uChH2Mf_eWgSu7GVyzcfNPSaFudn42n51oM,1406
48
53
  machineconfig/scripts/python/onetimeshare.py,sha256=tveeuE_PmRuk7hwJy5c53b2eL0lvxR_MACX5X_4syy8,1881
49
54
  machineconfig/scripts/python/pomodoro.py,sha256=-ag26tR7dre1Zw4xfKkPERDRvn7xSJkWfBpem8VjJzE,1974
50
- machineconfig/scripts/python/repos.py,sha256=0dxJcQm8lzxzxn3aArT_UzwEHFtsjDWOP0LGcvaB3oM,10253
55
+ machineconfig/scripts/python/repos.py,sha256=BsZ4GHaVVou9XlwGidxIcZwghoXOUHZBCiVAmJgkcdw,10412
51
56
  machineconfig/scripts/python/scheduler.py,sha256=PN-_GzkcMCAIdxWj_gQQIFR5OKs8pa3aeXn7Bn4YnEM,2305
52
57
  machineconfig/scripts/python/snapshot.py,sha256=XxnGc8bOb7vgx-TpJVBzgkzQf9Fcz6VyQ3LH7sOsLDI,622
53
58
  machineconfig/scripts/python/start_slidev.py,sha256=mhcXz6LcogTPU1CEGPRzFj8yC_w6ey1k-FeNEfOEiqk,4359
54
- machineconfig/scripts/python/start_terminals.py,sha256=VwAbhZ4LxHhuWvmWaRxWh2HvlPK02kHG0-W7QekubVY,5441
59
+ machineconfig/scripts/python/start_terminals.py,sha256=1BVf6Yrlz3hDZmPS_og4HKfl0Rdcsd-I7JkoNgvpDqs,5442
55
60
  machineconfig/scripts/python/wifi_conn.py,sha256=XABEqc_TNdKa-I3J2DmDgEtT5Xt95fcqjNJ9W9MsEPA,2916
56
61
  machineconfig/scripts/python/wsl_windows_transfer.py,sha256=YDmN3bjz-auWktIlhkj4pEFykysXtMnpjZobhXJ69d4,2198
57
62
  machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -59,12 +64,13 @@ machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
59
64
  machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=bwOvQ8Lcmxy8Mds3pPR7itZA_8FUMOD5RzGZgrnzDlM,1611
60
65
  machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=WgJ9JkrjOZZW8JPw5wdkEIlE7Z4VDkDOXuag1qsqLlo,6242
61
66
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- machineconfig/utils/installer.py,sha256=uvXk3w1tjTBBnsoFzWHwv2Z38FLaafEjGB7rOL8pLIs,14393
67
+ machineconfig/utils/installer.py,sha256=LHK2AXDfFi0vs9MP-XorL38hFWMeRyIKq4ZvE2IVgyQ,17952
63
68
  machineconfig/utils/procs.py,sha256=GCdvGvowFm-GZe6PLcRe7yaWiBr6QFnSc_lAVWQDKo8,5146
64
69
  machineconfig/utils/scheduling.py,sha256=PGSmJPjDN5ZP5pLzzV4aXCRaB71OlMSiEljRkzMWSX8,7341
65
- machineconfig/utils/utils.py,sha256=izwiIvw_eLtbxvX7zhK7YZkrE6Xd8nw3u1O-r23AZ10,18780
66
- machineconfig/utils/ve.py,sha256=rtweDN9Xs9xh8a0QNsKIhH6eZmC0H-RBLrIN_f68l6s,9113
67
- machineconfig-1.8.dist-info/METADATA,sha256=ECcBQ2_UcFmk_ClfRF7vk9tq0uDYV77RAW-x1yCEw_o,6256
68
- machineconfig-1.8.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
69
- machineconfig-1.8.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
70
- machineconfig-1.8.dist-info/RECORD,,
70
+ machineconfig/utils/utils.py,sha256=aKI0WWN637p_r_x_I4JJMyHSRPTkjX9u0Hse8Z3NkL8,18881
71
+ machineconfig/utils/ve.py,sha256=RC9RGozHJ8qINvfERIInX4eYHVg-RmYUd-UvjBlMRtc,10025
72
+ machineconfig-1.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
73
+ machineconfig-1.9.dist-info/METADATA,sha256=fcBtPK9pEK-qDvczTHaeVVW621vtdlMOJ2NsE0M_9Cw,6918
74
+ machineconfig-1.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
75
+ machineconfig-1.9.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
76
+ machineconfig-1.9.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,22 +0,0 @@
1
-
2
- from typing import Optional
3
- import platform
4
-
5
-
6
- def main(version: Optional[str] = None):
7
- _ = version
8
- if platform.system() == "Linux": return f"""
9
-
10
- curl https://azuredatastudio-update.azurewebsites.net/latest/linux-x64/stable -o ~/azuredatastudio-linux-x64.tar.gz
11
- tar -xvf ~/azuredatastudio-linux-<version string>.tar.gz
12
- echo 'export PATH="$PATH:~/azuredatastudio-linux-x64"' >> ~/.bashrc
13
- source ~/.bashrc
14
-
15
- """
16
- elif platform.system() == "Windows": return "winget install -e --id Microsoft.AzureDataStudio"
17
- else:
18
- raise NotImplementedError(f"Your platform {platform.system()} is not supported!")
19
-
20
-
21
- if __name__ == '__main__':
22
- pass
@@ -1,21 +0,0 @@
1
-
2
- """
3
- Rust version of FZF (GO)
4
- """
5
-
6
- # from machineconfig.utils.utils import get_latest_release
7
- #
8
- from typing import Optional
9
-
10
- __doc__ = """skim is a fuzzy finder in rust!"""
11
- repo_url = r"https://github.com/lotabout/skim"
12
-
13
-
14
- def main(version: Optional[str] = None):
15
- _ = version
16
- # release = get_latest_release(repo_url.as_url_str(), suffix='x86_64-unknown-linux-musl', compression='tar.gz', linux=True, strip_v=True, download_n_extract=True)
17
- pass
18
-
19
-
20
- if __name__ == '__main__':
21
- pass
@@ -1,34 +0,0 @@
1
-
2
- """wezterm installer
3
- """
4
-
5
- from machineconfig.utils.installer import get_installers
6
- from typing import Optional
7
- import platform
8
-
9
-
10
- def main(version: Optional[str]):
11
- if platform.system() == "Windows":
12
- program = "winget install wez.wezterm"
13
- elif platform.system() == "Linux":
14
- insts = get_installers(system=platform.system(), dev=False)
15
- program = ""
16
- for inst in insts:
17
- if "wezterm" in inst.name:
18
- # as per https://wezfurlong.org/wezterm/install/linux.html#installing-on-ubuntu-and-debian-based-systems
19
- downloaded, version_to_be_installed = inst.download(version=version)
20
- _= version_to_be_installed
21
-
22
- program = f"""
23
- sudo apt install -y {downloaded}
24
- rm {downloaded}
25
- """
26
- break
27
- else:
28
- raise NotImplementedError("unsupported platform")
29
- return program
30
-
31
-
32
- if __name__ == "__main__":
33
- # main(version=None)
34
- pass