Directing Wallch to My Pictures and rotate every X mn, I want to preserve my SSD from this directory to be constantly updated along the day by files that are several Megs each. Yet I disabled Walch's thumb cache at .cache/wallch
. I'm afraid there is no way to prevent update of .config/wallch/History.conf
, but this one is a very little file so I hope constant update won't overwear my ssd. .cache/wallpaper
is the remaining question.
Asked
Active
Viewed 54 times
0

useful
- 1,834
- 4
- 25
- 32
1 Answers
1
You could make a temporary filesystem on your RAM and then replace the offending directories with symbolic links (you might have to stop wallch
before doing this)
rm ~.cache/offending-dir
ln -s /absolute/path/to/offending/dir /tmp

Robert Riedl
- 4,351
tmp
on your RAM is that you can run out of space, i.e. if you define 512MB and try to compress a file with ZIP (which usually uses/tmp/
for temp files) that is larger than 512MB, it won't work. Depending on what you do, I think 1GB of/tmp
should be enough, but you will find that out quickly if you test it. – Robert Riedl Mar 01 '18 at 10:16