This guide has been updated for elementaryOS v5.0+.
sudo apt-get update
sudo apt-get -y install software-properties-common
| # First you update your system | |
| sudo apt update && sudo apt-get upgrade | |
| # Uninstall unnecessary programs | |
| # essential programs | |
| sudo apt --assume-yes install g++ libtool automake htop gparted vlc firefox inkscape steam filezilla k4dirstat speedcrunch feh | |
| # Python 3.7 | |
| sudo apt install python3.7 python3-venv python3-pip | |
| # gdebi for easy click-install of *.deb |
| # First you update your system | |
| sudo apt update && sudo apt-get dist-upgrade | |
| # Uninstall unnecessary programs | |
| sudo apt purge epiphany-browser epiphany-browser-data #browser | |
| sudo apt purge pantheon-mail | |
| # Bring back Software and Updates from Ubuntu | |
| sudo apt-get install software-properties-gtk | |
| # Properties Commons (to install elementary tweaks) |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Collections.Immutable; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.IO.Compression; | |
| using System.Linq; | |
| using System.Net; |
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <jess@linux.com> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |
| using System; | |
| using System.Net.Http; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using Moq; | |
| using Moq.Protected; | |
| namespace Tests | |
| { | |
| public class MockHttpClient |