8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
|
#!/bin/sh -e
|
||
|
# Reload mpd with appropriate config
|
||
|
yadm alt
|
||
|
cd $XDG_CONFIG_HOME/mpd
|
||
|
mv *template ..
|
||
|
mv ../*template .
|
||
|
systemctl --user restart mpd
|