diff --git a/internal/injection/ydotool.go b/internal/injection/ydotool.go index 23258be..9974507 100644 --- a/internal/injection/ydotool.go +++ b/internal/injection/ydotool.go @@ -32,7 +32,12 @@ func (y *ydotoolBackend) Available() error { return fmt.Errorf("ydotoold socket not found - ensure ydotoold is running") } - conn, err := net.DialTimeout("unix", socketPath, 500*time.Millisecond) + // ydotoold v1.0.4+ uses SOCK_DGRAM (unixgram) sockets. + // Try unixgram first, then fall back to stream for older versions. + conn, err := net.Dial("unixgram", socketPath) + if err != nil { + conn, err = net.DialTimeout("unix", socketPath, 500*time.Millisecond) + } if err != nil { return fmt.Errorf("ydotoold not responding at %s: %w", socketPath, err) }