From b2968742fc04593a7769b9ce6a48657738dc4ce3 Mon Sep 17 00:00:00 2001 From: handyande Date: Sat, 7 Feb 2004 00:10:06 +0000 Subject: [PATCH] Moved theme setting to be E-global (most things have a winter theme ;) Fixed bug #0000029 SVN revision: 8861 --- .../ecore/src/lib/ecore_config/build_system.db.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_config/build_system.db.sh b/legacy/ecore/src/lib/ecore_config/build_system.db.sh index 6019aa4e39..cb1168582f 100755 --- a/legacy/ecore/src/lib/ecore_config/build_system.db.sh +++ b/legacy/ecore/src/lib/ecore_config/build_system.db.sh @@ -1,9 +1,18 @@ #!/bin/sh DB=system.db -edb_ed $DB add /ewl/theme/name str "default" +edb_ed $DB add /e/theme/name str "winter" if [ $BROWSER ]; then edb_ed $DB add /apps/web/browser str "$BROWSER" else -edb_ed $DB add /apps/web/browser str "`which MozillaFirebird || which phoenix || which mozilla || which opera || which konqueror || which epiphany`" +edb_ed $DB add /apps/web/browser str "`which MozillaFirebird 2>/dev/null || + which phoenix 2>/dev/null || + which mozilla 2>/dev/null || + which opera 2>/dev/null || + which konqueror 2>/dev/null || + which epiphany 2>/dev/null`" fi -edb_ed $DB add /apps/web/email str "`which MozillaThunderbird || which mozilla || which kmail || which sylpheed || which evolution`" +edb_ed $DB add /apps/web/email str "`which MozillaThunderbird 2>/dev/null || + which mozilla 2>/dev/null || + which kmail 2>/dev/null || + which sylpheed 2>/dev/null || + which evolution 2>/dev/null`"