Last active
December 19, 2020 16:41
-
-
Save williamtsoi1/3d47e2b073fca7394ec957f2737d4c3b to your computer and use it in GitHub Desktop.
bootstrap script for my linux mint install
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/sh | |
# need to run this whole script as root | |
# remove nosnapd | |
rm -f /etc/apt/preferences.d/nosnap.pref | |
# add ppas | |
apt-add-repository -y ppa:fish-shell/release-3 | |
add-apt-repository -y ppa:oibaf/graphics-drivers | |
add-apt-repository -y ppa:damentz/liquorix | |
add-apt-repository -y ppa:lutris-team/lutris | |
# add Chrome sources | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
# update from ppas | |
apt update && apt -y upgrade | |
# install all the things | |
apt install -y linux-image-liquorix-amd64 linux-headers-liquorix-amd64 fish steam lutris snapd google-chrome-stable gconf2 gconf-service libappindicator1 | |
# install hyper shell terminal | |
wget https://releases.hyper.is/download/deb -O hyper.deb && dpkg -i hyper.deb && rm hyper.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment