About this snippet
Overview
This snippet basically stops the channels you choose, in the tree bar/switch bar from becoming the colour red, when someone talks or does /describe - /me
This helps when your idling in channels and you just want the channels you regularly talk in to be
This helps when your idling in channels and you just want the channels you regularly talk in to be
alias -l NoLiteChans return #chan1 #chan2 #chan3 #chan4
on 1:TEXT:*:#:{
if ($istok($NoLiteChans,$chan,32)) {
window -g0 $chan
}
}
on 1:ACTION:*:#:{
if ($istok($NoLiteChans,$chan,32)) {
window -g0 $chan
}
}

