Posts

Showing posts with the label Application

[Note] Useful shortcuts for Awesome window manager

mod + shift + tag-number: move window to specified tag number. mod + ctrl + shift + tag-number: duplicate window to specified tag number. mod + shift + ,: move window to left/previous tag number. mod + shift + .: move window to right/next tag number.

Chinese font can not be show correctly with JAVA application on FreeBSD

I ran into this problem as I installed the freemind. After searching with Google, the following steps can solve the problem. Create a directory named "fallback" in JRE path # cd /usr/local/jdk1.6.0/jre/lib/fonts # mkdir fallback Link a TrueType that I wanted to the new directory # cd fallback/ # ln -s /usr/local/lib/X11/fonts/TrueType/bsmi001p.ttf ./bsmi001p.ttf Restart the JAVA application After restarting, the JAVA application will show chinese font properly. ps. Many thanks for Tim's help.