This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt update | |
| cd ~/Downloads | |
| wget https://guardiao.itau.com.br/warsaw/warsaw_setup_64.deb | |
| dpkg-deb -x ~/Downloads/warsaw_setup_64.deb /tmp/warsaw | |
| dpkg-deb --control warsaw_setup_64.deb /tmp/warsaw/DEBIAN/ | |
| sudo sed -i -e 's/python-gpgme,//g' /tmp/warsaw/DEBIAN/control | |
| sudo sed -i -e 's/libcurl3/libcurl4/g' /tmp/warsaw/DEBIAN/control | |
| sudo apt -y install python-pip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| code --install-extension abusaidm.html-snippets | |
| code --install-extension formulahendry.auto-rename-tag | |
| code --install-extension formulahendry.auto-close-tag | |
| code --install-extension christian-kohler.path-intellisense | |
| code --install-extension idleberg.icon-fonts | |
| code --install-extension joshpeng.theme-onedark-sublime | |
| code --install-extension MS-vsliveshare.vsliveshare | |
| code --install-extension eg2.vscode-npm-script | |
| code --install-extension christian-kohler.npm-intellisense | |
| code --install-extension esbenp.prettier-vscode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Open CMD and execute START http://boxstarter.org/package/url? FOLLOWED BY THIS GIST'S URL | |
| function SetPowerPlan([string]$PreferredPlan) | |
| { | |
| Write-Host "Setting Powerplan to $PreferredPlan" | |
| $guid = (Get-WmiObject -Class win32_powerplan -Namespace root\cimv2\power -Filter "ElementName='$PreferredPlan'").InstanceID.tostring() | |
| $regex = [regex]"{(.*?)}$" | |
| $newpowerVal = $regex.Match($guid).groups[1].value | |
| # setting power setting to high performance | |
| powercfg -S $newpowerVal |
NewerOlder