Java options should only be exported on Linux.

This commit is contained in:
Stanislav Nikitin 2015-09-26 02:12:54 +05:00
parent 6314db1861
commit 5047f866e9
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
# Java-specific exports.
# More or less pretty fonts in Java programs.
# It should be exported only if we have X session running.
if [ ! -z ${DISPLAY} ]; then
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
export JAVA_FONTS=/usr/share/fonts/TTF
# Also, these settings should be applied only on Linux.
if [[ "${OS}" == "Linux" ]]; then
if [ ! -z ${DISPLAY} ]; then
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
export JAVA_FONTS=/usr/share/fonts/TTF
fi
fi