Skip to content

Commit b8b1781

Browse files
jaklanmattisssa
authored andcommitted
Add weather checker
1 parent 0e6bec8 commit b8b1781

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
# Required parameters:
4+
# @raycast.schemaVersion 1
5+
# @raycast.title Check Weather
6+
# @raycast.mode silent
7+
8+
# Optional parameters:
9+
# @raycast.icon 🌦
10+
# @raycast.packageName wttr.in
11+
# @raycast.argument1 { "type": "text", "placeholder": "Location", "optional": true}
12+
# @raycast.argument2 { "type": "text", "placeholder": "Options", "optional": true}
13+
14+
# Documentation:
15+
# @raycast.author jaklan
16+
# @raycast.authorURL https://github.com/jaklan
17+
18+
# $1 (Location) - e.g. "warsaw", "warsaw poland", "warsaw usa"; default: current location
19+
# $2 (Options) - e.g. "0", "1", "0q", "format=v2"; more info:
20+
# https://wttr.in/:help
21+
# https://github.com/chubin/wttr.in
22+
open "https://wttr.in/$1?$2"

0 commit comments

Comments
 (0)