diff options
-rwxr-xr-x | clerk_fzf/clerk_fzf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clerk_fzf/clerk_fzf b/clerk_fzf/clerk_fzf index d1f1e30..11c2c9b 100755 --- a/clerk_fzf/clerk_fzf +++ b/clerk_fzf/clerk_fzf @@ -27,11 +27,11 @@ if [[ -f "$HOME/.config/clerk/clerk_fzf.conf" ]]; then fi if [[ -n $mpd_host ]]; then - ┆ if [[ -n $mpd_password ]]; then - ┆ ┆ ┆ export MPD_HOST="${mpd_password}@${mpd_host}" - ┆ else - ┆ ┆ ┆ export MPD_HOST="${mpd_host}" - ┆ fi + if [[ -n $mpd_password ]]; then + export MPD_HOST="${mpd_password}@${mpd_host}" + else + export MPD_HOST="${mpd_host}" + fi fi if [[ -n $mpd_port ]]; then |