my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

1#!/bin/sh -e 2# 3# this script launches fuzzel, takes a jira 4# ticket, and opens it 5 6# upcase because jira wants that i guess 7jira_id=$(printf "" | bemenu -c -W 0.2 | tr '[a-z]' '[A-Z]') 8[ "$jira_id" = "" ] && exit 1 9 10xdg-open "https://do-internal.atlassian.net/browse/$jira_id"