#!/bin/sh

for i in `gsettings list-recursively | awk -F" " '{print $1}' | sort | uniq`; do
	gsettings reset-recursively $i;
done
