예, XKB를 사용할 수 있습니다. xmodmap과 달리 XKB는 개별 장치의 키를 다시 매핑 할 수 있습니다.
참고 : xkbcomp> 1.2.0이 있는지 확인하십시오.
먼저 다음과 함께 장치를 나열하십시오.
xinput list
다음과 같은 것을 얻을 수 있습니다 :
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Wacom Bamboo Pen Pen stylus id=11 [slave pointer (2)]
⎜ ↳ Wacom Bamboo Pen Finger touch id=12 [slave pointer (2)]
⎜ ↳ Logitech USB-PS/2 Optical Mouse id=13 [slave pointer (2)]
⎜ ↳ Wacom Bamboo Pen Pen eraser id=14 [slave pointer (2)]
⎜ ↳ Wacom Bamboo Pen Finger pad id=15 [slave pointer (2)]
⎜ ↳ GASIA USB KB V11 id=17 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ G19 Gaming Keyboard id=8 [slave keyboard (3)]
↳ G19 Gaming Keyboard id=9 [slave keyboard (3)]
↳ Logitech G19 Gaming Keyboard id=10 [slave keyboard (3)]
↳ GASIA USB KB V11 id=16 [slave keyboard (3)]
장치의 문자열을 식별하고 장치 이름에 맞는 sed 행을 변경하여 다음 쉘 스크립트를 편집하십시오. 그런 다음 재 매핑해야하는 키를 변경하십시오.
예 : xev
다시 매핑하려는 키를 로드 하고 누릅니다. https://gist.github.com/zoqaeski/3880640 의 키 코드 84를 찾으십시오 . 키 이름은 <KP5>
입니다. 그런 다음 교체하려는 키를 찾아보고 ( 아래 의 같은 링크에서 ) 괄호 안에있는 것을 복사하십시오. 원하는 모든 키에 대해이 과정을 반복하십시오.
remote_id=$(
xinput list |
sed -n 's/.*GASIA.*id=\([0-9]*\).*keyboard.*/\1/p'
)
[ "$remote_id" ] || exit
# remap the following keys, only for my custom vintage atari joystick connected
# through an old USB keyboard:
#
# keypad 5 -> keypad 6
# . -> keypad 2
# [ -> keypad 8
# left shift -> left control
mkdir -p /tmp/xkb/symbols
# This is a name for the file, it could be anything you
# want. For us, we'll name it "custom". This is important
# later.
#
# The KP_* come from /usr/include/X11/keysymdef.h
# Also note the name, "remote" is there in the stanza
# definition.
cat >/tmp/xkb/symbols/custom <<\EOF
xkb_symbols "remote" {
key <KP5> { [ KP_Right, KP_6, U2192, U21D2 ] };
key <I129> { [ KP_Down, KP_2, U2193, U21D3 ] };
key <AD12> { [ KP_Up, KP_8, U2191, U21D1 ] };
key <LFSH> { [ Control_L ] };
};
EOF
# (1) We list our current definition
# (2) Modify it to have a keyboard mapping using the name
# we used above, in this case it's the "remote" definition
# described in the file named "custom" which we specify in
# this world as "custom(remote)".
# (3) Now we take that as input back into our definition of the
# keyboard. This includes the file we just made, read in last,
# so as to override any prior definitions. Importantly we
# need to include the directory of the place we placed the file
# to be considered when reading things in.
#
# Also notice that we aren't including exactly the
# directory we specified above. In this case, it will be looking
# for a directory structure similar to /usr/share/X11/xkb
#
# What we provided was a "symbols" file. That's why above we put
# the file into a "symbols" directory, which is not being included
# below.
setxkbmap -device $remote_id -print \
| sed 's/\(xkb_symbols.*\)"/\1+custom(remote)"/' \
| xkbcomp -I/tmp/xkb -i $remote_id -synch - $DISPLAY 2>/dev/null
그런 다음 소스를 지정하십시오 (.xinitrc에 추가 할 수 있음). 다 했어요! 이제 키를 누르면 지정한 장치에 대해서만 원하는 출력이 생성됩니다.
편집 : 최근에 어떤 이유로 든 새로운 구성이 즉시 적용되지 않는 것으로 나타났습니다. 먼저 다른 키보드에서 키를 누른 다음 수정 된 키보드에서 구성된 키를 테스트해야합니다. 왜 이런 일이 발생했는지 모르겠습니다. 어쩌면 일종의 캐시 일 수 있습니다.