1
fanzeyi Oct 13, 2014
看看 Finder 的 Preferences -> Sidebar 里能不能把你用的那些给隐藏掉。
|
3
windirt Oct 13, 2014
一般来说,你的东西不会是拖进扩充磁盘的根目录吧,假如有特定目录的话,可以把这些目录拖到边栏
|
4
ffffwh Oct 13, 2014
做个软/硬连接、alias啥的到那个盘,边栏的就不用了。
|
5
devon Oct 13, 2014 如果你用Alfred,可以用下面的脚本:
``` tell application "Finder" set diskList to the disks repeat with dl in diskList set theName to the name of dl if theName is not "Data" and theName is not "Time Machine Backups" then eject disk theName end if end repeat end tell ``` 这里面,排除了名为 Data,及 Time Machine Backups 的两个盘。 每次我要弹出磁盘时,都是呼出 Alfred,输入 ej,加车,很方便,也不会误点。 |