Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active April 27, 2024 06:18
Show Gist options
  • Save cirrusUK/fe6ed82ea6afcb0b2f67d4bb6ab09402 to your computer and use it in GitHub Desktop.
Save cirrusUK/fe6ed82ea6afcb0b2f67d4bb6ab09402 to your computer and use it in GitHub Desktop.
#!/bin/bash
## edit dir=("$HOME"/your/own/path/to/Music/dir)
dir=("$HOME"/Music/mp3)
dmenu_text=$( find "${dir[@]}" -maxdepth 6 -type f -name '*.mp3' \
| cut -c 24- | shuf | sed 's/....$//' | dmenu -nb "#303030" -nf "#f5e5d5" -sf "#d79921" -sb "#191919" -l 17 -p PLay)
## mpv will show embedded album art, edit path as line 3 dir= "/your/own/path/to/Music/dir/$dmenu_text.mp3"
mpv --no-osd-bar --ontop --no-config --geometry=150x150+1192+600 --autofit-smaller=150x150 "/home/cirrus/Music/mp3/$dmenu_text.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment