From: Chris Gianelloni Date: Wed, 5 Mar 2008 17:03:09 +0000 (+0000) Subject: The default theme for GNOME is now Clearlooks, so we can remove the theme code, but... X-Git-Tag: CATALYST_2_0_6_916~139 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=a4f577cca394bcbb5efc2ad934bcf330e83320f1;p=catalyst.git The default theme for GNOME is now Clearlooks, so we can remove the theme code, but we still want to set the font size. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1355 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index e9aeef11..6daf94bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 # $Id: $ + 05 Mar 2008; Chris Gianelloni + targets/support/livecdfs-update.sh: + The default theme for GNOME is now Clearlooks, so we can remove the theme + code, but we still want to set the font size. + 05 Mar 2008; Chris Gianelloni targets/support/livecdfs-update.sh: We need to put quotes around ${user_comment} or useradd gets confused. diff --git a/targets/support/livecdfs-update.sh b/targets/support/livecdfs-update.sh index 20422422..dcf1d0b3 100755 --- a/targets/support/livecdfs-update.sh +++ b/targets/support/livecdfs-update.sh @@ -261,28 +261,14 @@ case ${clst_livecd_type} in touch /etc/startx ;; - gentoo-release-livecd ) + gentoo-release-livecd) # Setup Gnome theme -# if [ "${clst_livecd_xsession}" == "gnome" ] -# then -# gconftool-2 --direct \ -# --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ -# --type string --set /desktop/gnome/interface/theme Clearlooks -# gconftool-2 --direct \ -# --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ -# --type string --set /apps/metacity/general/theme Clearlooks -# gconftool-2 --direct \ -# --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ -# --type string --set /desktop/gnome/interface/gtk_key_theme \ -# Clearlooks -# gconftool-2 --direct \ -# --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ -# --type string --set /desktop/gnome/interface/gtk_theme \ -# Clearlooks -# gconftool-2 --direct \ -# --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ -# --type string --set /desktop/gnome/interface/font_name "Sans 9" -# fi + if [ "${clst_livecd_xsession}" == "gnome" ] + then + gconftool-2 --direct \ + --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ + --type string --set /desktop/gnome/interface/font_name "Sans 9" + fi # Setup GDM if [ "${clst_livecd_xdm}" == "gdm" ]