Comment 4 for bug 1650298

Revision history for this message
Ryan Howe (rjhowe) wrote :

Since f25 does add this support. The following line is causing this to fail.

/usr/lib/python2.7/site-packages/terminatorlib/terminal.py

    use_primary = (display_manager() != 'WAYLAND')

Where because WAYLAND usually only supports one clipboard, this logic was added to address it.

As a work around I removed the logic and it works now.

   use_primary = display_manager()

I was not able to spend time digging into the code and what all should be added to fix this for a Distro that runs Wayland but still uses primary selection. I hope this helps.