My scripts for startup, dmenu, and the command line
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
171 B

  1. #!/bin/sh
  2. for f in "$@"; do
  3. # mpc insert $HOME/music/$f
  4. mpc insert "$(realpath "$f")"
  5. done
  6. if [ -z $(mpc current) ]; then
  7. mpc play
  8. else
  9. mpc next
  10. fi
  11. # mpc single on