#!/bin/bash

case "$1" in
    start)
	mkdir -p /tmp/xdg/run/dconf
	chmod -R 700 /tmp/xdg
	echo -en "\000\000" >/tmp/xdg/run/dconf/user
#	chgrp -R users /tmp/xdg
	chmod 600 /tmp/xdg/run/dconf/user
	;;
    stop)
	;;
    *)
	echo "Usage: {start|stop}"
	exit 1
	;;
esac
