Disable anti-aliasing for small fonts.
My all displays are LCD and with RGB pattern.
Enable hinting for all fonts!
#!/bin/bash
if [[ -f ~/.bash_path ]]; then
. ~/.bash_path
fi
# Load custom settings (user editable).
if [[ -f ~/.bash_custom ]]; then
. ~/.bash_custom
fi
xrdb -merge ~/.Xdefaults
# xrdb -load ~/.Xdefaults
# Under Cygwin I prefer '-multiwindow' option, so it needn't to setup WM.
if [[ -z $COMSPEC ]]; then
xmodmap ~/.xmodmaprc
xsetroot -gray
fvwm &
fi
# Last command.
exec xterm -geometry 80x42 -e bash -i