#!/bin/sh
echo ""
echo "***    Ubuntu 8.10 Tweak    ***"
echo "***     modded for the      ***"
echo "***        Eee pc 901       ***"
echo "***      version 0.0.2      ***"
echo "*** www.boatanchor.co.uk/rc ***"
echo "***      original from      ***"
echo "***    http://tr.im/1d7x    ***"
echo ""
echo "thx to http://ubuntu-eee.tuxfamily.org/"
echo "thx to http://code.google.com/p/eee-osd/"
echo "thx to https://help.ubuntu.com/community/EeePC/Using"
echo ""
echo "** Gnome settings"
echo "* Setting smaller font sizes"
gconftool-2 --set /apps/nautilus/preferences/desktop_font --type string "Sans 8"
gconftool-2 --set /desktop/gnome/interface/document_font_name --type string "Sans 8"
gconftool-2 --set /desktop/gnome/interface/font_name --type string "Sans 8"
gconftool-2 --set /apps/metacity/general/titlebar_font --type string "Sans Bold 8"
gconftool-2 --set /desktop/gnome/interface/monospace_font_name --type string "Monospace 9"
echo "* Top and bottom panels smaller"
gconftool-2 --set /apps/panel/toplevels/top_panel_screen0/size --type integer 19
gconftool-2 --set /apps/panel/toplevels/bottom_panel_screen0/size --type integer 19
echo "* Remove icons from the menu"
gconftool-2 --set /desktop/gnome/interface/menus_have_icons --type bool 0
echo "* Smaller toolbars icons only"
gconftool-2 --set /desktop/gnome/interface/toolbar_style --type string "icons"
echo "* Fullscreen with <Alt>-F11"
gconftool-2 --set /apps/metacity/window_keybindings/toggle_fullscreen --type string "<Alt>F11"
echo "Gnome-settings done."
echo "Done!"

