Moved theme setting to be E-global (most things have a winter theme ;)

Fixed bug #0000029


SVN revision: 8861
This commit is contained in:
handyande 2004-02-07 00:10:06 +00:00 committed by handyande
parent 37c85df6ca
commit b2968742fc
1 changed files with 12 additions and 3 deletions

View File

@ -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`"