Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created October 13, 2010 12:55
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cowboy/623975 to your computer and use it in GitHub Desktop.
Save cowboy/623975 to your computer and use it in GitHub Desktop.
Increase WebKit Inspector's font size (probably will need to re-run after updates)
#!/bin/bash
sudo find '/Applications/Google Chrome.app' \
\( -name inspector.css -or -name devTools.css \) \
-exec sh -c 'cat >> $1 <<WAT
/* Added on `date` */
#drawer .monospace,
#drawer .source-code {
font-size: 18px !important;
font-family: Monaco, monospace;
}
#drawer .console-formatted-node * {
line-height: 20px !important;
}
WAT' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment