#!/usr/bin/env sh # this script logs a new entry in nomie - https://nomie.app/ - an open source habit tracker and journaling app # It will very simply take the text input and pass it on. sendtonomie() { req="{\"note\":\"$*\",\"api_key\":\"$(pass show websites/nomie.app/apikey)\"}" echo "$req" curl -s -H "Content-Type: application/json" --compressed --data "$req" https://nomieapi.com/log } sendtonomie "$@"