Skip to content

Instantly share code, notes, and snippets.

@HendrikPetertje
Last active January 27, 2016 06:44
Show Gist options
  • Select an option

  • Save HendrikPetertje/11180723 to your computer and use it in GitHub Desktop.

Select an option

Save HendrikPetertje/11180723 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 post-install
#!/bin/bash
# -*- Mode: sh; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#
# Authors:
# Sam Hewitt <[email protected]>
# Peter van der Meulen <[email protected]>
#
# Description:
# A post-installation bash script for Ubuntu (14.04)
#
# Legal Stuff:
#
# This script is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; version 3.
#
# This script is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, see <https://www.gnu.org/licenses/gpl-3.0.txt>
echo ''
echo '#-------------------------------------------#'
echo '# Ubuntu 14.04 Post-Install Script #'
echo '#-------------------------------------------#'
#----- FUNCTIONS -----#
# SYSTEM UPGRADE
function sysupgrade {
# Perform system upgrade
echo ''
read -p 'Proceed with system upgrade? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Dist-Upgrade
echo 'Performing system upgrade...'
sudo apt-get dist-upgrade -y
echo 'Done.'
main
;;
# Negative action
[Nn]* )
clear && main
;;
# Error
* )
clear && echo 'Sorry, try again.'
sysupgrade
;;
esac
}
# INSTALL APPLICATIONS
function favourites {
# Install Favourite Applications
echo ''
echo 'Installing selected favourite applications...'
echo ''
echo 'Current package list:
cheese
darktable
easytag
gnome-tweak-tool
ubuntu-tweak-tool
terminator (multiwindow terminal)
gpick
grsync
nautilus-dropbox
nautilus-open-terminal
pyrenamer
sparkleshare
xchat
vlc'
echo ''
read -p 'Proceed? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Requires root privileges:'
# Feel free to change to whatever suits your preferences.
sudo apt-add-repository -y ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install -y --no-install-recommends cheese darktable easytag gnome-tweak-tool ubuntu-tweak gpick grsync nautilus-dropbox nautilus-open-terminal terminator pyrenamer sparkleshare xchat vlc
echo 'Done.'
main
;;
# Negative action
[Nn]* )
clear && main
;;
# Error
* )
clear && echo 'Sorry, try again.'
favourites
;;
esac
}
# INSTALL SYSTEM TOOLS
function system {
echo ''
echo '1. Install favourite system utilities?'
echo '2. Install fingerprint reader software?'
echo 'r. Return.'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
# Install Favourite System utilities
1)
echo 'Installing favourite system utilities...'
echo ''
echo 'Current package list:
aptitude
dconf-tools
openjdk-7-jdk
openssh-server
p7zip-full
ppa-purge
python-soappy
samba
ssh
supybot
symlinks
synaptic
virt-manager
zsync'
echo ''
read -p 'Proceed? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Requires root privileges:'
# Feel free to change to whatever suits your preferences.
sudo apt-get install -y --no-install-recommends aptitude dconf-tools openjdk-7-jdk openssh-server p7zip-full ppa-purge python-soappy samba ssh supybot symlinks synaptic virt-manager zsync
echo 'Done.'
clear && system
;;
# Negative action
[Nn]* )
clear && system
;;
# Error
* )
clear && echo 'Sorry, try again.'
system
;;
esac
;;
# Install Fingerprint Reader Software
2)
# Add repository
echo 'Adding Fingerprint Reader Team PPA to software sources...'
echo 'Requires root privileges:'
sudo apt-add-repository -y ppa:fingerprint/fingerprint-gui
# Update repository information
echo 'Updating repository information...'
sudo apt-get update
# Install package(s)
echo 'Installing fingerprint reader software...'
sudo apt-get install -y libbsapi policykit-1-fingerprint-gui fingerprint-gui
echo 'Done.'
system
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && development;;
esac
}
# INSTALL GNOME COMPONENTS
function gnome {
echo ''
echo '1. Add GNOME3 PPA?'
echo '2. Add GNOME3 Staging PPA?'
echo '3. Add GNOME3 Next PPA?'
echo '4. Install GNOME Shell?'
echo '5. Install extra GNOME components?'
echo '6. Configure GNOME Shell Specific Settings?'
echo 'r. Return.'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
# Add GNOME3 PPA
1)
# Add repository
echo 'Adding GNOME3 PPA to software sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:gnome3-team/gnome3
# Update repository information
echo 'Updating repository information...'
sudo apt-get update
# Upgrade system
echo 'Performing system upgrade...'
sudo apt-get dist-upgrade -y
echo 'Done.'
echo ''
gnome
;;
# Add GNOME3 Staging PPA
2)
# Add repository
echo 'Adding GNOME3 Staging PPA to software sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:gnome3-team/gnome3-staging
# Update repository information
echo 'Updating repository information...'
sudo apt-get update
# Upgrade system
echo 'Performing system upgrade...'
sudo apt-get dist-upgrade -y
echo 'Done.'
echo ''
gnome
;;
# Add GNOME3 Next PPA
3)
# Add repository
echo 'Adding GNOME3 Next PPA to software sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:gnome3-team/gnome3-next
# Update repository information
echo 'Updating repository information...'
sudo apt-get update
# Upgrade system
echo 'Performing system upgrade...'
sudo apt-get dist-upgrade -y
echo 'Done.'
echo ''
gnome
;;
# Install GNOME Shell
4)
echo 'Installing GNOME Shell...'
echo 'Requires root privileges:'
sudo apt-get install -y gnome-shell gnome-shell-extensions gnome-session
echo 'Done.'
echo ''
gnome
;;
# Install extra GNOME components
5)
echo 'Installing extra GNOME components...'
echo 'Requires the "gnome3-staging" and "gnome3-next" PPAs to be in the repositories.'
echo ''
echo 'Current package list:
cheese
gnome-boxes
gnome-maps
gnome-online-accounts
gnome-weather'
echo ''
read -p 'Proceed? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Requires root privileges:'
# Feel free to change to whatever suits your preferences.
sudo apt-get install -y cheese gnome-boxes gnome-maps gnome-online-accounts gnome-weather
echo 'Done.'
clear && gnome
;;
# Negative action
[Nn]* )
clear && gnome
;;
# Error
* )
clear && echo 'Sorry, try again.'
gnome
;;
esac
;;
# Configure Shell Specific Settings
6)
# Font Settings
echo 'Setting font preferences...'
echo 'Requires the "Cantarell" font.'
# Check if "fonts-cantarell" package is installed
PACKAGE=$(dpkg-query -W --showformat='${Status}\n' fonts-cantarell | grep "install ok installed")
echo "Checking if installed..."
if [ "" == "$PACKAGE" ]; then
echo 'Cantarell is not installed.'
echo 'Installing... '
echo 'Requires root privileges:'
sudo apt-get install -y fonts-cantarell
echo 'Done. '
else
echo 'Cantarell is installed, proceeding... '
fi
# Settings font settings
gsettings set org.gnome.desktop.interface text-scaling-factor '1.0'
gsettings set org.gnome.desktop.interface document-font-name 'Cantarell 10'
gsettings set org.gnome.desktop.interface font-name 'Cantarell 10'
gsettings set org.gnome.nautilus.desktop font 'Cantarell 10'
gsettings set org.gnome.desktop.wm.preferences titlebar-font 'Cantarell Bold 10'
gsettings set org.gnome.settings-daemon.plugins.xsettings antialiasing 'rgba'
gsettings set org.gnome.settings-daemon.plugins.xsettings hinting 'slight'
echo 'Done. '
# GNOME Shell Settings
echo 'Setting GNOME Shell window button preferences...'
gsettings set org.gnome.shell.overrides button-layout ':close'
echo 'Done. '
echo ''
gnome
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && gnome;;
esac
}
# INSTALL UBUNTU RESTRICTED EXTRAS
function codecinstall {
echo ''
read -p 'Install Ubuntu Restricted Extras? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Installing...'
echo 'Requires root privileges:'
sudo apt-get install -y ubuntu-restricted-extras
echo 'Done.'
main
;;
# Negative action
[Nn]* )
clear && main;;
# Error
* )
clear && echo 'Sorry, try again.' && codecinstall
esac
}
# INSTALL DEVELOPMENT TOOLS
function development {
echo ''
echo '1. Install development tools with rbenv?'
echo '2. Install Ubuntu SDK?'
echo '3. Install Ubuntu Phablet Tools?'
echo 'r. Return'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
# Install Development Tools
1)
echo 'Installing development tools...'
echo ''
echo 'Current package list:
bzr
devscripts
git
glade
gnome-common
gtk-3-examples
nodejs
python-launchpadlib
python3-distutils-extra
rbenv and extra stuff
Git'
echo ''
read -p 'Proceed? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Requires root privileges:'
# Feel free to change to whatever suits your preferences.
sudo apt-get install -y bzr devscripts gcc-snapshot git glade gnome-common gtk-3-examples lib32stdc++6 nodejs python-launchpadlib python3-distutils-extra
echo 'Installing Rbenv dependencies'
sudo apt-get install -y build-essential git-core python-software-properties openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev libcurl4-openssl-dev libpq-dev imagemagick ufw postgresql postgresql-contrib libpq-dev nodejs
echo 'Cloning rbenv from github and creatig executables'
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
echo 'Installing ruby-builder'
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'Before installing your ruby version restart your terminal'
echo 'Done.'
development
;;
# Negative action
[Nn]* )
clear && development
;;
# Error
* )
clear && echo 'Sorry, try again.'
development
;;
esac
;;
# Install Ubuntu SDK
2)
# Add repository
echo 'Adding Ubuntu SDK Team PPA to software sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:ubuntu-sdk-team/ppa
# Update repository information
echo 'Updating repository information...'
sudo apt-get update
# Install package(s)
echo 'Installing Ubuntu SDK...'
sudo apt-get install -y ubuntu-sdk
echo 'Done.'
development
;;
# Install Ubuntu Phablet Tools
3)
echo 'Installing Phablet Tools...'
sudo apt-get install -y phablet-tools
echo 'Done.'
development
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && development;;
esac
}
# INSTALL DESIGN TOOLS
function design {
echo ''
echo 'Installing design tools...'
echo ''
echo 'Current package list:
fontforge
fontforge-extras
gimp
gimp-plugin-registry
icontool
imagemagick
inkscape'
echo ''
read -p 'Proceed? (Y)es, (N)o : ' REPLY
case $REPLY in
# Positive action
[Yy]* )
echo 'Requires root privileges:'
# Feel free to change to whatever suits your preferences.
sudo apt-get install -y fontforge fontforge-extras gimp gimp-plugin-registry icontool imagemagick inkscape
echo 'Done.'
main
;;
# Negative action
[Nn]* )
clear && main;;
# Error
* )
clear && echo 'Sorry, try again.' && design
;;
esac
}
# THIRD PARTY THEMES
function themes {
echo 'What would you like to install? '
echo ''
echo '1. Moka Icon Theme'
echo '2. Faba Icon Theme'
echo '3. Moka GTK Theme'
echo '4. Moka GNOME Shell Theme'
echo '5. Orchis GTK Theme'
echo 'r. Return'
echo ''
read -p 'Enter your choice: ' REPLY
case $REPLY in
# Moka Icon Theme
1)
# Add repository
echo 'Adding Moka Icon Theme repository to sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:moka/moka-icon-theme
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Install package(s)
echo 'Installing Moka icon themes...'
echo 'Requires root privileges:'
sudo apt-get install -y moka-icon-theme
echo 'Done.'
# Set Theme
read -p "Do you want to set Moka as desktop theme? (Y)es, (N)o : " INPUT
case $INPUT in
[Yy]* )
echo "Setting Moka as desktop Icon theme..."
gsettings set org.gnome.desktop.interface icon-theme "Moka"
echo "Done."
themes
;;
[Nn]* ) echo 'Done.'; themes;;
* ) echo; echo "Uh oh, invalid response. Continuing without changes."; themes;;
esac
themes
;;
# Faba Icon Theme
2)
# Add repository
echo 'Adding Faba Icon Theme repository to sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:moka/faba-icon-theme
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Install package(s)
echo 'Installing Faba icon themes...'
echo 'Requires root privileges:'
sudo apt-get install -y faba-icon-theme faba-mono-icons faba-icon-theme-symbolic
echo 'Done.'
themes
;;
# Moka GTK Theme
3)
# Add repository
echo 'Adding Moka GTK Theme repository to sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:moka/moka-gtk-theme
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Install package(s)
echo 'Installing Moka GTK theme...'
echo 'Requires root privileges:'
sudo apt-get install -y moka-gtk-theme
echo 'Done.'
# Set Theme
read -p "Do you want to set Moka as desktop theme? (Y)es, (N)o : " INPUT
case $INPUT in
[Yy]* )
echo "Setting Moka as GTK window theme..."
gsettings set org.gnome.desktop.wm.preferences theme "Moka"
echo "Done."
echo "Setting Moka as desktop GTK theme..."
gsettings set org.gnome.desktop.interface gtk-theme "Moka"
echo "Done."
themes
;;
[Nn]* ) echo 'Done.'; themes;;
* ) echo; echo "Uh oh, invalid response. Continuing without changes."; themes;;
esac
themes
;;
# Moka GNOME Shell Theme
4)
# Add repository
echo 'Adding Moka GNOME Shell Theme repository to sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:moka/moka-gnome-shell-theme
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Install package(s)
echo 'Installing Moka GNOME Shell theme...'
echo 'Requires root privileges:'
sudo apt-get install -y moka-gnome-shell-theme
echo 'Done.'
themes
;;
# Orchis GTK Theme
5)
# Add repository
echo 'Adding Orchis GTK Theme repository to sources...'
echo 'Requires root privileges:'
sudo add-apt-repository -y ppa:moka/orchis-gtk-theme
# Update repository information
echo 'Updating repository information...'
echo 'Requires root privileges:'
sudo apt-get update
# Install package(s)
echo 'Installing Orchis GTK theme...'
echo 'Requires root privileges:'
sudo apt-get install -y orchis-gtk-theme
echo 'Done.'
# Set Theme
read -p "Do you want to set Orchis as desktop theme? (Y)es, (N)o : " INPUT
case $INPUT in
[Yy]* )
echo "Setting Orchis as GTK window theme..."
gsettings set org.gnome.desktop.wm.preferences theme "Orchis"
echo "Done."
echo "Setting Orchis as desktop GTK theme..."
gsettings set org.gnome.desktop.interface gtk-theme "Orchis"
echo "Done."
themes
;;
[Nn]* ) echo 'Done.'; themes;;
* ) echo; echo "Uh oh, invalid response. Continuing without changes."; themes;;
esac
themes
;;
# Return
[Rr]*)
clear && customize;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && themes;;
esac
}
# CUSTOMIZATION
function customize {
echo ''
echo '1. Configure system?'
echo '2. Install Third-Party themes?'
echo 'r. Return'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
1) clear && config;; # System Configuration
2) clear && themes;; # Install Third-Party Themes
[Rr]*) clear && main;; # Return
* ) clear && echo 'Not an option, try again.' && customize;; # Invalid choice
esac
}
# THIRD PARTY APPLICATIONS
function thirdparty {
echo 'What would you like to install? '
echo ''
echo '1. Google Chrome?'
echo '2. Google Talk Plugin?'
echo '3. Google Music Manager?'
echo '4. Steam?'
echo '5. Sublime Text 3 (build 3059)?'
echo '6. Spotify client'
echo 'r. Return'
echo ''
read -p 'Enter your choice: ' REPLY
case $REPLY in
# Google Chrome
1)
echo 'Downloading Google Chrome...'
# Download Debian file that matches system architecture
if [ $(uname -i) = 'i386' ]; then
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
elif [ $(uname -i) = 'x86_64' ]; then
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
fi
# Install package(s)
echo 'Installing Google Chrome...'
echo 'Requires root privileges:'b
sudo dpkg -i google-chrome*.deb
sudo apt-get install -fy
# Cleanup and finish
rm google-chrome*.deb
cd
echo 'Done.'
thirdparty
;;
# Google Talk Plugin
2)
echo 'Downloading Google Talk Plugin...'
# Download Debian file that matches system architecture
if [ $(uname -i) = 'i386' ]; then
wget https://dl.google.com/linux/direct/google-talkplugin_current_i386.deb
elif [ $(uname -i) = 'x86_64' ]; then
wget https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb
fi
# Install package(s)
echo 'Installing Google Talk Plugin...'
echo 'Requires root privileges:'
sudo dpkg -i google-talkplugin_current*.deb
sudo apt-get install -fy
# Cleanup and finish
rm google-talkplugin_current*.deb
cd
echo 'Done.'
thirdparty
;;
# Google Music Manager
3)
echo 'Downloading Google Music Manager...'
# Download Debian file that matches system architecture
if [ $(uname -i) = 'i386' ]; then
wget https://dl.google.com/linux/direct/google-musicmanager-beta_current_i386.deb
elif [ $(uname -i) = 'x86_64' ]; then
wget https://dl.google.com/linux/direct/google-musicmanager-beta_current_amd64.deb
fi
# Install package(s)
echo 'Installing Google Music Manager...'
echo 'Requires root privileges:'
sudo dpkg -i google-musicmanager-*.deb
sudo apt-get install -fy
# Cleanup and finish
rm google-musicmanager*.deb
cd
echo 'Done.'
thirdparty
;;
# Steam
4)
echo 'Downloading Steam...'
cd $HOME/Downloads
# Download Debian file that matches system architecture
if [ $(uname -i) = 'i386' ]; then
wget http://repo.steampowered.com/steam/archive/precise/steam_latest.deb
elif [ $(uname -i) = 'x86_64' ]; then
wget http://repo.steampowered.com/steam/archive/precise/steam_latest.deb
fi
# Install package(s)
echo 'Installing Steam...'
echo 'Requires root privileges:'
sudo dpkg -i steam*.deb
sudo apt-get install -fy
# Cleanup and finish
rm steam*.deb
cd
echo 'Done.'
thirdparty
;;
# Sublime Text 3 (build 3059)
5)
sudo add-apt-repository -y ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
echo 'Done.'
thirdparty
;;
# Spotify
6)
# Add repository
echo 'Adding Spotify repository to sources...'
echo 'Creating apt list file...'
touch spotify.list
echo "deb http://repository.spotify.com stable non-free" >> spotify.list
echo 'Moving spotify.list to /etc/apt/sources.list.d/'
echo 'Requires root privileges:'
sudo mv -f spotify.list /etc/apt/sources.list.d/
echo 'Done.'
# Update repository information
echo 'Adding repository key and updating repository information...'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59
sudo apt-get update
# Install package(s)
echo 'Installing Spotify client...'
sudo apt-get install -y spotify-client
echo 'Done.'
thirdparty
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && thirdparty;;
esac
}
# CONFIG
function config {
echo ''
echo '1. Set preferred application-specific settings?'
echo '2. Show all startup applications?'
echo 'r. Return'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
# GSettings
1)
# Font Sizes
echo 'Setting font preferences...'
gsettings set org.gnome.desktop.interface text-scaling-factor '1.0'
gsettings set org.gnome.desktop.interface document-font-name 'Ubuntu 10'
gsettings set org.gnome.desktop.interface font-name 'Ubuntu 10'
gsettings set org.gnome.desktop.interface monospace-font-name 'Ubuntu Mono 11'
gsettings set org.gnome.nautilus.desktop font 'Ubuntu 10'
gsettings set org.gnome.desktop.wm.preferences titlebar-font 'Ubuntu Bold 9'
gsettings set org.gnome.settings-daemon.plugins.xsettings antialiasing 'rgba'
gsettings set org.gnome.settings-daemon.plugins.xsettings hinting 'slight'
# Unity Settings
echo 'Setting Unity preferences...'
gsettings set com.canonical.Unity.ApplicationsLens display-available-apps false
gsettings set com.canonical.unity-greeter draw-user-backgrounds true
gsettings set com.canonical.indicator.power icon-policy 'charge'
gsettings set com.canonical.Unity.Lenses remote-content-search 'none'
# Nautilus Preferences
echo 'Setting Nautilus preferences...'
gsettings set org.gnome.nautilus.preferences sort-directories-first true
# Rhythmbox Preferences
echo 'Setting Rhythmbox preferences...'
gsettings set org.gnome.rhythmbox.rhythmdb monitor-library true
gsettings set org.gnome.rhythmbox.sources browser-views 'artists-albums'
# Done
echo "Done."
config
;;
# Startup Applications
2)
echo 'Changing display of startup applications.'
echo 'Requires root privileges:'
cd /etc/xdg/autostart/ && sudo sed --in-place 's/NoDisplay=true/NoDisplay=false/g' *.desktop
cd
echo 'Done.'
config
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && config;;
esac
}
# CLEANUP SYSTEM
function cleanup {
echo ''
echo '1. Remove unused pre-installed packages?'
echo '2. Remove old kernel(s)?'
echo '3. Remove orphaned packages?'
echo '4. Remove leftover configuration files?'
echo '5. Clean package cache?'
echo 'r. Return?'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
# Remove Unused Pre-installed Packages
1)
echo 'Removing selected pre-installed applications...'
echo 'Requires root privileges:'
sudo apt-get purge landscape-client-ui-install ubuntuone-control-panel* overlay*
echo 'Done.'
cleanup
;;
# Remove Old Kernel
2)
echo 'Removing old Kernel(s)...'
echo 'Requires root privileges:'
sudo dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | grep -v linux-libc-dev | xargs sudo apt-get -y purge
echo 'Done.'
cleanup
;;
# Remove Orphaned Packages
3)
echo 'Removing orphaned packages...'
echo 'Requires root privileges:'
sudo apt-get autoremove -y
echo 'Done.'
cleanup
;;
# Remove residual config files?
4)
echo 'Removing leftover configuration files...'
echo 'Requires root privileges:'
sudo dpkg --purge $(COLUMNS=200 dpkg -l | grep '^rc' | tr -s ' ' | cut -d ' ' -f 2)
echo 'Done.'
cleanup
;;
# Clean Package Cache
5)
echo 'Cleaning package cache...'
echo 'Requires root privileges:'
sudo apt-get clean
echo 'Done.'
cleanup
;;
# Return
[Rr]*)
clear && main;;
# Invalid choice
* )
clear && echo 'Not an option, try again.' && cleanup;;
esac
}
# Quit
function quit {
read -p "Are you sure you want to quit? (Y)es, (N)o " REPLY
case $REPLY in
[Yy]* ) exit 99;;
[Nn]* ) clear && main;;
* ) clear && echo 'Sorry, try again.' && quit;;
esac
}
#----- MAIN FUNCTION -----#
function main {
echo ''
echo '1. Perform system update & upgrade?'
echo '2. Install favourite applications?'
echo '3. Install favourite system utilities?'
echo '4. Install development tools?'
echo '5. Install design tools?'
echo '6. Install extra GNOME components?'
echo '7. Install Ubuntu Restricted Extras?'
echo '8. Install third-party applications?'
echo '9. Customize system?'
echo '10. Cleanup the system?'
echo 'q. Quit?'
echo ''
read -p 'What would you like to do? (Enter your choice) : ' REPLY
case $REPLY in
1) sysupgrade;; # System Upgrade
2) clear && favourites;; # Install Favourite Applications
3) clear && system;; # Install Favourite Tools
4) clear && development;; # Install Dev Tools
5) clear && design;; # Install Design Tools
6) clear && gnome;; # Install GNOME components
7) clear && codecinstall;; # Install Ubuntu Restricted Extras
8) clear && thirdparty;; # Install Third-Party Applications
9) clear && customize;; # Customize system
10) clear && cleanup;; # Cleanup System
[Qq]* ) echo '' && quit;; # Quit
* ) clear && echo 'Not an option, try again.' && main;;
esac
}
#----- RUN MAIN FUNCTION -----#
main
#END OF SCRIPT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment