My scripts for startup, dmenu, and the command line
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
1234567891011121314 |
- #!/bin/sh
-
- for f in "$@"; do
- # mpc insert $HOME/music/$f
- mpc insert "$(realpath "$f")"
- done
-
- if [ -z $(mpc current) ]; then
- mpc play
- else
- mpc next
- fi
-
- # mpc single on
|