Xmodmap

我可以 Xmodmap 僅特定設備嗎?

  • November 27, 2012

我想反轉滾動方向,但只能在我的 BCM5794 多點觸控板上。這可能嗎?

是的:

xinput set-button-map ID <button map>

你在哪裡找到**ID**viaxinput list和 the<button map>是你會傳遞到的xmodmap。例如,我更換了 USB 滑鼠上的按鈕,但我不希望觸控板被破壞,我~/.Xmodmap以前看起來像這樣:

pointer = 1 17 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 18 19 20 21 22 23 24

但是使用它會改變所有的指針設備,包括我的內置觸控板,所以我知道xinputid 是 10,所以我執行這個:

xinput set-button-map 10 1 17 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 18 19 20 21 22 23 24

引用自:https://unix.stackexchange.com/questions/38195