From 2b9df69f9d97b748ed3e7ef6e7f85af8633f0e36 Mon Sep 17 00:00:00 2001 From: Charles Machalow Date: Thu, 20 Oct 2022 17:06:20 -0700 Subject: [PATCH] add some stuff --- cappinstaller/choco.py | 3 +++ cappinstaller/misc_cmd.py | 1 + 2 files changed, 4 insertions(+) diff --git a/cappinstaller/choco.py b/cappinstaller/choco.py index ff57dc8..2f0ae69 100644 --- a/cappinstaller/choco.py +++ b/cappinstaller/choco.py @@ -30,6 +30,7 @@ 'FurMark' : 'furmark', 'Git' : 'git --params "/NoAutoCrlf"', 'Git Extensions': 'gitextensions', + 'Github CLI': 'gh', 'Google Chrome': 'googlechrome', 'GrepWin': 'grepwin', 'GSmartControl': 'gsmartcontrol', @@ -48,6 +49,7 @@ 'Open Shell (Classic Shell)': 'open-shell --params "/StartMenu"', 'Postman': 'postman', 'Path Copy Copy': 'path-copy-copy', + 'PIA': 'pia', 'Process Explorer': 'procexp', 'PuTTY' : 'putty', 'Python 2': 'python2 /InstallDir "C:/Python27"', @@ -62,6 +64,7 @@ 'Steam': 'steam', 'Sudo': 'sudo', 'Teracopy': 'teracopy', + 'Terraform': 'terraform', 'TortoiseHg': 'tortoisehg', 'Transmission': 'transmission', 'VirtualBox' : 'virtualbox', diff --git a/cappinstaller/misc_cmd.py b/cappinstaller/misc_cmd.py index a3d076e..b8942aa 100644 --- a/cappinstaller/misc_cmd.py +++ b/cappinstaller/misc_cmd.py @@ -71,5 +71,6 @@ def install(self, output_queue: queue.Queue) -> int: f'Add Admin Cmd Prompt via Shift/Right Click' : RegistryInstallCommand(ADD_ADMIN_CMD_PROMPT_VIA_SHIFT_RIGHT_CLICK_REG), f'Symlink Python3 -> Python3X' : SymlinkPython3ToPython3X(), f'Add C:/Python3 to System PATH' : MiscCommand(f'setx /m PATH "C:\Python3;C:\Python3\Scripts;%PATH%"'), + f'Install ipython to C:/Python3' : MiscCommand(f'C:\Python3\Scripts\pip install ipython'), f'Chown C:/Python3 for {getpass.getuser()}' : MiscCommand(f'icacls C:/Python3 /t /q /grant "{getpass.getuser()}":(OI)(CI)F'), } \ No newline at end of file