Skip to content

Instantly share code, notes, and snippets.

@YoungseokCh
Created August 16, 2019 07:46
Show Gist options
  • Select an option

  • Save YoungseokCh/4239b5e5828fef9e9e8d1e21725251ac to your computer and use it in GitHub Desktop.

Select an option

Save YoungseokCh/4239b5e5828fef9e9e8d1e21725251ac 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