#!/bin/sh

plugin_short="tobayer01"
plugin_type="swapskin"
plugin_target="/var/swap/titanskins"

plugin_dir="$plugin_target/$plugin_short"
plugin="$plugin_short $plugin_type"


### FUNCTIONS ###

RES_COL=60									# column number to place the status message
MOVE_TO_COL="echo -en \\033[${RES_COL}G"	# command to move to the configured column number

echo_success() {							# function to print the SUCCESS status
	$MOVE_TO_COL; echo -n "[  OK  ]"; echo
}

echo_failure() {
	$MOVE_TO_COL; echo -n "[FAILED]"; echo	# function to print the FAILED status message
}



### MAIN ###

sync
SPACE=`getfreespace $plugin_target`
FREE=`expr $SPACE - 100`
echo "Old free space: $FREE kB"


echo -n "Removing $plugin..."
echo_success

exit 0
