limechat
limechat copied to clipboard
How to disable the mode changing event message?
I'm using LimeChat for irc and I love it so far. I am using it for both irc and slack(through bridge) discussion. One small issue I have is the slack bridge always give me a constant mode-change message as their status changed from away to active and vice-versa.
I searched online, and when it comes to irssi, people can use following command to stop it from happening:
/ignore -network slack * MODES
Is there any way for me to do the same thing in LimeChat?
Please refer to this image to see what's the issuie:
Any luck with this? In the same situation.
Me too. This seems to do nothing, but should?
https://www.evernote.com/shard/s128/sh/29044725-5538-4635-8801-ab92d2315405/1a5f71641a6308eb23f4002c60d4b544
I end up changing css and ignore the message I don't want to show. But still it would be great if there is a official settings for this
https://github.com/cnbuff410/LimeChat-theme/commit/6c8296aa27b88f55f95a64681f945bb7fbfbbf7d
Hmm, when I try to pull this trick with the CSS I find that the theme only propagates to certain parts of the screen. The CSS: https://gist.github.com/blt/736cc2d8983c44f2cd99
The default Spring Night:
The modified Spring Night, from above:
Anyone know what's up? I pulled the Spring Night CSS directly from the limechat project.
@cnbuff410 solution worked for me perfectly. i applied the changes to the Spring Night theme theme:
sudo vi /Applications/LimeChat.app/Contents/Themes/Spring Night.css
just added this at the very bottom under all of the .message content:
/* slack.kubernetes: now offering quiet mode care of limechat issue #240 */
body.normal .event[type=mode] { display:none;}
body.normal .event[type=join] { display:none;}
body.normal .event[type=quit] { display:none;}
body.normal .event[type=part] { display:none;}
body.normal .event[type=nick] { display:none;}