diff --git a/Weather/Foobot.10m.rb b/Weather/Foobot.10m.rb
new file mode 100755
index 000000000..3cd00310a
--- /dev/null
+++ b/Weather/Foobot.10m.rb
@@ -0,0 +1,81 @@
+#!/usr/bin/env ruby
+
+# Foobot
+# v1.0
+# Alessio Signorini
+# alessio-signorini
+# Display readings from your sensors in the menu bar
+# https://user-images.githubusercontent.com/453354/93032602-57f2c580-f5e7-11ea-87f9-e4e559b0c12a.png
+# ruby
+# https://foobot.io/
+
+
+
+# ==============================================================================
+# SETTINGS
+# ==============================================================================
+
+# Request API key from
+# http://api.foobot.io/apidoc/index.html
+API_KEY=" ... "
+
+# Get Device ID from
+# http://api.foobot.io/apidoc/index.html#!/device-owner-controller/getDeviceUsingGET
+DEVICE_ID=" ... "
+
+# ==============================================================================
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+# ==============================================================================
+# CODE
+# ==============================================================================
+require 'net/http'
+require 'json'
+
+uri = URI("http://api.foobot.io/v2/device/#{DEVICE_ID}/datapoint/0/last/600/")
+
+req = Net::HTTP::Get.new(uri)
+req['Accept'] = 'application/json;charset=UTF-8'
+req['X-API-KEY-TOKEN'] = API_KEY
+
+res = Net::HTTP.start(uri.hostname, uri.port) {|http|
+ http.request(req)
+}
+
+data = JSON.parse(res.body)
+
+def color(value, ok_threshold, bad_threshold)
+ return ' color=red' if value > bad_threshold
+ return ' color=orange' if value > ok_threshold
+ return ''
+end
+
+value = data['sensors'].each_with_index.map do |key, i|
+ [key, data['datapoints'].first[i] ]
+end.to_h
+
+puts "🌿 #{value['allpollu'].round} | size=12" + color(value['allpollu'],50,75)
+
+puts "---"
+
+puts "#{(value['tmp'] * 9 / 5).round + 32}F / #{value['hum'].round}%"
+puts "pm #{value['pm'].round}ugm3 | " + color(value['pm'],27,37.5)
+puts "co2 #{value['co2'].round}ppm | " + color(value['co2'], 1300,1925)
+puts "voc #{value['voc'].round}ppb | " + color(value['voc'], 300, 450)