Last active
April 16, 2019 12:33
-
-
Save realfirst/e8fcf289d7fb9568af74e1af2a55e347 to your computer and use it in GitHub Desktop.
macos-settings
This file contains hidden or 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
## ref-url: https://www.tekrevue.com/tip/show-path-finder-title-bar/ | |
#Show the Path in the Finder Title Bar | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true; killall Finder | |
#turn it off and revert to showing just the active directory | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool false; killall Finder | |
## macbook how to use thinkpad usb keyboard with trackpoint | |
1. brew cask install steermouse | |
2. System preferences -> Security & privacy -> allow steermouse manager control your computer | |
3. System perferences -> steermouse -> cursor -> Acceleration & Sensitivity | |
4. System perferences -> steermouse -> button -> Middle Button set value to auto scroll | |
that's all! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment