#!/bin/sh
#
# this script launches fuzzel, takes a jira
# ticket, and opens it

# upcase because jira wants that i guess
jira_id=$(printf "" | fuzzel -d | tr '[a-z]' '[A-Z]')

xdg-open "https://jira.internal.digitalocean.com/browse/$jira_id"
