my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
259 B

3 years ago
  1. if [[ "$OSTYPE" = darwin* ]]; then
  2. cache_dir="${HOME}/Library/Caches"
  3. else
  4. cache_dir="${XDG_CACHE_HOME:-"${HOME}/.cache"}"
  5. fi
  6. setup_path="${cache_dir}/heroku/autocomplete/zsh_setup"
  7. [[ -f "$setup_path" ]] && source $setup_path
  8. unset cache_dir setup_path