check_and_remove_appmenu.sh 279 B

1234567891011121314
  1. #!/bin/sh
  2. if grep -q X-Qubes-VmName $1 ; then
  3. exit 0
  4. fi
  5. if grep -q "Categories=.*\(System\|Settings\)" $1 ; then
  6. #echo "Leaving file: $1"
  7. exit 0
  8. fi
  9. BACKUP_DIR="/var/lib/qubes/backup/removed-apps/"
  10. mkdir -p $BACKUP_DIR
  11. #echo "Moving file: $1 to $BACKUP_DIR
  12. mv $1 $BACKUP_DIR