Skip to content

Instantly share code, notes, and snippets.

@844196
Created May 11, 2015 19:08
Show Gist options
  • Save 844196/04b999601e50ad35cc4f to your computer and use it in GitHub Desktop.
Save 844196/04b999601e50ad35cc4f to your computer and use it in GitHub Desktop.
Plugin.create(:view_on_web) do
command(:view_on_web,
name: 'View on Web Twitter',
condition: Plugin::Command[:HasMessage],
icon: Skin.get("forward.png"),
visible: true,
role: :timeline) do |m|
m.messages.map do |msg|
Gtk::openurl("http://twitter.com/#{msg.message.user.idname}/status/#{msg.message[:id]}")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment