mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 01:08:45 +00:00
Update lyxprofile for cygwin.
* Don't use the Windows documents folder as fallback home dir * Starting from cygwin 1.7, the charset part of the locale settings are honoured. The default is UTF-8 * It is no more necessary setting OUTPUT_CHARSET * Allow per-user customization trough ~/.lyxprofile git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@33095 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
324aa7ff91
commit
cfe7299192
@ -3,21 +3,17 @@ if [ -z "${HOME}" ]; then
|
|||||||
USER=`id -un`
|
USER=`id -un`
|
||||||
HOME=`grep "^${USER}:" /etc/passwd | cut -d: -f6`
|
HOME=`grep "^${USER}:" /etc/passwd | cut -d: -f6`
|
||||||
if [ -z "${HOME}" -o ! -d "${HOME}" ]; then
|
if [ -z "${HOME}" -o ! -d "${HOME}" ]; then
|
||||||
DOCSFOLDER=`regtool -q get '\HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal'`
|
HOME="/home/${USER}"
|
||||||
test -n "${DOCSFOLDER}" && HOME=`cygpath -u "${DOCSFOLDER}"` || HOME=/tmp
|
test -d "${HOME}" || HOME=/tmp
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
export HOME
|
export HOME
|
||||||
|
|
||||||
# Set up your Language (if you do not want English) by
|
# Set up your Language (if you do not want English) by
|
||||||
# replacing C (for C locale) with your country code in
|
# replacing C (for C locale) with your country code in
|
||||||
# the following line.
|
# the following line for system-wide settings or in
|
||||||
export LANG=C
|
# ~/.lyxprofile for per-user settings.
|
||||||
|
export LANG=C.UTF-8
|
||||||
# Set up the output charset for your locale.
|
|
||||||
# You may need to experiment with this if you get garbage
|
|
||||||
# in menus ("`a" instead of "à", for example).
|
|
||||||
export OUTPUT_CHARSET=iso-8859-1
|
|
||||||
|
|
||||||
# Set up Hostname/IP address where LyX can find an X-server.
|
# Set up Hostname/IP address where LyX can find an X-server.
|
||||||
export DISPLAY=localhost:0.0
|
export DISPLAY=localhost:0.0
|
||||||
@ -49,4 +45,4 @@ else
|
|||||||
cd "${HOME}"
|
cd "${HOME}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
test -f "${HOME}/.bashrc" && . "${HOME}/.bashrc"
|
test -f "${HOME}/.lyxprofile" && . "${HOME}/.lyxprofile"
|
||||||
|
@ -75,6 +75,8 @@ What's new
|
|||||||
|
|
||||||
- Add support for Cygwin 1.7.
|
- Add support for Cygwin 1.7.
|
||||||
|
|
||||||
|
- Update Cygwin configuration files.
|
||||||
|
|
||||||
|
|
||||||
** Bug fixes:
|
** Bug fixes:
|
||||||
*************
|
*************
|
||||||
|
Loading…
Reference in New Issue
Block a user