Skip to content

Commit

Permalink
Update setup.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
starchyunderscore authored Oct 12, 2023
1 parent c5d3c39 commit 980b3ff
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions current/setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1138,6 +1138,7 @@ public class PInvoke {
Write-Output "4. Install btop"
Write-Output "5. Install gping"
Write-Output "6. Install genact"
Write-Output "7. Text editors"
# Prompt user for input
$CLUtils = Read-Host "`nInput the number of an option from the list above, or leave blank to exit"
switch ($CLUtils) {
Expand Down Expand Up @@ -1275,6 +1276,33 @@ public class PInvoke {
Write-Output "`nDone"
}
}
7 { # Text editors
# List choices
Write-Output "`n1. Install vim"
Write-Output "2. Install neovim"
Write-Output "3. Install micro"
Write-Output "4. Install nano"
Write-Output "5. Install emacs"
# Prompt user for input
$TEdit = Read-Host "`nInput the number of an option from the list above, or leave blank to exit"
switch ($TEdit) {
1 { # vim
Write-Output "Sorry, not yet"
}
2 { # neovim
Write-Output "Sorry, not yet"
}
3 { # micro
Write-Output "Sorry, not yet"
}
4 { # nano
Write-Output "Sorry, not yet"
}
5 { # emacs
Write-Output "Sorry, not yet"
}
}
}
}
} until ($CLUtils -notmatch "\S")
}
Expand Down

0 comments on commit 980b3ff

Please sign in to comment.