-
Notifications
You must be signed in to change notification settings - Fork 0
/
maverick-brett.sh
executable file
·280 lines (242 loc) · 9.52 KB
/
maverick-brett.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#!/bin/bash
# Ubuntu Assistant - 10.10 (Maverick Meerkat)
# Install requested and required programs and libraries for a better
# desktop experience
# Copyright (C) 2007-2010 Brett Alton <brett.jr.alton@gmail.com>
# Last edited 2010-10-17
# This program 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, either version 3 of the License, or
# (at your option) any later version.
# This program 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 <http://www.gnu.org/licenses/>.
# Depends on Zenity
if [ ! -f /usr/bin/zenity ]; then
sudo apt-get install zenity
fi
sudo add-apt-repository ppa:banshee-team/ppa # Banshee Media Player
sudo add-apt-repository ppa:chromium-daily/stable # Chromium Web Browser
sudo add-apt-repository ppa:docky-core/ppa # Docky (package not yet installed below)
sudo add-apt-repository ppa:doctormo/groundcontrol # Ground Control
sudo add-apt-repository ppa:elementaryart/ppa # Elementary Art
sudo add-apt-repository ppa:gstreamer-developers/ppa # PiTiVi Video Editor
sudo add-apt-repository ppa:lernid-devs/lernid-releases # Lernid
sudo add-apt-repository ppa:openshot.developers/ppa # Openshot
sudo add-apt-repository ppa:pidgin-developers/ppa # Pidgin Instant Messenger
sudo add-apt-repository ppa:rabbitvcs/ppa # RabbitVCS (package not yet installed below)
sudo add-apt-repository ppa:jonls/redshift-ppa # Redshift (package not yet installed below)
sudo add-apt-repository ppa:savoirfairelinux # SFLPhone
sudo add-apt-repository ppa:team-xbmc/ppa # XBMC (package not yet installed below)
sudo add-apt-repository ppa:tiheum/equinox # Equinox theme and Faenza icon set
sudo add-apt-repository ppa:tualatrix/ppa # Ubuntu Tweak
sudo add-apt-repository ppa:ubuntu-wine/ppa # Ubuntu Wine
sudo add-apt-repository ppa:zeitgeist/ppa # Zeitgeist / GNOME Activity Journal (package not yet installed below)
# Medibuntu / https://help.ubuntu.com/community/Medibuntu
sudo wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update
# VirtualBox / http://www.virtualbox.org/wiki/Linux_Downloads
echo 'deb http://download.virtualbox.org/virtualbox/debian maverick non-free' | sudo tee /etc/apt/sources.list.d/virtualbox.list
wget --tries=1 -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
# GetDeb / PlayDeb
PLAYDEB=playdeb_0.3-1~getdeb1_all.deb
GETDEB=getdeb-repository_0.1-1~getdeb1_all.deb
if [ ! -f $PLAYDEB ]; then
wget --tries=1 http://archive.getdeb.net/install_deb/$PLAYDEB
fi
if [ $? -eq 0 ]; then
if [ ! -f $GETDEB ]; then
wget --tries=1 http://archive.getdeb.net/install_deb/$GETDEB
fi
if [ $? -eq 0 ]; then
sudo dpkg -i $PLAYDEB $GETDEB
if [ $? -eq 0 ]; then
rm -f $PLAYDEB $GETDEB
echo ' -- installed playdeb/getdeb repositories'
else
echo ' !! could not install playdeb/getdeb repositories!'
fi
else
echo ' !! could not download getdeb repositories!'
fi
else
echo ' !! could not download playdeb repositories!'
fi
# update
sudo apt-get update
# upgrade
sudo apt-get safe-upgrade
# took out virtualbox-3.2 for now
# install
sudo apt-get install \
agave \
audacity \
banshee \
banshee-extension-alarm \
banshee-extension-coverwallpaper \
banshee-extension-lyrics \
banshee-extension-mirage \
cheese \
chromium-browser \
clive \
community-themes \
conky \
cups-pdf \
elementary-icon-theme \
elementary-theme \
elementary-wallpapers \
emesene \
equinox-theme \
equinox-ubuntu-theme \
faad \
faenza-icon-theme \
ffmpeg \
firefox-notify \
flashplugin-nonfree \
freemind \
gimp \
git-core \
gnome-backgrounds \
gnome-colors \
gnome-themes \
gnome-themes-extras \
gnome-themes-more \
gnome-themes-selected \
gnome-themes-ubuntu \
gparted \
groundcontrol \
gstreamer0.10-ffmpeg \
gstreamer0.10-plugins-bad \
gstreamer0.10-plugins-bad-multiverse \
gstreamer0.10-plugins-ugly \
gstreamer0.10-plugins-ugly-multiverse \
gtk2-engines-equinox \
faenza-icon-theme \
libdvdcss2 \
libdvdnav4 \
liferea \
medibuntu-keyring \
mozilla-plugin-vlc \
msn-pecan \
murrine-themes \
ntfsprogs \
ntp \
nautilus-wallpaper \
non-free-codecs \
openarena \
openshot \
p7zip-full \
parcellite \
pidgin \
pidgin-facebookchat \
pidgin-libnotify \
pidgin-themes \
redshift \
secure-delete \
shiki-colors \
soundconverter \
ssh \
startupmanager \
ttf-droid \
ubuntu-tweak \
ubuntu-wallpapers-extra \
unrar \
vim-nox \
virtualbox-3.2 \
vlc \
wine1.3
# add new Ubuntu logo in gnome-panel
cd $HOME
if [ ! -f $HOME/start-here.png ]; then
wget http://staging.altonlabs.com/ubuntu_assistant/start-here.png
# make sure the file downloaded properly
if [ $? -ne 0 ]; then
echo ' !! Could not download start-here.png!'
else
# delete old start-here.png, if it exists
if [ -f $HOME/.icons/elementary-monochrome/apps/24/start-here.png ]; then
rm -f $HOME/.icons/elementary-monochrome/apps/24/start-here.png
fi
# create directory if it doesn't exist
if [ ! -d $HOME/.icons/elementary-monochrome/apps/24/ ]; then
mkdir -p $HOME/.icons/elementary-monochrome/apps/24/
fi
cp -p $HOME/start-here.png $HOME/.icons/elementary-monochrome/apps/24/start-here.png
rm -f $HOME/start-here.png
fi
fi
# install jump-to-playing 0.3.1
cd $HOME
#wget http://www.stevenbrown.ca/blog/files/2008/10/jump-to-playing-0.3.1.tar.gz
wget http://staging.altonlabs.com/ubuntu_assistant/jump-to-playing-0.3.1.tar.gz
# make sure the file downloaded properly
if [ $? -ne 0 ]; then
echo ' !! Could not download jump-to-playing plugin!'
fi
# delete old jump-to-playing plugin, if it exists
if [ -d $HOME/.gnome2/rhythmbox/plugins/jump-to-playing/ ]; then
rm -rf $HOME/.gnome2/rhythmbox/plugins/jump-to-playing/
fi
# create rhytmbox directory if it does not exist
if [ ! -d $HOME/.gnome2/rhythmbox/plugins/ ]; then
mkdir -p $HOME/.gnome2/rhythmbox/plugins/
fi
# extract downloaded file to rhythmbox plugins directory
if [ -f $HOME/jump-to-playing-0.3.1.tar.gz ]; then
tar -xvzf jump-to-playing-0.3.1.tar.gz -C $HOME/.gnome2/rhythmbox/plugins/ &&
rm -f $HOME/jump-to-playing-0.3.1.tar.gz
else
echo ' !! jump-to-playing-0.3.1.tar.gz not found -- could not install!'
fi
# fonts
cd $HOME
wget http://staging.altonlabs.com/ubuntu_assistant/fonts-20100415.tar.gz
# make sure the file downloaded properly
if [ $? -ne 0 ]; then
echo ' !! Could not download fonts folder!'
fi
# create rhytmbox directory if it does not exist
if [ ! -d $HOME/.fonts/ ]; then
mkdir -p $HOME/.fonts/
fi
# extract downloaded file to rhythmbox plugins directory
if [ -f $HOME/fonts-20100415.tar.gz ]; then
tar -xvzf fonts-20100415.tar.gz -C $HOME/.fonts/ &&
rm -f $HOME/fonts-20100415.tar.gz
else
echo ' !! fonts-20100415.tar.gz not found -- could not install!'
fi
# /apps/gedit
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/auto_indent/auto_indent "true" # auto-indent on
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/current_line/highlight_current_line "true" # add highlight for current line
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/font/use_default_font "false" # turn off default font settings
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/line_numbers/display_line_numbers "true" # show line numbers
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/save/auto_save "false" # turn off auto saving
gconftool-2 --type bool --set /apps/gedit-2/preferences/editor/save/create_backup_copy "false" # turn off backups
gconftool-2 --type int --set /apps/gedit-2/preferences/editor/tabs/tabs_size "4" # tab size of 4 spaces
gconftool-2 --type string --set /apps/gedit-2/preferences/editor/colors/scheme "oblivion" # change theme to oblivion
gconftool-2 --type string --set /apps/gedit-2/preferences/editor/wrap_mode/wrap_mode "GTK_WRAP_WORD" # text wrap on
# /apps/gnome-screenshot
gconftool-2 --type bool --set /apps/gnome-screenshot/include_pointer "false" # turn off mouse pointer in screenshots
# /apps/rhythmbox
gconftool-2 --type bool --set /apps/rhythmbox/plugins/jump-to-playing/active "true"
#/apps/nautilus
gconftool-2 --type string --set /apps/nautilus/preferences/show_icon_text "never"
gconftool-2 --type bool --set /apps/nautilus/desktop/home_icon_visible "true"
gconftool-2 --type bool --set /apps/nautilus/desktop/trash_icon_visible "true"
gconftool-2 --type string --set /apps/nautilus/preferences/date_format "iso"
gconftool-2 --set /apps/nautilus/preferences/always_use_location_entry --type=bool "true"
# /desktop/gnome
gconftool-2 --type int --set /desktop/gnome/thumbnail_cache/maximum_age "7" # only allow thumbnails for 7 days
# theme
zenity --question --text "Do you want to use the custom Ubuntu Assistant theme?" --title="Ubuntu Assistant"
if [ $? -eq 0 ]; then
gconftool-2 --type string --set /apps/metacity/general/theme "Radiance"
gconftool-2 --type string --set /apps/metacity/general/titlebar_font "Ubuntu Italic 10"
gconftool-2 --type string --set /apps/nautilus/preferences/desktop_font "Ubuntu 9"
gconftool-2 --type string --set /desktop/gnome/interface/font_name "Ubuntu 9"
gconftool-2 --type string --set /desktop/gnome/interface/gtk_theme "Clearlooks"
gconftool-2 --type string --set /desktop/gnome/interface/icon_theme "elementary-monochrome"
fi