@fredlackey/devutils 0.0.11 → 0.0.12
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.
- package/package.json +1 -1
- package/src/installs/balena-etcher.js +4 -0
- package/src/installs/bambu-studio.js +321 -108
- package/src/installs/chrome-canary.js +27 -98
- package/src/installs/chromium.js +5 -1
- package/src/installs/dependencies.md +14 -5
- package/src/installs/installers.json +771 -75
- package/src/installs/ohmyzsh.js +529 -0
- package/src/installs/ohmyzsh.md +1094 -0
- package/src/installs/studio-3t.js +7 -5
- package/src/installs/sublime-text.js +7 -2
- package/src/installs/zsh.js +455 -0
- package/src/installs/zsh.md +1008 -0
- package/src/utils/ubuntu/snap.js +45 -3
|
@@ -0,0 +1,529 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @fileoverview Install Oh My Zsh - a framework for managing Zsh configuration.
|
|
5
|
+
* @module installs/ohmyzsh
|
|
6
|
+
*
|
|
7
|
+
* Oh My Zsh is an open-source, community-driven framework for managing your Zsh
|
|
8
|
+
* configuration. It comes bundled with thousands of helpful functions, plugins,
|
|
9
|
+
* themes, and features that make working in the terminal more efficient and
|
|
10
|
+
* enjoyable. With over 2,400 contributors and 300+ plugins, Oh My Zsh has become
|
|
11
|
+
* the most popular Zsh configuration framework.
|
|
12
|
+
*
|
|
13
|
+
* Oh My Zsh provides:
|
|
14
|
+
* - 300+ plugins for common tools (git, docker, npm, kubectl, aws, and many more)
|
|
15
|
+
* - 140+ themes for customizing your terminal prompt appearance
|
|
16
|
+
* - Auto-update mechanism to keep your installation current
|
|
17
|
+
* - Plugin management for easy addition and removal of functionality
|
|
18
|
+
* - Aliases and functions for common commands and workflows
|
|
19
|
+
*
|
|
20
|
+
* DEPENDENCY MANAGEMENT:
|
|
21
|
+
* Prerequisites (zsh, curl, git) are declared in installers.json and installed
|
|
22
|
+
* automatically by the `dev install` command's dependency resolution system
|
|
23
|
+
* before this installer runs. This installer only handles Oh My Zsh itself.
|
|
24
|
+
*
|
|
25
|
+
* IMPORTANT PLATFORM NOTES:
|
|
26
|
+
* - Git Bash and native Windows are NOT supported (use WSL instead)
|
|
27
|
+
* - All Unix-like platforms use the same official install script from ohmyzsh/ohmyzsh
|
|
28
|
+
*
|
|
29
|
+
* POST-INSTALLATION NOTES:
|
|
30
|
+
* - Users should open a new terminal or source ~/.zshrc after installation
|
|
31
|
+
* - The installer backs up existing ~/.zshrc to ~/.zshrc.pre-oh-my-zsh
|
|
32
|
+
* - Oh My Zsh is installed to ~/.oh-my-zsh directory
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
const os = require('../utils/common/os');
|
|
36
|
+
const shell = require('../utils/common/shell');
|
|
37
|
+
const fs = require('fs');
|
|
38
|
+
const path = require('path');
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* The URL for the official Oh My Zsh install script.
|
|
42
|
+
* This script clones the Oh My Zsh repository and configures shell initialization.
|
|
43
|
+
*/
|
|
44
|
+
const OHMYZSH_INSTALL_SCRIPT_URL = 'https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh';
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Check if Oh My Zsh is installed by looking for the ~/.oh-my-zsh directory.
|
|
48
|
+
*
|
|
49
|
+
* Oh My Zsh installs to the user's home directory at ~/.oh-my-zsh. We check for
|
|
50
|
+
* the presence of the oh-my-zsh.sh script within that directory to verify
|
|
51
|
+
* the installation is complete and valid.
|
|
52
|
+
*
|
|
53
|
+
* @returns {boolean} True if Oh My Zsh appears to be installed, false otherwise
|
|
54
|
+
*/
|
|
55
|
+
function isOhMyZshInstalled() {
|
|
56
|
+
const homeDir = os.getHomeDir();
|
|
57
|
+
const ohmyzshDir = path.join(homeDir, '.oh-my-zsh');
|
|
58
|
+
const ohmyzshScript = path.join(ohmyzshDir, 'oh-my-zsh.sh');
|
|
59
|
+
|
|
60
|
+
return fs.existsSync(ohmyzshScript);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Check if Zsh is installed on the current system.
|
|
65
|
+
*
|
|
66
|
+
* Zsh is a prerequisite for Oh My Zsh. This function checks if the zsh
|
|
67
|
+
* command is available in the PATH.
|
|
68
|
+
*
|
|
69
|
+
* @returns {boolean} True if Zsh is installed, false otherwise
|
|
70
|
+
*/
|
|
71
|
+
function isZshInstalled() {
|
|
72
|
+
return shell.commandExists('zsh');
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Get the path to the user's shell configuration file.
|
|
77
|
+
*
|
|
78
|
+
* Returns the path to .zshrc in the user's home directory. This file is
|
|
79
|
+
* created or modified by the Oh My Zsh installer to load the framework.
|
|
80
|
+
*
|
|
81
|
+
* @returns {string} Path to the shell configuration file
|
|
82
|
+
*/
|
|
83
|
+
function getShellConfigFile() {
|
|
84
|
+
const homeDir = os.getHomeDir();
|
|
85
|
+
return path.join(homeDir, '.zshrc');
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Run the Oh My Zsh install script in unattended mode.
|
|
90
|
+
*
|
|
91
|
+
* The --unattended flag prevents the installer from:
|
|
92
|
+
* - Changing your default shell automatically
|
|
93
|
+
* - Launching Zsh after installation
|
|
94
|
+
* - Requiring any interactive input
|
|
95
|
+
*
|
|
96
|
+
* This makes it suitable for use in automation scripts.
|
|
97
|
+
*
|
|
98
|
+
* @returns {Promise<boolean>} True if installation succeeded, false otherwise
|
|
99
|
+
*/
|
|
100
|
+
async function runOhMyZshInstaller() {
|
|
101
|
+
console.log('Installing Oh My Zsh via official install script...');
|
|
102
|
+
console.log('');
|
|
103
|
+
|
|
104
|
+
// Download and run the official install script with --unattended flag
|
|
105
|
+
const installResult = await shell.exec(
|
|
106
|
+
`sh -c "$(curl -fsSL ${OHMYZSH_INSTALL_SCRIPT_URL})" "" --unattended`
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
// The install script may output to stderr for informational messages
|
|
110
|
+
// Check if the installation directory was created successfully
|
|
111
|
+
if (!isOhMyZshInstalled()) {
|
|
112
|
+
console.log('Oh My Zsh installation may have failed.');
|
|
113
|
+
console.log(installResult.stderr || installResult.stdout);
|
|
114
|
+
console.log('');
|
|
115
|
+
console.log('Troubleshooting:');
|
|
116
|
+
console.log(' 1. Check your internet connection');
|
|
117
|
+
console.log(' 2. Ensure curl and git are installed');
|
|
118
|
+
console.log(' 3. Try running the install command manually:');
|
|
119
|
+
console.log(` sh -c "$(curl -fsSL ${OHMYZSH_INSTALL_SCRIPT_URL})" "" --unattended`);
|
|
120
|
+
return false;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
return true;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Display post-installation instructions to the user.
|
|
128
|
+
*
|
|
129
|
+
* @param {string} shellConfigFile - Path to the shell configuration file
|
|
130
|
+
*/
|
|
131
|
+
function displayPostInstallInstructions(shellConfigFile) {
|
|
132
|
+
console.log('');
|
|
133
|
+
console.log('Oh My Zsh installed successfully.');
|
|
134
|
+
console.log('');
|
|
135
|
+
console.log('IMPORTANT: To complete setup:');
|
|
136
|
+
console.log(` 1. Open a new terminal, OR run: source ${shellConfigFile}`);
|
|
137
|
+
console.log(' 2. Verify Oh My Zsh is loaded: echo $ZSH');
|
|
138
|
+
console.log('');
|
|
139
|
+
console.log('To change your default shell to Zsh:');
|
|
140
|
+
console.log(' chsh -s $(which zsh)');
|
|
141
|
+
console.log('');
|
|
142
|
+
console.log('To customize Oh My Zsh, edit ~/.zshrc:');
|
|
143
|
+
console.log(' - Change theme: ZSH_THEME="robbyrussell"');
|
|
144
|
+
console.log(' - Enable plugins: plugins=(git docker npm)');
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Check that all prerequisites are installed.
|
|
149
|
+
*
|
|
150
|
+
* Prerequisites (zsh, curl, git) should be installed automatically by the
|
|
151
|
+
* dependency system in installers.json before this installer runs. This
|
|
152
|
+
* function provides a safety check in case the installer is run directly.
|
|
153
|
+
*
|
|
154
|
+
* @returns {boolean} True if all prerequisites are available, false otherwise
|
|
155
|
+
*/
|
|
156
|
+
function checkPrerequisites() {
|
|
157
|
+
// Check for Zsh (installed via dependency system)
|
|
158
|
+
if (!isZshInstalled()) {
|
|
159
|
+
console.log('Zsh is required but not installed.');
|
|
160
|
+
console.log('Run: dev install zsh');
|
|
161
|
+
return false;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Check for curl (installed via dependency system)
|
|
165
|
+
if (!shell.commandExists('curl')) {
|
|
166
|
+
console.log('curl is required but not installed.');
|
|
167
|
+
console.log('Run: dev install curl');
|
|
168
|
+
return false;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Check for git (installed via dependency system)
|
|
172
|
+
if (!shell.commandExists('git')) {
|
|
173
|
+
console.log('git is required but not installed.');
|
|
174
|
+
console.log('Run: dev install git');
|
|
175
|
+
return false;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
return true;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Install Oh My Zsh on macOS using the official install script.
|
|
183
|
+
*
|
|
184
|
+
* Prerequisites (handled by dependency system in installers.json):
|
|
185
|
+
* - Zsh (pre-installed on macOS 10.15+, or via Homebrew)
|
|
186
|
+
* - curl (pre-installed on macOS)
|
|
187
|
+
* - git (via Xcode CLT or Homebrew)
|
|
188
|
+
*
|
|
189
|
+
* @returns {Promise<void>}
|
|
190
|
+
*/
|
|
191
|
+
async function install_macos() {
|
|
192
|
+
// Check if Oh My Zsh is already installed
|
|
193
|
+
if (isOhMyZshInstalled()) {
|
|
194
|
+
console.log('Oh My Zsh is already installed, skipping...');
|
|
195
|
+
console.log('');
|
|
196
|
+
console.log('To update Oh My Zsh, run: omz update');
|
|
197
|
+
return;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// Verify prerequisites (should already be installed via dependency system)
|
|
201
|
+
if (!checkPrerequisites()) {
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
// Run the Oh My Zsh installer
|
|
206
|
+
const installSuccess = await runOhMyZshInstaller();
|
|
207
|
+
if (!installSuccess) {
|
|
208
|
+
return;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// Display post-installation instructions
|
|
212
|
+
displayPostInstallInstructions('~/.zshrc');
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Install Oh My Zsh on Ubuntu/Debian using the official install script.
|
|
217
|
+
*
|
|
218
|
+
* Prerequisites (handled by dependency system in installers.json):
|
|
219
|
+
* - Zsh (via APT)
|
|
220
|
+
* - curl (via APT)
|
|
221
|
+
* - git (via APT)
|
|
222
|
+
*
|
|
223
|
+
* @returns {Promise<void>}
|
|
224
|
+
*/
|
|
225
|
+
async function install_ubuntu() {
|
|
226
|
+
// Check if Oh My Zsh is already installed
|
|
227
|
+
if (isOhMyZshInstalled()) {
|
|
228
|
+
console.log('Oh My Zsh is already installed, skipping...');
|
|
229
|
+
console.log('');
|
|
230
|
+
console.log('To update Oh My Zsh, run: omz update');
|
|
231
|
+
return;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// Verify prerequisites (should already be installed via dependency system)
|
|
235
|
+
if (!checkPrerequisites()) {
|
|
236
|
+
return;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// Run the Oh My Zsh installer
|
|
240
|
+
const installSuccess = await runOhMyZshInstaller();
|
|
241
|
+
if (!installSuccess) {
|
|
242
|
+
return;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// Display post-installation instructions
|
|
246
|
+
displayPostInstallInstructions('~/.zshrc');
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Install Oh My Zsh on Ubuntu running in WSL (Windows Subsystem for Linux).
|
|
251
|
+
*
|
|
252
|
+
* Prerequisites (handled by dependency system in installers.json):
|
|
253
|
+
* - Zsh (via APT)
|
|
254
|
+
* - curl (via APT)
|
|
255
|
+
* - git (via APT)
|
|
256
|
+
*
|
|
257
|
+
* NOTE: Oh My Zsh installed in WSL is separate from any Windows shell configuration.
|
|
258
|
+
* This is the recommended way to use Oh My Zsh on Windows.
|
|
259
|
+
*
|
|
260
|
+
* @returns {Promise<void>}
|
|
261
|
+
*/
|
|
262
|
+
async function install_ubuntu_wsl() {
|
|
263
|
+
console.log('Detected Ubuntu running in WSL (Windows Subsystem for Linux).');
|
|
264
|
+
console.log('');
|
|
265
|
+
|
|
266
|
+
// Check if Oh My Zsh is already installed
|
|
267
|
+
if (isOhMyZshInstalled()) {
|
|
268
|
+
console.log('Oh My Zsh is already installed in WSL, skipping...');
|
|
269
|
+
console.log('');
|
|
270
|
+
console.log('To update Oh My Zsh, run: omz update');
|
|
271
|
+
return;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// Verify prerequisites (should already be installed via dependency system)
|
|
275
|
+
if (!checkPrerequisites()) {
|
|
276
|
+
return;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
// Run the Oh My Zsh installer
|
|
280
|
+
const installSuccess = await runOhMyZshInstaller();
|
|
281
|
+
if (!installSuccess) {
|
|
282
|
+
return;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// Display post-installation instructions with WSL-specific notes
|
|
286
|
+
console.log('');
|
|
287
|
+
console.log('Oh My Zsh installed successfully in WSL.');
|
|
288
|
+
console.log('');
|
|
289
|
+
console.log('IMPORTANT: To complete setup:');
|
|
290
|
+
console.log(' 1. Close and reopen WSL, OR run: source ~/.zshrc');
|
|
291
|
+
console.log(' 2. Verify Oh My Zsh is loaded: echo $ZSH');
|
|
292
|
+
console.log('');
|
|
293
|
+
console.log('To change your default shell to Zsh in WSL:');
|
|
294
|
+
console.log(' chsh -s $(which zsh)');
|
|
295
|
+
console.log('');
|
|
296
|
+
console.log('WSL Note:');
|
|
297
|
+
console.log(' For proper font rendering of themes with special characters,');
|
|
298
|
+
console.log(' install a Nerd Font on Windows and configure Windows Terminal');
|
|
299
|
+
console.log(' to use it for your WSL profile.');
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Install Oh My Zsh on Raspberry Pi OS using the official install script.
|
|
304
|
+
*
|
|
305
|
+
* Prerequisites (handled by dependency system in installers.json):
|
|
306
|
+
* - Zsh (via APT)
|
|
307
|
+
* - curl (via APT)
|
|
308
|
+
* - git (via APT)
|
|
309
|
+
*
|
|
310
|
+
* @returns {Promise<void>}
|
|
311
|
+
*/
|
|
312
|
+
async function install_raspbian() {
|
|
313
|
+
// Check if Oh My Zsh is already installed
|
|
314
|
+
if (isOhMyZshInstalled()) {
|
|
315
|
+
console.log('Oh My Zsh is already installed, skipping...');
|
|
316
|
+
console.log('');
|
|
317
|
+
console.log('To update Oh My Zsh, run: omz update');
|
|
318
|
+
return;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
// Check and report architecture for informational purposes
|
|
322
|
+
const archResult = await shell.exec('uname -m');
|
|
323
|
+
const arch = archResult.stdout.trim();
|
|
324
|
+
console.log(`Detected architecture: ${arch}`);
|
|
325
|
+
console.log('');
|
|
326
|
+
|
|
327
|
+
// Verify prerequisites (should already be installed via dependency system)
|
|
328
|
+
if (!checkPrerequisites()) {
|
|
329
|
+
return;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// Run the Oh My Zsh installer
|
|
333
|
+
const installSuccess = await runOhMyZshInstaller();
|
|
334
|
+
if (!installSuccess) {
|
|
335
|
+
return;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// Display post-installation instructions with Raspberry Pi-specific notes
|
|
339
|
+
console.log('');
|
|
340
|
+
console.log('Oh My Zsh installed successfully.');
|
|
341
|
+
console.log('');
|
|
342
|
+
console.log('IMPORTANT: To complete setup:');
|
|
343
|
+
console.log(' 1. Open a new terminal, OR run: source ~/.zshrc');
|
|
344
|
+
console.log(' 2. Verify Oh My Zsh is loaded: echo $ZSH');
|
|
345
|
+
console.log('');
|
|
346
|
+
console.log('To change your default shell to Zsh:');
|
|
347
|
+
console.log(' chsh -s $(which zsh)');
|
|
348
|
+
console.log('');
|
|
349
|
+
console.log('Raspberry Pi Note:');
|
|
350
|
+
console.log(' Some complex themes may be slow on older Pi models.');
|
|
351
|
+
console.log(' Consider using a lightweight theme like "robbyrussell" (default).');
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Install Oh My Zsh on Amazon Linux/RHEL/Fedora using the official install script.
|
|
356
|
+
*
|
|
357
|
+
* Prerequisites (handled by dependency system in installers.json):
|
|
358
|
+
* - Zsh (via DNF/YUM)
|
|
359
|
+
* - curl (via DNF/YUM)
|
|
360
|
+
* - git (via DNF/YUM)
|
|
361
|
+
*
|
|
362
|
+
* @returns {Promise<void>}
|
|
363
|
+
*/
|
|
364
|
+
async function install_amazon_linux() {
|
|
365
|
+
// Check if Oh My Zsh is already installed
|
|
366
|
+
if (isOhMyZshInstalled()) {
|
|
367
|
+
console.log('Oh My Zsh is already installed, skipping...');
|
|
368
|
+
console.log('');
|
|
369
|
+
console.log('To update Oh My Zsh, run: omz update');
|
|
370
|
+
return;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// Verify prerequisites (should already be installed via dependency system)
|
|
374
|
+
if (!checkPrerequisites()) {
|
|
375
|
+
return;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// Run the Oh My Zsh installer
|
|
379
|
+
const installSuccess = await runOhMyZshInstaller();
|
|
380
|
+
if (!installSuccess) {
|
|
381
|
+
return;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// Display post-installation instructions
|
|
385
|
+
displayPostInstallInstructions('~/.zshrc');
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* Handle Windows native installation (not supported).
|
|
390
|
+
*
|
|
391
|
+
* Oh My Zsh is a Zsh framework and Zsh is not available on native Windows.
|
|
392
|
+
* Users should install Oh My Zsh within WSL (Windows Subsystem for Linux) instead.
|
|
393
|
+
*
|
|
394
|
+
* This function gracefully informs the user that the platform is not supported
|
|
395
|
+
* without throwing an error or suggesting alternatives.
|
|
396
|
+
*
|
|
397
|
+
* @returns {Promise<void>}
|
|
398
|
+
*/
|
|
399
|
+
async function install_windows() {
|
|
400
|
+
console.log('Oh My Zsh is not available for Windows.');
|
|
401
|
+
return;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* Handle Git Bash installation (not supported).
|
|
406
|
+
*
|
|
407
|
+
* Git Bash uses a MinGW-based Bash shell and does not support Zsh.
|
|
408
|
+
* Oh My Zsh is specifically designed for Zsh and cannot be installed on Git Bash.
|
|
409
|
+
*
|
|
410
|
+
* This function gracefully informs the user that the platform is not supported
|
|
411
|
+
* without throwing an error or suggesting alternatives.
|
|
412
|
+
*
|
|
413
|
+
* @returns {Promise<void>}
|
|
414
|
+
*/
|
|
415
|
+
async function install_gitbash() {
|
|
416
|
+
console.log('Oh My Zsh is not available for Git Bash.');
|
|
417
|
+
return;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* Check if Oh My Zsh is installed on the current platform.
|
|
422
|
+
*
|
|
423
|
+
* On all Unix-like systems (macOS, Linux, WSL), checks for the presence of
|
|
424
|
+
* the ~/.oh-my-zsh directory with the oh-my-zsh.sh script.
|
|
425
|
+
*
|
|
426
|
+
* On Windows native and Git Bash, returns false as these platforms are not supported.
|
|
427
|
+
*
|
|
428
|
+
* @returns {Promise<boolean>} True if installed, false otherwise
|
|
429
|
+
*/
|
|
430
|
+
async function isInstalled() {
|
|
431
|
+
const platform = os.detect();
|
|
432
|
+
|
|
433
|
+
// Windows native and Git Bash do not support Oh My Zsh
|
|
434
|
+
if (platform.type === 'windows' || platform.type === 'gitbash') {
|
|
435
|
+
return false;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// All other platforms: check for Oh My Zsh installation
|
|
439
|
+
return isOhMyZshInstalled();
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* Check if this installer is supported on the current platform.
|
|
444
|
+
*
|
|
445
|
+
* Oh My Zsh is supported on:
|
|
446
|
+
* - macOS
|
|
447
|
+
* - Ubuntu/Debian
|
|
448
|
+
* - Ubuntu on WSL
|
|
449
|
+
* - Raspberry Pi OS
|
|
450
|
+
* - Amazon Linux/RHEL/Fedora
|
|
451
|
+
*
|
|
452
|
+
* Oh My Zsh is NOT supported on:
|
|
453
|
+
* - Windows native (no Zsh available)
|
|
454
|
+
* - Git Bash (uses Bash, not Zsh)
|
|
455
|
+
*
|
|
456
|
+
* @returns {boolean} True if installation is supported on this platform
|
|
457
|
+
*/
|
|
458
|
+
function isEligible() {
|
|
459
|
+
const platform = os.detect();
|
|
460
|
+
return ['macos', 'ubuntu', 'debian', 'wsl', 'raspbian', 'amazon_linux', 'fedora', 'rhel'].includes(platform.type);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Main installation entry point - detects platform and runs appropriate installer.
|
|
465
|
+
*
|
|
466
|
+
* This function detects the current operating system and dispatches to the
|
|
467
|
+
* appropriate platform-specific installer function. Prerequisites (zsh, curl, git)
|
|
468
|
+
* are handled by the dependency system in installers.json.
|
|
469
|
+
*
|
|
470
|
+
* Supported platforms:
|
|
471
|
+
* - macOS, Ubuntu/Debian, WSL, Raspberry Pi OS, Amazon Linux/RHEL/Fedora
|
|
472
|
+
*
|
|
473
|
+
* Not supported:
|
|
474
|
+
* - Windows native, Git Bash (Zsh not available)
|
|
475
|
+
*
|
|
476
|
+
* @returns {Promise<void>}
|
|
477
|
+
*/
|
|
478
|
+
async function install() {
|
|
479
|
+
const platform = os.detect();
|
|
480
|
+
|
|
481
|
+
// Map platform types to their corresponding installer functions
|
|
482
|
+
// Multiple platform types can map to the same installer (e.g., debian and ubuntu)
|
|
483
|
+
const installers = {
|
|
484
|
+
'macos': install_macos,
|
|
485
|
+
'ubuntu': install_ubuntu,
|
|
486
|
+
'debian': install_ubuntu,
|
|
487
|
+
'wsl': install_ubuntu_wsl,
|
|
488
|
+
'raspbian': install_raspbian,
|
|
489
|
+
'amazon_linux': install_amazon_linux,
|
|
490
|
+
'fedora': install_amazon_linux,
|
|
491
|
+
'rhel': install_amazon_linux,
|
|
492
|
+
'windows': install_windows,
|
|
493
|
+
'gitbash': install_gitbash,
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
// Look up the installer for the detected platform
|
|
497
|
+
const installer = installers[platform.type];
|
|
498
|
+
|
|
499
|
+
// If no installer exists for this platform, inform the user gracefully
|
|
500
|
+
if (!installer) {
|
|
501
|
+
console.log(`Oh My Zsh is not available for ${platform.type}.`);
|
|
502
|
+
return;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// Run the platform-specific installer
|
|
506
|
+
await installer();
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
// Export all functions for use as a module and for testing
|
|
510
|
+
module.exports = {
|
|
511
|
+
install,
|
|
512
|
+
isInstalled,
|
|
513
|
+
isEligible,
|
|
514
|
+
install_macos,
|
|
515
|
+
install_ubuntu,
|
|
516
|
+
install_ubuntu_wsl,
|
|
517
|
+
install_raspbian,
|
|
518
|
+
install_amazon_linux,
|
|
519
|
+
install_windows,
|
|
520
|
+
install_gitbash,
|
|
521
|
+
};
|
|
522
|
+
|
|
523
|
+
// Allow direct execution: node ohmyzsh.js
|
|
524
|
+
if (require.main === module) {
|
|
525
|
+
install().catch(err => {
|
|
526
|
+
console.error(err.message);
|
|
527
|
+
process.exit(1);
|
|
528
|
+
});
|
|
529
|
+
}
|