9 lines
96 B
Bash
Executable file
9 lines
96 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
mpc() {
|
|
eval $(mpd-host get)
|
|
export MPD_HOST
|
|
export MPD_PORT
|
|
command mpc "$@"
|
|
}
|