问题描述
Focus-follow-mouse也被称为点对点(point-to-焦点,指针焦点和(在一些实现中)马虎的焦点。 X-mouse
您可以通过发行Terminal.app来完成此操作在命令行下面的命令:
defaults write com.apple.Terminal FocusFollowsMouse -bool true
对于X11应用程序,您可以这样做:
defaults write com.apple.x11 wm_ffm -bool true
在Snow Leopard中,使用这个相反:
$ p $ defaults write org.x.X11 wm_ffm -bool true
显然,有一个名为CodeTek虚拟桌面的程序可以模拟全系统,但是花费$$(而且他们从来没有为OSX Leopard提供过一个版本)。 / p>
(I don't want to hear about how crazy I am to want that! :)
Focus-follows-mouse is also known as point-to-focus, pointer focus, and (in some implementations) sloppy focus. [Add other terms that will make this more searchable!] X-mouse
You can do it for Terminal.app by issuing the following command at the command line:
defaults write com.apple.Terminal FocusFollowsMouse -bool true
For X11 apps you can do this:
defaults write com.apple.x11 wm_ffm -bool true
In Snow Leopard, use this instead:
defaults write org.x.X11 wm_ffm -bool true
Apparently there's a program called CodeTek Virtual Desktop that'll emulate it systemwide, but it costs $$ (and they never got a version out for OSX Leopard).
这篇关于在Mac OS X上使用Focus-Follow-Mouse(加上自动加亮)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!