Files
wisp-open/text_insert_status_nonlinux.go
T

14 lines
265 B
Go

//go:build !linux
package main
func linuxYdotoolStatus() map[string]interface{} {
return map[string]interface{}{
"ready": false,
"installed": false,
"socket": false,
"socket_path": "",
"message": "ydotool is only used on Linux.",
}
}