So I moved some X programs down to the mac, and I'm getting

Error: XTEST extension unavailable on '(null)'.

from xdotool.

  • Does OS X X11 come with XTEST?

  • If not, is there a way to add it?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted
defaults write org.x.X11 enable_test_extensions -boolean true

(from here). Then quit and restart the X server; the XTEST extension should then be available.

link|improve this answer
Splendid, thanks! I can't imagine why that's not set be default. – Mark Harrison Aug 12 '09 at 5:21
1  
Automating input may be seen as a security risk, especially since XTEST doesn't set the send_event flag in the XEvent structure which lets the application know it's being automated. – Jeffrey Hantin Aug 27 '10 at 22:15
That makes sense. thanks again! – Mark Harrison Mar 5 at 19:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.