Search found 7 matches

by ahsarubia
Mon Nov 09, 2020 3:39 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (incomplete but works)
Replies: 4
Views: 2923

Re: HOW TO: SET UP KOREAN IME (incomplete but works)

Please see to correct the beforemost command, doing

Code: Select all

 $ vi ./config/user-dirs.locale
is actually this:

Code: Select all

 $ vi ~/.config/user-dirs.locale
Please notice the file is residing in the hidden directory .config which is sub directory to user home directory.
by ahsarubia
Mon Nov 09, 2020 3:09 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (complete with Google Chromium too)
Replies: 1
Views: 2091

HOW TO: SET UP KOREAN IME (complete with Google Chromium too)

I have made sure Google Chromium also can take Korean IME input. To URL form, type chrome://settings Scroll down until Appearance section displays. Set Themes to "Use GTK+" Same section, Customize fonts, set to installed Korean fonts. Restart Chromium then Korean input is taken to Chromium...
by ahsarubia
Mon Nov 09, 2020 2:50 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (incomplete but works)
Replies: 4
Views: 2923

Re: HOW TO: SET UP KOREAN IME (incomplete but works)

From the xorg.conf file find out already set FontPath directive lines and refer to the format of directive to add new one. If we add unfonts-ttf,

Code: Select all

FontPath "/usr/local/share/fonts/unfonts-core"
which is put somewhere in the Section "Files".
by ahsarubia
Mon Nov 09, 2020 2:44 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (incomplete but works)
Replies: 4
Views: 2923

Re: HOW TO: SET UP KOREAN IME (incomplete but works)

X11 font directory Korean font ports are installed are resided here:

Code: Select all

/usr/local/share/fonts
and we can modify xorg.conf by the following command:

Code: Select all

$ su
$ vi /etc/X11/xorg.conf
and reboot.
by ahsarubia
Mon Nov 09, 2020 2:41 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (incomplete but works)
Replies: 4
Views: 2923

Re: HOW TO: SET UP KOREAN IME (incomplete but works)

If it does not work, please do this and check:

Code: Select all

$ su
$cd /usr/ports/korean
Install all ttf and otf fonts and add it to /etc/X11/xorg.conf as FontPath directive and reboot and try input Korean characters again.
by ahsarubia
Mon Nov 09, 2020 2:30 pm
Forum: Tips and Tricks
Topic: HOW TO: SET UP KOREAN IME (incomplete but works)
Replies: 4
Views: 2923

HOW TO: SET UP KOREAN IME (incomplete but works)

$ cd ~ $ vi .cshrc setenv LANG ko_KR.UTF-8 setenv LC_ALL ko_KR.UTF-8 $ vi ./config/user-dirs.locale delete any strings related locale System → Preference → Personal → Startup Applications add /usr/local/bin/fcitx and install fcitx from ports $ su $ cd /usr/ports/korean/fcitx-hangul $ make install c...