From e0c689fd84182f8261ddb81054e7e1c3bb920ddd Mon Sep 17 00:00:00 2001 From: techgaun Date: Sat, 29 Apr 2017 18:31:09 -0500 Subject: [PATCH] add mpd/mpc conf and remove spf13 --- .bash_aliases | 1 + .mpd.conf | 7 +++++++ setup.sh | 7 +------ 3 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 .mpd.conf diff --git a/.bash_aliases b/.bash_aliases index 23d23b0..f300416 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -25,6 +25,7 @@ alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo alias swatch="watch ss -stplu" alias nmrs="sudo /etc/init.d/network-manager restart" alias pipall="pip list --outdated | cut -d' ' -f1 | xargs pip install --upgrade" +alias mympd="mpd -v --no-daemon --stderr ~/.mpd.conf" # node/npm alias ni="npm install" diff --git a/.mpd.conf b/.mpd.conf new file mode 100644 index 0000000..f650c1c --- /dev/null +++ b/.mpd.conf @@ -0,0 +1,7 @@ +bind_to_address "127.0.0.1" +music_directory "/home/techgaun/audio" +db_file "/home/techgaun/.mpd.db" +audio_output { + name "MPD PulseAudio Output" + type "pulse" +} diff --git a/setup.sh b/setup.sh index da95ada..350c40f 100755 --- a/setup.sh +++ b/setup.sh @@ -3,12 +3,6 @@ SRC_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" NVIM_DIR="${HOME}/.config/nvim" -# setup spf13-vim if not installed already or FORCE_VIMINSTALL is set -# if [[ ! -d "${HOME}/.spf13-vim-3" || "x${FORCE_VIMINSTALL}" != "x" ]]; then - # curl -L -o - https://github.com/techgaun/spf13-vim/raw/3.0/bootstrap.sh | \ - # REPO_URI="https://github.com/techgaun/spf13-vim.git" REPO_BRANCH="tg-custom" sh -# fi - if [[ ! -d "${HOME}/.SpaceVim" || "x${FORCE_SPACEVIMINSTALL}" != "x" ]]; then curl -sLf https://spacevim.org/install.sh | bash fi @@ -33,6 +27,7 @@ ln -sf "${SRC_DIR}/.gitignore" "${HOME}/.gitignore" ln -sf "${SRC_DIR}/httpie/config.json" "${HOME}/.httpie/config.json" ln -sf "${SRC_DIR}/.iex.exs" "${HOME}/.iex.exs" ln -sf "${SRC_DIR}/.iftoprc" "${HOME}/.iftoprc" +ln -sf "${SRC_DIR}/.mpd.conf" "${HOME}/.mpd.conf" # ln -sf "${SRC_DIR}/nvim/init.vim" "${HOME}/.config/nvim/init.vim" ln -sf "${SRC_DIR}/nvim/init.vim" "${HOME}/.SpaceVim.d/init.vim" ln -sf "${SRC_DIR}/.psqlrc" "${HOME}/.psqlrc"