Skip to content

Commit

Permalink
add some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
csm10495 committed Oct 21, 2022
1 parent d9c28eb commit 2b9df69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cappinstaller/choco.py
Expand Up @@ -30,6 +30,7 @@
'FurMark' : 'furmark',
'Git' : 'git --params "/NoAutoCrlf"',
'Git Extensions': 'gitextensions',
'Github CLI': 'gh',
'Google Chrome': 'googlechrome',
'GrepWin': 'grepwin',
'GSmartControl': 'gsmartcontrol',
Expand All @@ -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"',
Expand All @@ -62,6 +64,7 @@
'Steam': 'steam',
'Sudo': 'sudo',
'Teracopy': 'teracopy',
'Terraform': 'terraform',
'TortoiseHg': 'tortoisehg',
'Transmission': 'transmission',
'VirtualBox' : 'virtualbox',
Expand Down
1 change: 1 addition & 0 deletions cappinstaller/misc_cmd.py
Expand Up @@ -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'),
}

0 comments on commit 2b9df69

Please sign in to comment.