Skip to content

Commit

Permalink
Removing inputs from install_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Farravid committed Feb 29, 2024
1 parent 6c24b54 commit 452a2d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion scripts/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ python.exe -m pip install --upgrade pip

pip install inquirer pyuac pypiwin32 StrEnum

start /b pwsh -Command python .\scripts\install.py
start /b pwsh -Command python .\scripts\install_ci.py
10 changes: 3 additions & 7 deletions scripts/install_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
import inquirer
import pyuac
from pathlib import Path
from enum import StrEnum
import common


class EInstaller(StrEnum):
class EInstaller():
"""
Enum class for providing an easier way to select the installer of a package/library/extension
"""
Expand Down Expand Up @@ -118,7 +117,6 @@ def main():
"""
The main function of the script.
"""
input("Pre-installation ready, press enter to continue with the setup. >")

common.change_win_color_mode()
prepare_powershell()
Expand Down Expand Up @@ -157,7 +155,7 @@ def main():

install_pywal()

install_optional_pckgs(EInstaller.WINGET, [
install_pckgs(EInstaller.WINGET, [
"Clement.bottom",
"DygmaLabs.Bazecor",
"Spotify.Spotify",
Expand All @@ -178,7 +176,7 @@ def main():

create_sym_links("vscode/settings.json", str(common.APPDATA_ROAMING) + "\Code\\User\settings.json")

install_optional_pckgs(EInstaller.CODE, [
install_pckgs(EInstaller.CODE, [
"s-nlf-fh.glassit",
"ms-vscode.cpptools",
"naumovs.color-highlight",
Expand All @@ -195,8 +193,6 @@ def main():
common.reload_powershell()
common.launch_glazewm()

input("Press enter to close the window. >")


if __name__ == "__main__":
if not pyuac.isUserAdmin():
Expand Down

0 comments on commit 452a2d2

Please sign in to comment.