Sha256: 0501b5dadf6f803b020c72b04fbaa26e9604877e2a67086ee94ff9ca42a24046

Contents?: true

Size: 296 Bytes

Versions: 6

Compression:

Stored size: 296 Bytes

Contents

Shoes.app title: "Sleepless", width: 80, height: 120 do
  @push = button "☕️"
  @note = para "😪"
  @push.click {
    if @pid.nil?
      @pid = spawn("caffeinate -d")
      @note.replace "😳"
    else
      Process.kill 9, @pid
      @pid = nil
      @note.replace "😪"
    end
  }
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
scarpe-0.4.0 examples/coffee.rb
scarpe-0.3.0 examples/coffee.rb
scarpe-0.2.2 examples/coffee.rb
lacci-0.2.1 examples/coffee.rb
scarpe-0.2.1 examples/coffee.rb
scarpe-0.2.0 examples/coffee.rb