Created
July 26, 2012 18:41
-
-
Save penguin2716/3183710 to your computer and use it in GitHub Desktop.
鍵垢のツイート背景をグレーにするmikutterプラグイン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
Plugin.create :gray_protected_users do | |
UserConfig[:protected_users_background_color] ||= [0xcccc,0xcccc,0xcccc] | |
filter_message_background_color do | mp, array | | |
if mp.to_message.user[:protected] == true | |
array = UserConfig[:protected_users_background_color] | |
end | |
[mp, array] | |
end | |
settings("Protected_Users_Color") do | |
color("鍵付きユーザの背景色",:protected_users_background_color) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mikutter 3.6.0 では以下の警告が出るようです。
no replacement と言われてますが、とりあえず単純に to_message を message に変更すれば警告は消えて意図通り動作もするようです。
ちょくちょく使っているのでこれで更新していただけるとありがたいです。
https://gist.github.com/tsutsui/2a5063949af54b92c017ed8a72d3e2e3