Any interest in hiding tv thumbnails when hiding plot?
#86
(2014-11-06, 19:37)Ned Scott Wrote: There is a list view in almost every skin that I've seen that doesn't show summaries or thumbnails. I'd like to see the option to hide thumbs too for convenance, but if you're worried about it right now then you can already do this.

How does that help you with the following?

(2014-07-25, 10:53)Knocks Wrote: Image

I replaced all *-thumb.jpg with the season*-landscape. Assumed you have episodes stored in subfolders named "season0x":

Code:
#! /bin/bash -e
#

for f in */*.mp4
do
    cp -n ${f%.mp4}-thumb.jpg ${f%.mp4}-thumb-bak.jpg
    cp ${f%/*}-landscape.jpg ${f%.mp4}-thumb.jpg
done

Will also manually recover them after I watched the series (mv ${f%.mp4}-thumb-bak.jpg ${f%.mp4}-thumb.jpg).
Reply


Messages In This Thread
RE: Any interest in hiding tv thumbnails when hiding plot? - by moejoeblue - 2014-11-07, 16:52
Logout Mark Read Team Forum Stats Members Help
Any interest in hiding tv thumbnails when hiding plot? 3