home *** CD-ROM | disk | FTP | other *** search
Korn shell script | 1998-08-19 | 2.2 KB | 71 lines |
- #!/bin/ksh
- #####################################################################
- ### File: 0020.dtims
- ###
- ### Default Location: /usr/dt/config/Xsession.d/
- ###
- ### Purpose: Start desktop input method server if required
- ###
- ### Description:
- ### This script is invoked by means of the Xsession file
- ### at user login. It starts an input method server as
- ### required for selected locales.
- ###
- ### Invoked by: /usr/dt/bin/Xsession
- ###
- ### Product: @(#)TriTeal Enterprise Desktop
- ###
- ### Note:
- ###
- ### The /usr/dt/config/Xsession.d/0020.dtims file is a
- ### factory-default file and will be unconditionally overwritten upon
- ### subsequent installation. To customize input method server startup
- ### behavior, copy this file to the configuration directory,
- ### /etc/dt/config/Xsession.d and customize that version
- ### of the file.
- ###
- ### The value of DTSTARTIMS determines whether this file,
- ### /usr/dt/config/Xsession.d/0020.dtims, will start
- ### the specified input method server. Should an input method server
- ### be started from /etc/dt/config/Xsession.d/0020.dtims
- ### or should an input method server not be desired, unset DTSTARTIMS
- ### to prevent this file from starting one.
- ###
- ### The general logic of this file is:
- ###
- ### if [ "$DTSTARTIMS" = "True" ]
- ### then
- ### <start input method server>
- ### unset DTSTARTIMS
- ### fi
- ###
- ### Revision: $XConsortium: 0020.dtims.src /main/cde1_maint/3 1995/10/03 17:39:03 gtsang $
- ###
- ### (c) Copyright 1994 TriTeal Corporation
- ### (c) Copyright 1993, 1994 Hewlett-Packard Company
- ### (c) Copyright 1993, 1994 International Business Machines Corp.
- ### (c) Copyright 1993, 1994 Sun Microsystems, Inc.
- ### (c) Copyright 1993, 1994 Novell, Inc.
- ###
- ### @(#)TED Version: TED 4.2 Alpha 99-4200-00
- ### @(#)TED FileVersion: 0020.dtims: $Id: 0020.dtims.src,v 1.1.1.1 1997/09/09 01:27:39 philip Exp $
- ###
- #####################################################################
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ########################## eof #####################
-