@@ -213,7 +213,7 @@ function Install {
213
213
if (Get-Command nvm - ErrorAction SilentlyContinue) {
214
214
Write-PrettyTitle " NVM (Node Version Manager)"
215
215
if (! (Get-Command npm - ErrorAction SilentlyContinue)) {
216
- $ltsOrLatest = $ (Write-Host " NodeJS not found. Install LTS (y) or latest (n)? " - ForegroundColor Magenta - NoNewline; Read-Host )
216
+ $ltsOrLatest = $ (Write-Host " ❔ NodeJS not found. Install LTS (y) or latest (n)? " - ForegroundColor Cyan - NoNewline; Read-Host )
217
217
if ($ltsOrLatest -eq ' y' ) {
218
218
nvm install lts
219
219
nvm use lts
@@ -325,7 +325,7 @@ function Install {
325
325
# start komorebi
326
326
$komorebiProcess = Get-Process - Name komorebi - ErrorAction SilentlyContinue
327
327
if ($null -eq $komorebiProcess ) {
328
- $startKomorebi = $ (Write-Host " Komorebi found. Run Komorebi now (y) or later (n)? " - ForegroundColor Magenta - NoNewline; Read-Host )
328
+ $startKomorebi = $ (Write-Host " ❔ Komorebi found. Run Komorebi now (y) or later (n)? " - ForegroundColor Cyan - NoNewline; Read-Host )
329
329
if ($startKomorebi -eq ' y' ) {
330
330
& komorebic start -- whkd > $null 2>&1
331
331
Write-PrettyOutput - Process " komorebi" - Entry " komorebi with WHKD" - Message " started."
@@ -345,7 +345,7 @@ function Install {
345
345
$yasbProcess = Get-Process - Name yasb - ErrorAction SilentlyContinue
346
346
if ($null -eq $yasbProcess ) {
347
347
$yasbShortcutPath = Join-Path - Path $env: APPDATA - ChildPath " Microsoft\Windows\Start Menu\Programs\Yasb.lnk"
348
- $confirmYasbRun = $ (Write-Host " Found Yasb. Run now? (y/n) " - ForegroundColor Magenta - NoNewline; Read-Host )
348
+ $confirmYasbRun = $ (Write-Host " ❔ Found Yasb. Run Yasb now? (y/n) " - ForegroundColor Cyan - NoNewline; Read-Host )
349
349
if ($confirmYasbRun -eq ' y' ) {
350
350
if (Test-Path $yasbShortcutPath ) {
351
351
Start-Process - FilePath $yasbShortcutPath > $null 2>&1
@@ -402,4 +402,4 @@ Write-Host "https://github.com/jacquindev/windots" -ForegroundColor "Blue"
402
402
Write-Host " - Submit an issue via: " - NoNewline
403
403
Write-Host " https://github.com/jacquindev/windots/issues/new" - ForegroundColor " Blue"
404
404
Write-Host " - Contact me via email: " - NoNewline
405
- Write-Host " jacquindev@outlook.com" - ForegroundColor " Blue"
405
+ Write-Host " jacquindev@outlook.com" - ForegroundColor " Blue"
0 commit comments