Created
May 8, 2012 19:36
-
-
Save bmike/2638713 to your computer and use it in GitHub Desktop.
Focus follows mouse for X11 and Terminal.app on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable “focus follows mouse” for Terminal.app and all X11 apps | |
# This means you can hover over a window and start typing in it without clicking first | |
# from https://github.com/mathiasbynens/dotfiles/commit/fb16c911a40b8467efb3634d906e316893937d31 | |
defaults write com.apple.terminal FocusFollowsMouse -bool true | |
defaults write org.x.X11 wm_ffm -bool true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment