$ uname -r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "=================" | |
| echo "Noto Font Cleaner" | |
| echo "=================" | |
| echo "Hides all Noto fonts except the white listed ones. Edit script to customize." | |
| echo | |
| # --- CONFIGURATION: Add fonts you want to KEEP here --- | |
| # Use the exact family name as seen in fc-list : family | grep -i "Noto" | |
| # The link comment is just for reference. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| ## | |
| ## Easily disable fonts that aren't for your language, or language-specific | |
| ## variants from large font families like Noto -- WITHOUT uninstalling them | |
| ## | |
| ## Authors: Kevin Ernst <ernstki -at- mail.uc.edu>, @wdoekes | |
| ## License: MIT or CC-BY-SA-4.0, at your option | |
| ## Source: https://gist.github.com/ernstki/2ae279ad89888e4099c9852bf0ba5d11 | |
| ## | |
| ## Usage: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Spiderme - quick and clean benchmarking for website performance on Pantheon. | |
| # | |
| # This script uses wget to "spider" your website to provide a good set of data | |
| # on site performance. It will automatically bypass Pantheon's edge cache, and | |
| # skip images, javascript, css, etc. It will also only spider links that are | |
| # under the multidev environment you are spidering. | |
| # | |
| # |