Config File Collection
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

add_powerline 354B

123456789101112
  1. #!/bin/zsh
  2. #
  3. SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
  4. if [[ (-e ~/.config/powerline) ]]; then
  5. echo "A powerline configuration already exists (~/.config/powerline)"
  6. echo "Remove this configuration and start the script again"
  7. else
  8. echo "Creating link"
  9. ln -vs $SCRIPTPATH/.config/powerline ~/.config/powerline
  10. fi