View Single Post
Old 04-13-2021, 01:27 PM   #2
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,063
Karma: 75568269
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Quote:
Originally Posted by thousand View Post
Hi. I've created a custom Yes/No column called Read. It works great in normal library (list) view mode, but is there a way to show the checkmark next to the title in Cover Grid, or superimposed over the cover image, or anything like that?

It'd be nice to have more control over the cover grid.

Thank you!
Preferences > Look & Feel > Cover Grid > Emblems

You can find a checkmark at C:\Program Files\Calibre2\app\resources\images\ok.png (default Windows path if you're using 64-bit).

I use an advanced rule to display an icon depending on reading status:

Code:
program:

  if $#currentlyreading then 'bookmark-48.png'
  elif $#readorder then 'list.png'
  elif check_yes_no('#read', 0, 0, 1) then 'ok.png'
  elif check_yes_no('#read', 0, 1, 0) then 'list_remove.png'
  fi
Click image for larger version

Name:	2021-04-13 14_31_04-Window.png
Views:	268
Size:	582.8 KB
ID:	186582

Last edited by ownedbycats; 04-13-2021 at 01:33 PM.
ownedbycats is offline   Reply With Quote