diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-02-20 13:13:49 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-02-20 15:44:42 +0100 |
commit | a28fbf25bcec03ae8cb8e6b22537883f78541d66 (patch) | |
tree | ed88ed07de49c496df933f63942bc4f1bd8f4d8d /docs | |
parent | 6c748439ed0274d844c7634f0d60f872e3008630 (diff) | |
download | fiv-a28fbf25bcec03ae8cb8e6b22537883f78541d66.tar.gz fiv-a28fbf25bcec03ae8cb8e6b22537883f78541d66.tar.xz fiv-a28fbf25bcec03ae8cb8e6b22537883f78541d66.zip |
Implement wide thumbnail cache invalidation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/fiv.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/fiv.html b/docs/fiv.html index 3638831..79bf8a6 100644 --- a/docs/fiv.html +++ b/docs/fiv.html @@ -77,11 +77,18 @@ gdk-pixbuf modules. <h2>Thumbnails</h2> -<p><i>fiv</i> uses a custom way of storing thumbnails, and doesn't currently -provide any means of invalidating this cache. Should you find out that your +<p><i>fiv</i> uses a custom means of storing thumbnails, and doesn't currently +invalidate this cache automatically. Should you find out that your <i>~/.cache/thumbnails</i> directory is taking up too much space, run: <pre> +fiv --invalidate-cache +</pre> + +<p>to trim it down. Alternatively, if you want to get rid of _all_ thumbnails, +even for existing images: + +<pre> rm -rf ~/.cache/thumbnails/wide-* </pre> |