打开终端,输入以下命令回车即可:
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system-domainuser
evernote链接
整站下载
wget -r -np -nd http://appinn.com
MAC MONTAIN LION右键菜单打开方式出现重复项的解决办法
如何在Quick Look的预览窗口里选择文本?
首先,方法很简单,打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
defaults write com.apple.finder QLEnableTextSelection -bool TRUE;killall Finder
设定将激励生效,如果你想还原成原样,也很简单,再次打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
defaults delete com.apple.finder QLEnableTextSelection;killall Finder
Stop the Help Window From Floating
Another troublesome floating window is the Help window which appears when you click Help in most applications. To stop it floating, use
defaults write com.apple.helpviewer NormalWindow -boolean yes
Disable the ‘Unexpectedly Quit’ Dialog
When an application crashes, you’ll see a dialog telling you the application quit unexpectedly. This can get annoying if it happens often, so you can disable that dialog using
defaults write com.apple.CrashReporter DialogType none
You may need to restart your computer for changes to take effect. To turn this back on again, replace ‘none’ with ‘prompt’.
disable spaces animation
- Open /Applications/Utilities/Terminal.app .
- Copy and paste the following into the terminal window and then press enter:
defaults write com.apple.dock workspaces-swoosh-animation-off -bool YES && killall Dock
If you'd like to re-enable the animation, just do the following:
- Open Terminal.
- Copy and paste the following into the terminal window and then press enter:
defaults delete com.apple.dock workspaces-swoosh-animation-off && killall Dock
快速锁屏系统已经有默认快捷键了,control + shift + eject
至于你的Mac是否支持64位的内核,主要看你的Mac是否有64-bit EFI, 请打开终端窗口, 输入:
ioreg -l -p IODeviceTree | grep firmware-abi
终端会返回“EFI32″ or “EFI64.”
如果我们想切换到64位系统的话,要在开机的时候按住键盘上的数字“4”和“6”,直到进入系统界面才是真正的切换到snow leopard的64位系统状态
这种切换的方法要在每次开机的时候都要按住“4”和“6”才能进入64位系统,如果不按的话还是默认进入到32位状态的!
接下来介绍的另外一种进入64位系统的方法,这种方法可以让我们每次开机的时候不用按住“4”和“6”直接进入到64位状态!
sudo vi /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
把文本里面的
<key>Kernel Flags</key>
<string></string>
替换成
<key>Kernel Flags</key>
<string>arch=x86_64</string>
浏览器里 切换tab
ctrl+tab
切换同一个application的不同窗口
Command-~
查看使用Internet的应用程序
lsof -P -i -n | cut -f 1 -d ” ” | uniq
XRayFolder
defaults write com.apple.finder QLEnableXRayFolders 1
在Space中收集窗口
Command-方向键
在打开/保存对话框中显示隐藏文件
Command-Shift-.
让菜单栏图标菜单显示更多信息
Option-点击
QS,按Command+L就可以看见这个增强剪贴版
Finder菜单中点击“显示”,然后选择“显示路径栏
标题栏上显示目录完整路径
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
killall Finder
改变截屏图片的保存位置
defaults write com.apple.screencapture location 存放位置
强制Safari在新的标签中打开网页
defaults write com.apple.Safari TargetedClicksCreateTabs -bool true
- 通过Command-Tab激活应用程序切换栏,用左右键或Tab键选中某个应用程序的图标,记住,不能松开Command键。
- 选中应用程序图标后,按上键或者下键,这时Exposé就激活了。
- 通过方向键可以进行窗口的选择。
- 选中窗口后,可以用空格键进行预览,或者直接按Enter键激活窗口。
我们在Terminal中,因为某些原因需要从Finder里打开当前路径对应的文件夹,传统的方法是从Dock中打开Finder,按照这个路径一层一层地找到最后的那个文件夹。这种方法有几种弊端:
- 很繁琐,特别是如果路径复杂,文件夹多,找到最后那层文件夹是很杀脑细胞的工作;
- 如果某层文件夹有特殊权限或属性限制,比如是系统文件或者被隐藏,那么首先还得取消它们的这些属性。做完你的工作后还得还原它们的属性。修改系统文件夹的默认属性是应该避免的事情,这样会带来安全隐患。
一个简单的方法是这样的,打开当前目录,则输入命令
open .
1、在terminal下输入:
defaults write com.apple.finder AppleShowAllFiles TRUE