Skip to content

Instantly share code, notes, and snippets.

@Techcable
Last active January 27, 2021 21:41
Show Gist options
  • Save Techcable/a9382ad83f1b651a0e9c25e9c6f26f88 to your computer and use it in GitHub Desktop.
Save Techcable/a9382ad83f1b651a0e9c25e9c6f26f88 to your computer and use it in GitHub Desktop.
Clear all the snap font caches (with prompt before removal)
for cache_dir in $(find ~/snap/ -wholename '*/.cache/fontconfig'); do
echo "Clearing $cache_dir";
rm -I -r $cache_dir;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment