15760N/A#!/bin/sh
15760N/A#
15760N/A# CDDL HEADER START
15760N/A#
15760N/A# The contents of this file are subject to the terms of the
15760N/A# Common Development and Distribution License, Version 1.0 only
15760N/A# (the "License"). You may not use this file except in compliance
15760N/A# with the License.
15760N/A#
15760N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15760N/A# or http://www.opensolaris.org/os/licensing.
15760N/A# See the License for the specific language governing permissions
15760N/A# and limitations under the License.
15760N/A#
15760N/A# When distributing Covered Code, include this CDDL HEADER in each
15760N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15760N/A# If applicable, add the following below this CDDL HEADER, with the
15760N/A# fields enclosed by brackets "[]" replaced with your own identifying
15760N/A# information: Portions Copyright [yyyy] [name of copyright owner]
15760N/A#
15760N/A# CDDL HEADER END
15760N/A#
15760N/A#
15760N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
15760N/A# Use is subject to license terms.
15760N/A#
15760N/A
15760N/ADT_BINPATH=/usr/dt/bin
15760N/AXPATHS='
15760N/A/usr/X11/bin
15760N/A/usr/openwin/bin
15760N/A'
15760N/A
15760N/Afor XPATH in $XPATHS
15760N/Ado
15760N/A if [ -x $XPATH/xrdb ] ; then
15760N/A XRDB=$XPATH/xrdb
15760N/A fi
15760N/Adone
15760N/A
15760N/AXRDB=${XRDB:-"xrdb"}
15760N/A
15760N/Aif [ -x $DT_BINPATH/dtsession_res ] ; then
15760N/A $DT_BINPATH/dtsession_res -load -system
15760N/A $DT_BINPATH/dtsession_res -merge -tty
15760N/Afi
15760N/A
17513N/Acase $DESKTOP_SESSION in
17513N/Agnome|GNOME|JDS|tgnome|TGNOME|tjds|TJDS|TrustedJDS)
17513N/A $XRDB -merge << EOF
17513N/A ! Default CDE resources
17513N/A *WindowColor: #8A008A008A00
17513N/A !*WindowForeground: #FF0000000000
17513N/A !*DataBackground: #0000FF000000
17513N/A *DataForeground: #FF0000000000
17513N/A *WorkspaceColor: #8A008A008A00
17513N/A *Color.Background: #FF000000FF00
17513N/A !*Color.Foreground: #0000FF000000
17513N/A *foreground: #000000000000
17513N/A ! Hack for Dtmail
17513N/A *XmText*background: seashell
17513N/A *XmTextField*background: seashell
17513N/A *Message_List*background: seashell
17513N/A *background: #AE00B200C300
17513N/A Dthello*string: Welcome to GNOME
15760N/AEOF
17513N/A;;
17513N/Aesac
15760N/A
15760N/Aif [ -f $HOME/.Xdefaults ]; then
15760N/A $XRDB -merge $HOME/.Xdefaults # Load Users X11 resource database
15760N/Afi
15760N/A