Created
November 1, 2022 02:44
-
-
Save fish895623/634b8103c941f56417de0ce891dadb0b to your computer and use it in GitHub Desktop.
Input Method Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## /usr/share/X11/xkb/symbols/altwin | |
partial modifier_keys | |
xkb_symbols "meta_alt" { | |
key <LALT> { [ Alt_L, Meta_L ] }; | |
key <RALT> { | |
type[Group1] = "TWO_LEVEL", | |
symbols[Group1] = [ Alt_R, Meta_R ] }; -> symbols[Group1] = [ Hangul ] }; | |
modifier_map Mod1 { Alt_L, Alt_R, Meta_L, Meta_R }; | |
}; | |
# alwin을 찾아 Hangul로 바꾸어 준다. | |
# xkb_symbols |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export GTK_IM_MODULE=ibus or fcitx | |
export QT_IM_MODULE=ibus or fcitx | |
export XMODIFIERS=@im=ibus or fcitx | |
export OOO_FORCE_DESKTOP="gnome" # 리눅스 에서 넣어주지 않으면 텍스트 밀림현상이 나타난다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment