#!/bin/sh
set -e
if [ "$1" = "remove" ]; then
  rm -R /home/user/MyDocs/.qspot
  rm -R /home/user/.config/qspot
fi

exit 0


