Created
January 30, 2018 23:06
-
-
Save oxechicao/30b7d6fc2e08a9af5466076ed4ad0eed to your computer and use it in GitHub Desktop.
Script to download and install Windows 10 theme on linux. Theme made by B00merang https://b00merang.weebly.com/windows-10.html
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
| # Run as sudo | |
| path="/usr/share/themes" | |
| iconpath="/usr/share/icons" | |
| cd $path | |
| wget https://github.com/B00merang-Project/Windows-10/archive/master.zip | |
| unzip master.zip | |
| rm master.zip | |
| wget https://github.com/B00merang-Project/Windows-10-Dark/archive/master.zip | |
| unzip master.zip | |
| rm master.zip | |
| wget https://github.com/B00merang-Project/Windows-10-Metro/archive/master.zip | |
| unzip master.zip | |
| rm master.zip | |
| cd $iconpath | |
| wget https://github.com/B00merang-Project/Windows-10-Icons/archive/master.zip | |
| unzip master.zip | |
| rm master.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment