Archive for MAC手册

MagicPrefs Makes Your Magic Mouse Cooler

MagicPrefs is a free menubar application which aims to improve the functionality and configuration options of the Apple Magic Mouse.

- It features the ability to bind a variable number of finger clicks, taps, swipes, pinch and other gestures to functions like Middle Click , Hold Down Both Mouse Buttons , Spaces , Expose, Dashboard etc.
- Touch Sensitivity implements a single point control for a number of factors impacting the algorithms of the taps, swipes, pinche and other gestures.
- Tracking Speed adds the ability to increase the maximum mouse speed by a extra 200%.
- Also featured is a real-time display of the fingers touching the surface of the mouse that you can enable to test and monitor the way the mouse sees fingers.

Download

Use badge at ICON

It is very easy to use badge at ICON like mail

[[[NSApplication sharedApplication] dockTile] setBadgeLabel:@”3″];

Here is an example to show how to use badge and change dock title or image.

http://developer.apple.com/samplecode/DockTile/listing5.html

MAC 加载 EXT2/EXT3

很多书上都写到了如何在mac里面加载NTFS格式的硬盘, 但是很少提到如何在mac里面加载ext3格式. 目前有两种方式.

1. 下载Mac OS X Ext2 Filesystem, 刚方法似乎在雪豹中无法使用, 或者在不久的将来就能被解决了, 这样就可以用linux里面的mount命令来挂载ext2格式的硬盘了, 注意ext3格式也是使用这个命令.

1. cd ~
2. mkdir linux
3. sudo mount -t ext2 /dev/disk1s11 ~/linux

2. 如果安装了MacFuse, 再安装 fuse-ext2插件就可以了, 不过这个在雪豹64位模式下无法使用, 只能在32模式下使用, 自动加载的linux卷宗是只读模式的, 如果需要可以模式那么需要推出该分区,然后通过命令行来挂载.

$ sudo /usr/local/bin/fuse-ext2 -v /dev/path /mnt/point -o debug

说明:

$ fuse-ext2 <device|image> <mountpoint> [-o option[,...]]
options:
ro : mount read only
force: mount read/write
allow_others: allow other users to access
debug: noisy debug output