2012-01-23 12:40:44 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Fix chrome web inspector fonts to be readable.
|
|
|
|
# http://blog.dotsmart.net/2011/09/30/change-font-size-in-chrome-devtools/
|
|
|
|
|
|
|
|
# Use:
|
2012-04-11 01:33:53 +08:00
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
ln -s -f $DIR/Custom.css $HOME/Library/Application\ Support/Google/Chrome/Default/User\ StyleSheets/Custom.css
|