Last active
April 8, 2019 00:30
-
-
Save mertyildiran/2aa1af8f4f3b28cb94a2d88f79cec288 to your computer and use it in GitHub Desktop.
Ubuntu 18.04 / KDE neon 5.14.3 clean setup
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 | |
sudo apt -y install build-essential cmake | |
# Install Nvidia driver | |
sudo apt -y install nvidia-384 | |
# Install git | |
sudo apt -y install git | |
# Compile and install Guake terminal | |
cd ~/Downloads | |
git clone https://github.com/Guake/guake.git | |
cd guake/ | |
git reset --hard c3ca237bc43cc46ba5f7747e8a5e58a8f657930f | |
./scripts/bootstrap-dev-debian.sh run make | |
make | |
yes | sudo make install | |
# Install Tilda terminal | |
sudo apt install tilda | |
# tilda -f "Monospace 12" | |
# Download and install Google Chrome | |
cd ~/Downloads | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome-stable_current_amd64.deb | |
sudo apt -y install -f | |
# Download and install Atom | |
cd ~/Downloads | |
wget https://atom-installer.github.com/v1.35.1/atom-amd64.deb | |
sudo dpkg -i atom-amd64.deb | |
sudo apt -y install -f | |
# Download Popcorn Time | |
cd ~/Downloads | |
mkdir Popcorn | |
cd Popcorn/ | |
wget https://mirror03.popcorntime.sh/repo/build/Popcorn-Time-0.3.10-Linux-64.tar.xz | |
tar -xvf Popcorn-Time-0.3.10-Linux-64.tar.xz | |
# Increase the volume of audio card | |
alsamixer | |
sudo alsactl store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment