使用bash脚本将键码发送到Xorg + wine

时间:2009-06-05 08:09:30

标签: linux wine keycode xorg

如何将keycode发送到在wine下运行的linux中当前运行的应用程序?为了简单起见,我希望它能在bash下进行。

1 个答案:

答案 0 :(得分:2)

使用名为 xvkbd 的包。它应该在每个linux发行版中。语法很简单:

xvkbd -text [line of keycodes]

例如,使用自动Battle.net登录运行魔兽争霸3游戏将是:

#!/bin/bash
cd ~/.wine/drive_c/Program\ Files/Warcraft3/
wine euroloader.exe -opengl > /dev/null 2> /dev/null & # run W3
sleep 5; # wait until animation fades out
xvkbd -text "b" # "b" is for Battle.net
sleep 7;
xvkbd -text "password\r" # password
sleep 3;
xvkbd -text "h" # "h" is for channel
sleep 5;
xvkbd -text "h" # honestly I don't know why, but without this the script might not work
sleep 5;
xvkbd -text "zcu\r" # type in your channel and join the room
sleep 5;
xvkbd -text ".load\r" # I'm using ghost, so I'll ask him what map is loaded