bash

Shady Play

Play any song from your terminal. Streams audio via yt-dlp + ffplay. Default: Eminem - Kill You.

by @brianball · ▲ 0

#!/bin/bash\n# Shady's theme song — plays audio from YouTube via yt-dlp + ffplay\nQUERY="${1:-Eminem Kill You}"\nyt-dlp -f "bestaudio" -o - "ytsearch1:$QUERY" 2>/dev/null | ffplay -nodisp -autoexit -loglevel quiet - &\necho "🔥 Shady says: NOW we're talking. Playing: $QUERY"