diff options
| author | cassio <cassiopc@gmail.com> | 2015-08-27 11:09:30 +0000 |
|---|---|---|
| committer | cassio <cassiopc@gmail.com> | 2015-08-27 11:09:30 +0000 |
| commit | 211ec56904b3ab2d5692c9b637b564a356ab23a8 (patch) | |
| tree | 6827c33c5570aacd0b819294be2f74d62affcfc4 /tools/install_14_04_3.sh | |
| parent | 6e566d61134a1dab489540dbc75129634d36e82f (diff) | |
| download | boca-211ec56904b3ab2d5692c9b637b564a356ab23a8.tar.gz boca-211ec56904b3ab2d5692c9b637b564a356ab23a8.zip | |
bug fixes
Diffstat (limited to 'tools/install_14_04_3.sh')
| -rwxr-xr-x | tools/install_14_04_3.sh | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/tools/install_14_04_3.sh b/tools/install_14_04_3.sh index 60057d6..084248a 100755 --- a/tools/install_14_04_3.sh +++ b/tools/install_14_04_3.sh @@ -26,7 +26,19 @@ if [ "`id -u`" != "0" ]; then exit 1 fi -apt-get -y remove update-manager +## REMOVE NOTIFICATIONS +# killall update-notifier +# if [ ! -f /usr/bin/update-notifier.orig ]; then +# mv /usr/bin/update-notifier /usr/bin/update-notifier.orig +# fi +# echo "#!/bin/bash" >/usr/bin/update-notifier +# find /usr/lib -name notify-osd | xargs chmod -x +# killall notify-osd 2>/dev/null +gconftool -s -t bool /apps/update-notifier/auto_launch false +if [ -f /usr/share/dbus-1/services/org.freedesktop.Notifications.service ]; then + mv /usr/share/dbus-1/services/org.freedesktop.Notifications.service /usr/share/dbus-1/services/org.freedesktop.Notifications.service.disabled +fi + apt-get -y install python-software-properties 2>/dev/null for i in id chown chmod cut awk tail grep cat sed mkdir rm mv sleep apt-get add-apt-repository update-alternatives; do @@ -64,10 +76,9 @@ echo "=============================================================" echo "========= UNINSTALLING SOME UNNECESSARY PACKAGES ===========" echo "=============================================================" apt-get -y purge libreoffice-common libreoffice-base-core -apt-get -y purge bluez thunderbird +apt-get -y purge thunderbird apt-get -y purge unity-lens-shopping apt-get -y purge unity-webapps-common -apt-get -y purge unity-lens-applications apt-get -y install sysvinit-utils gsettings set com.canonical.Unity.Lenses disabled-scopes "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope', 'more_suggestions-populartracks.scope', 'music-musicstore.scope', 'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope', 'more_suggestions-skimlinks.scope']" >/dev/null 2>&1 apt-get -y autoremove |