Clear all the snap font caches (with prompt before removal)
This file contains 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
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