I was asked to explain how I managed to remove Misery,Mind Flay and Shadowweaving on the last screenshot, so here goes:
Go to Interface\AddOns\Quartz\Buff and open Buff.lua
First, find this section:
Code:
if db.targetdebuffs then
Continue down to
Code:
if duration and duration > 0 then
and replace it with following:
Code:
if (name == 'Misery') then
elseif (name == 'Mind Flay') then
elseif (name == 'Shadow Vulnerability') then
elseif duration and duration > 0 then
If you want a more simple version, download following
Buff.lua and replace the old Buff.lua :-)
Enjoy.