Config File Collection
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.

add_nemo_config 311B

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