Last active
August 29, 2015 14:04
-
-
Save sio2boss/410b9cb508b3136e4454 to your computer and use it in GitHub Desktop.
ToDo after fresh Ubuntu Install
This file contains 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 | |
# 1: Tweak Tools: | |
sudo apt-get -y install unity-tweak-tool gnome-tweak-tool | |
# 2: Enable one-click to minimize feature: | |
sudo apt-get -y install compizconfig-settings-manager | |
# 3: LightDM Tweaks | |
echo allow-guest=false | sudo tee -a /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf | |
# 4: Disable online searches from dash: | |
wget -q -O – https://fixubuntu.com/fixubuntu.sh | bash | |
# 5: Disable overlay Scrollbars: | |
gsettings set com.canonical.desktop.interface scrollbar-mode normal | |
# 6: Enable recursive search for Nautilus: | |
gsettings set org.gnome.nautilus.preferences enable-interactive-search false | |
# 7: Show username on panel: | |
gsettings set com.canonical.indicator.session show-real-name-on-panel true | |
# 13: Install Restricted Extras: | |
sudo apt-get -y install ubuntu-restricted-extras | |
# 14: Codecs | |
sudo apt-get -y install gstreamer0.10-plugins-ugly libxine1-ffmpeg gxine mencoder libdvdread4 totem-mozilla icedax tagtool easytag id3tool lame nautilus-script-audio-convert libmad0 mpg321 libavcodec-extra | |
# 16: Compression/Decompression tools: | |
sudo apt-get -y install p7zip-rar p7zip-full unace unrar zip unzip sharutils uudeview mpack arj cabextract file-roller | |
# 18: Disable System Crash Reports: change so that enabled=0 | |
sudo service apport stop | |
sudo gedit /etc/default/apport | |
# From http://itrumors.net/top-things-to-do-after-fresh-install-of-ubuntu-14-04-trusty-tahr/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment