Created
March 6, 2012 10:46
-
-
Save ssov/1985654 to your computer and use it in GitHub Desktop.
tmuxの右下のステータスバーにツイート表示するよ[えすけーぷした]
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_tmux) do | |
on_update do |service, message| | |
message.each do |m| | |
begin | |
m.to_s.sub(/(.)/) { '\\' + $1 } | |
m.to_s.sub("#", "#") | |
system("tmux set status-right '#[fg=cyan][@" + m.idname + "] " + "#[fg=green]" + m.to_s[0,80] + "#[default]'") | |
rescue => ex | |
puts ex.message | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment