Skip to content

Instantly share code, notes, and snippets.

@3-24
Created August 16, 2019 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3-24/cd2507b249f199d423aafb0a7f86ec7d to your computer and use it in GitHub Desktop.
Save 3-24/cd2507b249f199d423aafb0a7f86ec7d to your computer and use it in GitHub Desktop.
ubuntu 한영키 설정
$ sudo vim /usr/share/X11/xkb/symbols/altwin

에서 symbols[Group1] = [ Alt_R, Meta_R ]의 값을 다음과 같이 바꿔준다:

// Meta is mapped to second level of Alt.
partial modifier_keys
xkb_symbols "meta_alt" {
    key <LALT> { [ Alt_L, Meta_L ] };
    key <RALT> { type[Group1] = "TWO_LEVEL",
                 symbols[Group1] = [ Hangul ] };
    modifier_map Mod1 { Alt_L, Alt_R, Meta_L, Meta_R };
//  modifier_map Mod4 {};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment