用blender時按中鍵按到手痛…..來用xdotool把super key改成中鍵
先安裝套件
apt install xdotool x11-utils # x11-utils是要用xev
#!/bin/bash
while true
do
if [[ `xdotool getwindowfocus getwindowname` =~ "Blender" ]];then
xkbset m
xmodmap -e "keycode 133 = Pointer_Button2" # 把super改成中鍵
sleep 3
else
setxkbmap -option # 還原
fi
done
如果用ahk就比較簡單了
#IfWinActive ahk_exe Blender.exe
LWin::MButton
return