使用 xmodmap 我可以将 F2 映射为左键单击:
xmodmap -e "keycode 68 = Pointer_Button1"
但是,当我使用 shift+F2 来模拟按住 Shift 键左键单击以在 nautilus 上选择文件时,它不起作用。
答案1
由于其修饰符没有定义,因此按下 shift+F2 时不会发生任何事情。
所以:
xmodmap -e "keycode 68 = Pointer_Button1 Pointer_Button1"
使用 xmodmap 我可以将 F2 映射为左键单击:
xmodmap -e "keycode 68 = Pointer_Button1"
但是,当我使用 shift+F2 来模拟按住 Shift 键左键单击以在 nautilus 上选择文件时,它不起作用。
由于其修饰符没有定义,因此按下 shift+F2 时不会发生任何事情。
所以:
xmodmap -e "keycode 68 = Pointer_Button1 Pointer_Button1"