Loads of stuff

This commit is contained in:
Dan 2026-01-07 14:32:06 +00:00
parent fd015bd52c
commit a3b9bd2680
15 changed files with 2310 additions and 208 deletions

View file

@ -1,7 +1,22 @@
#!/bin/bash
# Last.fm Weekly Stats Script
# Usage: ./lastfm-weekly.sh
# Fetches your Last.fm listening statistics for the past week
#
# Requirements:
# - curl (for API requests)
# - jq (for JSON parsing)
#
# Usage: ./lastfm-week.sh
#
# Setup:
# Create a .env file with:
# LASTFM_API_KEY=your_api_key_here
# LASTFM_USERNAME=your_username_here
#
# Output: Markdown-formatted stats with top artists and track counts
#
# Download from: https://ritual.sh/resources/lastfm-stats/
# Load environment variables from .env file
if [ -f .env ]; then