Last active
August 29, 2015 14:02
-
-
Save Akkiesoft/4b666289b5c1e6e29c8b to your computer and use it in GitHub Desktop.
タブアイコンを2秒ごとに変える何か
This file contains hidden or 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 :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