list rewatching, paused and plan to watch
khizka opened this issue · 3 comments
khizka commented
Is there any way I can also list these? I don't want to only see my watching list.
RaitaroH commented
Have a look at this and this which explain how you can filter
by paused
(for example) in trackma.
As adl is using the cli version you need something like this to not have to interact with trackma:
printf "filter paused\nls" | trackma
For some reason it seemed that COLUMNS=130
wasn't working, but it does if I add a sed.
2 1 disadvantage with this:
I need to remove the colors from the output firstactually not anymore, as seen here- this method might break
Anyhow here is an example:
printf "filter paused\nls" | COLUMNS=130 trackma | sed 's/\x1b\[[0-9;]*m//g' | sed -n '/^|/,${p;/results/q}' | head -n -1
@khizka if this is what you are looking for, I can try to implement it fully.
khizka commented
Thank you so much! I just received the e-mail, sorry I didn't responded earlier, I had a pretty busy month. It's exactly what I needed.