package blackout
func Enabled() bool { return running() }
func Set(on bool) error {
if on {
return start()
}
stop()
return nil
func Stop() { stop() }