@scottaw I'm pretty happy with this one:
JSON=$(curl -s https://api.github.com/repos/libgit2/libgit2/pulls?per_page=1)
TITLE=$(echo $JSON | jq -r '.[0].title')
URL=$(echo $JSON | jq -r '.[0].html_url')
widget --target pr arrow.triangle.merge $URL '#0c0' "$TITLE"
that shows the latest pull request from a repository and opens that PR when tapped.
User-Style-Sheet fΓΌr's Intranet π:
* {
font-family: 'Press Start 2P' !important;
color: #0c0 !important;
background-color: #333 !important;
}