#!/usr/bin/env bash set -euo pipefail # Entertainment plugin: random dad joke via icanhazdadjoke.com (no API key). # POS_PLUGIN: joke # Contract: stdout is the message sent by 'pos entertainment send joke'. source "$(dirname "${BASH_SOURCE[0]}")/../lib/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "${BASH_SOURCE[0]}")/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "$0")/../lib/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "$0")/entertainment-plugin-lib.sh" case "${1:-}" in -h|--help) cat <