Skip to content

Instantly share code, notes, and snippets.

@AndreasStokholm
Forked from anonymous/UIS.sh
Last active December 1, 2017 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreasStokholm/8a54cec3289ef38fda94e193cfcc9665 to your computer and use it in GitHub Desktop.
Save AndreasStokholm/8a54cec3289ef38fda94e193cfcc9665 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Update all repos
apt-get update
# Install some default software we need to install the rest
apt-get install -y apt-transport-https
# Add all repos I want to install
# Krita
add-apt-repository -y ppa:kritalime/ppa
# Cryptomator
add-apt-repository -y ppa:sebastian-stenzel/cryptomator
# OBS Studio
add-apt-repository -y ppa:obsproject/obs-studio
# MPV - Video player
add-apt-repository -y ppa:mc3man/mpv-tests
# Theme for Ubunutu
add-apt-repository -y ppa:tista/adapta
# Wire
wget -nv https://download.opensuse.org/repositories/home:manuelschneid3r/xUbuntu_17.10/Release.key -O Release.key
apt-key add - < Release.key
wget -q https://wire-app.wire.com/linux/releases.key -O- | sudo apt-key add -
echo "deb https://wire-app.wire.com/linux/debian stable main" | sudo tee /etc/apt/sources.list.d/wire-desktop.list
# Sublime Text 3
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
# Update so we get all repos
apt-get update
# Start installing all software
apt-get install -y git
apt-get install -y zeal
apt-get install -y openvpn
apt-get install -y p7zip-full
apt-get install -y krita0
apt-get install -y cryptomator
apt-get install -y wire-desktop
apt-get install -y sublime-text
apt-get install -y obs-studio
apt-get install -y mpv
apt-get install -y ffmpeg
apt-get install -y adobe-flashplugin
apt-get install gnome-tweak-tool
apt install -y browser-plugin-freshplayer-pepperflash
apt install -y adapta-gtk-theme
apt-get install -y nautilus-admin
# Restart our Nautilus so we get admin privlages working
nautilus -q
# Albert
sh -c "echo 'deb http://download.opensuse.org/repositories/home:/manuelschneid3r/xUbuntu_17.10/ /' > /etc/apt/sources.list.d/albert.list"
apt-get update
apt-get install -y albert
# Upgrade Ubunutu with latest
apt-get update
apt-get -y upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment