- Physical displays blanked via overlay - Remote video and input keep working - Exclude overlay from screen capture - Add blackout API and UI toggle - Wire flag through capture protocol
14 lines
201 B
Go
14 lines
201 B
Go
//go:build !windows
|
|
|
|
package blackout
|
|
|
|
import "errors"
|
|
|
|
func running() bool { return false }
|
|
|
|
func start() error {
|
|
return errors.New("monitor blackout is only available on Windows")
|
|
}
|
|
|
|
func stop() {}
|