feat: implement ydotool support for Linux with auto-paste functionality and add setup script

This commit is contained in:
jahruz67
2026-05-20 16:12:55 -07:00
parent 4131d77326
commit 9b08ed249a
8 changed files with 274 additions and 53 deletions
+13
View File
@@ -0,0 +1,13 @@
//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.",
}
}