Skip to content

Instantly share code, notes, and snippets.

@uupaa
Last active April 3, 2019 15:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uupaa/6304204 to your computer and use it in GitHub Desktop.
Save uupaa/6304204 to your computer and use it in GitHub Desktop.
Remove message(joined, left, quit) for Limechat Mac

IRC クライアント Limechat for Mac で joined, left, quit メッセージを消す方法

/Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。
他のテーマを使っている場合は、そのテーマのcssを編集。

.line[type=join] { display:none; }
.line[type=quit] { display:none; }
.line[type=mode] { display:none; }
.line[type=part] { display:none; }
.line[type=nick] { display:none; }

Limechat は HTMLでレンダリングしているらしい。

@warm200
Copy link

warm200 commented Apr 3, 2019

よくやった

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment