Skip to content

Instantly share code, notes, and snippets.

@isokcevic
Last active August 29, 2015 14:02
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 isokcevic/68b93333d0f8b9fa707d to your computer and use it in GitHub Desktop.
Save isokcevic/68b93333d0f8b9fa707d to your computer and use it in GitHub Desktop.
require 'shoes'
require 'libnotify'
Shoes.app do
stack do
para "Enter your name"
flow do
name_input = edit_line
btn = button "Send" do
message = name_input.text
Libnotify.show(:body => message, :summary => 'hi', :timeout => 3)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment