Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Last active August 29, 2015 14:02
Show Gist options
  • Save Akkiesoft/4b666289b5c1e6e29c8b to your computer and use it in GitHub Desktop.
Save Akkiesoft/4b666289b5c1e6e29c8b to your computer and use it in GitHub Desktop.
タブアイコンを2秒ごとに変える何か
# -*- coding:utf-8 -*-
Plugin.create :mikutter_yometest do
tab(:mikutter_yometest, "テストタブ") do
expand
Thread.fork {
loop {
icon = File.expand_path(File.join(File.dirname(__FILE__), "yome.png"))
set_icon icon
sleep(2)
icon = File.expand_path(File.join(File.dirname(__FILE__), "jis.png"))
set_icon icon
sleep(2)
}
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment