1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# comment -*-coding: iso-8859-9;-*-
Bash kabuk oturumunda etkin olacak ayarlar
END
Bash kabuk oturumunda etkin olacak ayarlar
END
# All these environment cruft should be placed in the shell profile and
# the xsession file, so that they could be set once per session. But
# unfortunately, some programs with their poorly designed init scheme
# ('gdm' comes first) may break this approach. So we must use a brute
# force approach. Sorry for the cruft.
print <<"EOF";
# Do not attempt to set the locale for an UXTerm session.
# UXTerm sets it locale environment automagically.
if [ -z "\$UXTERM" ]; then
LANG=$LOCALE
export LANG
fi
# Follow POSIX locale for some items --optional.
#LC_MESSAGES=C
#LC_TIME=C
#LC_NUMERIC=C
#export LC_MESSAGES LC_TIME LC_NUMERIC
# Charset for MIME headers.
MM_CHARSET=$ENCODING
export MM_CHARSET
# Needed for SGML-DSSSL processing.
SP_ENCODING=$ENCODING
export SP_ENCODING
# Workaround for groff <= 1.18.*, remove when groff is fixed.
alias man='LC_ALL=tr_TR man -Elatin1'
# Signal the existence of UXTerm.
alias uxterm='UXTERM=yes uxterm'
EOF
|