Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hqman/3274662 to your computer and use it in GitHub Desktop.
Save hqman/3274662 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' _ {} \;
@hqman
Copy link
Author

hqman commented Aug 6, 2012

~/.config/google-chrome/Default/User StyleSheets/Custom.css

body.platform-linux .monospace, body.platform-linux .source-code {
font-size: 20px !important;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment