archlinux + awesome에서 "sticky modifier keys"를 활성화하고 싶습니다. 정확한 정보를 찾지 못했습니다.
archlinux + awesome에서 "sticky modifier keys"를 활성화하고 싶습니다. 정확한 정보를 찾지 못했습니다.
답변:
나는 그것을있어. xorg의 액세스 옵션을 설정하기위한 xbkeys라는 유틸리티가 있습니다.
xkbset 매뉴얼 ($ xkbset man)에서 :
To switch sticky keys on or off, and optionally set or reset:
() two keys pressed at the same time stops sticky keys;
() a modifier pressed twice will be locked:
[-]{sticky|st} [[-]twokey|[-]latchlock]...
나는 이것을 달렸다.
$ xkbset sticky -twokey -latchlock
이 명령은 .xinitrc에 갈 수 있습니다
# turn on stickykeys. don't let two keys pressed at the same time disable it.
# don't turn on "latch lock", ie pressing a modifier key twice "locks" it on.
xkbset accessx sticky -twokey -latchlock
# don't expire these settings. (run xkbset q exp for details.)
xkbset exp 1 =accessx =sticky =twokey =latchlock
xkbset
: math.missouri.edu/~stephen/software/#xkbset
xkbset
됩니다.
Xmodmap을 사용하여 Scroll, Kana, Num, Caps 및 Shift 키의 키 잠금을 설정할 수 있습니다. 또한 일부 ISO 그룹화 키를 이런 식으로 재 매핑 할 수 있습니다. 예를 들어, 키보드에서 왼쪽 시프트를 토글로 설정하려면 다음을 사용하십시오.
xmodmap -e "키 코드 50 = Shift_Lock"
올바른 키 코드를 얻으려면 "xev"를 사용하십시오.
따옴표 안에 .Xmodmap 파일에 명령을 추가하고 X를 다시 시작하여 변경 사항을 영구적으로 적용하십시오.
불행히도, Control, Alt 또는 Meta 키를 잠그는 키 코드는 없다고 생각합니다. 더 구체적인 질문을 게시하고 적절한 현상금을 추가하면이를 가능하게하기 위해 쉘 스크립트 및 / 또는 xorg 변경 사항을 해결할 수 있습니다.