#!/bin/sh

#  if0x utilities.sh
#
echo "installl deb? [y/n] "
read inst
if [ "$inst" = "y" ]
    then
            dpkg -i /installer_temp/*.deb
            echo "cleaning up"
            rm -rf /installer_temp
            echo "please hit return to respring"
            read respring
            killall SpringBoard && uicache
            echo "----------------done----------------"
else
            mkdir -p /debs
            mv /installer_temp/*.deb /debs
            rm -rf /installer_temp
            echo "you can find your deb in /deb "
            echo "----------------done----------------"

fi

#
#  Created by @if0xxx on 02.09.16.
#
