diff options
Diffstat (limited to 'clerk_fzf')
-rwxr-xr-x | clerk_fzf/clerk_starter | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clerk_fzf/clerk_starter b/clerk_fzf/clerk_starter index d6e2db7..55a7c2c 100755 --- a/clerk_fzf/clerk_starter +++ b/clerk_fzf/clerk_starter @@ -18,6 +18,23 @@ if [[ -f "$HOME/.config/clerk/clerk_fzf.conf" ]]; then source $HOME/.config/clerk/clerk_fzf.conf fi +# export MPD_HOST +if [[ -n $mpd_host ]]; then + if [[ -n $mpd_password ]]; then + export MPD_HOST="${mpd_password}@${mpd_host}" + else + export MPD_HOST="${mpd_host}" + fi +else + if [[ -n $MPD_HOST ]]; then + export +fi + +if [[ -n $mpd_port ]]; then + ┆ export MPD_PORT="${mpd_port}" +fi + + export TMUX_TMPDIR="/tmp/clerk/tmux" if [[ ! -d "${TMUX_TMPDIR}" ]]; then |