#!/sbin/openrc-run

depend() {
	need xdm
}

start() {
	ebegin "Setting nvidia card overclock speed"
	nvclock ${CLOCKOPTS} >/dev/null
	eend $?
}

