You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- #!/usr/bin/zsh
-
- if [ ! -f ~/.mpd/mpd.pid ]; then
- if [ ! -f ~/.mpd/mpd.conf ]; then
- "No mpd configuration found! Probably not the right user: $(whoami)";
- exit 1;
- fi
- mpd ~/.mpd/mpd.conf > /tmp/mpd.log 2>&1 &;
- sleep 2;
- ~/.scripts/mpd-adblock > /tmp/mpd-adblock.log 2>&1 &;
- fi
|