Skip to content

Instantly share code, notes, and snippets.

@kelunik
Last active March 10, 2016 11:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelunik/4c97f677d1e14f701810 to your computer and use it in GitHub Desktop.
Save kelunik/4c97f677d1e14f701810 to your computer and use it in GitHub Desktop.
X1C Install
#!/bin/bash
# re-run as root if necessary
if [[ $EUID -ne 0 ]]; then
sudo ./$0
exit
fi
# apt-get install -y acpi
# Common
apt-get install -y chromium-browser skype
apt-get install -y texlive-full
apt-get install -y weechat
# Audio
apt-get install -y audacity
# Graphics
apt-get install -y blender gimp
# Development
apt-get install -y git subversion maven kdiff3
apt-get install -y bluej eclipse
apt-get install -y apache2 nodejs
apt-get install -y php phpmyadmin
apt-get install -y mysql-server redis-server
apt-get install -y automake autoconf bison
# Tools
apt-get install -y pngcrush samba
apt-get install -y ubuntu-tweak
apt-get install -y wireshark zenmap
###############################################################################
# PPAs #
###############################################################################
# Tlp
add-apt-repository ppa:linrunner/tlp
# Telegram
add-apt-repository ppa:atareao/telegram
# Oracle Java
add-apt-repository ppa:webupd8team/java
# Spotify
echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 94558F59
###############################################################################
apt-get update
###############################################################################
# Tlp
apt-get install -y tlp tlp-rdw
tlp start
# Telegram
apt-get install -y telegram
# Oracle Java
apt-get install -y oracle-java7-installer
# Spotify
apt-get install -y spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment