#!/bin/sh


for i in `find /usr/share/themes/ | grep lockslider`; do chown user:users $i; done

/bin/mkdir /home/user/.maenotify/       #log directory

#create themes directory and save the 'old' lockslider (for safety)
for i in `find /usr/share/themes/ | grep lockslider`; do mkdir -p /home/user/.maenotify/$(echo $i | cut -f5 -d/) && cp $i /home/user/.maenotify/$(echo $i | cut -f5 -d/)/;done

/sbin/initctl start maenotify
