Skip to content

Instantly share code, notes, and snippets.

@mjlescano
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjlescano/12db04caf0b5f253d4ef to your computer and use it in GitHub Desktop.
Save mjlescano/12db04caf0b5f253d4ef to your computer and use it in GitHub Desktop.
`mpg123` wrapper. It enables by default keyboard shortcuts and play directories.
#!/bin/bash
if [[ -d "$*" ]]; then
find "${*%/}" -iname '*.mp3' -print0 -exec $0 {} +
else
mpg123 -C "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment