My scripts for startup, dmenu, and the command line
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- #!/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
|