Eu estou tentando multibox um flashplayer autônomo por que não multibox?

0
#!/bin/bash
export DISPLAY=:0.0
#start infinite loop
while :
do
#ensure flashplayer is active
WID=$(xdotool search "flashplayer" | head -1)
xdotool windowactivate --sync $WID
xdotool key --clearmodifiers ctrl+l ctrl+c
#get a keypressed as "pressed"
read -s -n 1  -p "." pressed
#send that keypress to WOW
xdotool type $pressed
#feedback for me while debugging
echo $pressed
#reset pressed to tilde (may not be needed anymore)
set pressed="~"
done
    
por Yagotmyback079 28.11.2017 / 02:04

0 respostas