#!/bin/sh

if [ -z "$KDB" ]; then
	KDB=kdb
fi

for file in `find ~/.kde/share/config -name '*rc' -type f`
do
	f=`basename $file rc`
	$KDB mount $file system/user-kde-config/$f ni
done
