Skip to content

Instantly share code, notes, and snippets.

@tsutsui
Forked from penguin2716/gray_protected_users.rb
Last active January 2, 2018 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsutsui/2a5063949af54b92c017ed8a72d3e2e3 to your computer and use it in GitHub Desktop.
Save tsutsui/2a5063949af54b92c017ed8a72d3e2e3 to your computer and use it in GitHub Desktop.
鍵垢のツイート背景をグレーにするmikutterプラグイン
#-*- 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.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